@@ -50,7 +50,6 @@ use rustc_hir::def_id::{CrateNum, DefId, DefIdMap, DefIdSet, DefIndex, LOCAL_CRA
50
50
use rustc_hir:: { HirId , Node , TraitCandidate } ;
51
51
use rustc_hir:: { ItemKind , ItemLocalId , ItemLocalMap , ItemLocalSet } ;
52
52
53
- use arena:: SyncDroplessArena ;
54
53
use rustc_data_structures:: fx:: { FxHashMap , FxHashSet } ;
55
54
use rustc_data_structures:: profiling:: SelfProfilerRef ;
56
55
use rustc_data_structures:: sharded:: { IntoPointer , ShardedHashMap } ;
@@ -81,21 +80,11 @@ use syntax::ast;
81
80
use syntax:: attr;
82
81
use syntax:: expand:: allocator:: AllocatorKind ;
83
82
84
- pub struct AllArenas {
85
- pub interner : SyncDroplessArena ,
86
- }
87
-
88
- impl AllArenas {
89
- pub fn new ( ) -> Self {
90
- AllArenas { interner : SyncDroplessArena :: default ( ) }
91
- }
92
- }
93
-
94
83
type InternedSet < ' tcx , T > = ShardedHashMap < Interned < ' tcx , T > , ( ) > ;
95
84
96
85
pub struct CtxtInterners < ' tcx > {
97
86
/// The arena that types, regions, etc. are allocated from.
98
- arena : & ' tcx SyncDroplessArena ,
87
+ arena : & ' tcx WorkerLocal < Arena < ' tcx > > ,
99
88
100
89
/// Specifically use a speedy hash algorithm for these hash sets, since
101
90
/// they're accessed quite often.
@@ -115,7 +104,7 @@ pub struct CtxtInterners<'tcx> {
115
104
}
116
105
117
106
impl < ' tcx > CtxtInterners < ' tcx > {
118
- fn new ( arena : & ' tcx SyncDroplessArena ) -> CtxtInterners < ' tcx > {
107
+ fn new ( arena : & ' tcx WorkerLocal < Arena < ' tcx > > ) -> CtxtInterners < ' tcx > {
119
108
CtxtInterners {
120
109
arena,
121
110
type_ : Default :: default ( ) ,
@@ -1118,7 +1107,6 @@ impl<'tcx> TyCtxt<'tcx> {
1118
1107
lint_store : Lrc < lint:: LintStore > ,
1119
1108
local_providers : ty:: query:: Providers < ' tcx > ,
1120
1109
extern_providers : ty:: query:: Providers < ' tcx > ,
1121
- arenas : & ' tcx AllArenas ,
1122
1110
arena : & ' tcx WorkerLocal < Arena < ' tcx > > ,
1123
1111
resolutions : ty:: ResolverOutputs ,
1124
1112
hir : hir_map:: Map < ' tcx > ,
@@ -1129,7 +1117,7 @@ impl<'tcx> TyCtxt<'tcx> {
1129
1117
let data_layout = TargetDataLayout :: parse ( & s. target . target ) . unwrap_or_else ( |err| {
1130
1118
s. fatal ( & err) ;
1131
1119
} ) ;
1132
- let interners = CtxtInterners :: new ( & arenas . interner ) ;
1120
+ let interners = CtxtInterners :: new ( arena ) ;
1133
1121
let common_types = CommonTypes :: new ( & interners) ;
1134
1122
let common_lifetimes = CommonLifetimes :: new ( & interners) ;
1135
1123
let common_consts = CommonConsts :: new ( & interners, & common_types) ;
@@ -2087,7 +2075,7 @@ macro_rules! slice_interners {
2087
2075
$( impl <' tcx> TyCtxt <' tcx> {
2088
2076
pub fn $method( self , v: & [ $ty] ) -> & ' tcx List <$ty> {
2089
2077
self . interners. $field. intern_ref( v, || {
2090
- Interned ( List :: from_arena( & self . interners . arena, v) )
2078
+ Interned ( List :: from_arena( & * self . arena, v) )
2091
2079
} ) . 0
2092
2080
}
2093
2081
} ) +
0 commit comments