Skip to content

Commit b21c9dd

Browse files
committed
Use Arena for interning
1 parent edee9c3 commit b21c9dd

File tree

5 files changed

+16
-28
lines changed

5 files changed

+16
-28
lines changed

src/librustc/arena.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ macro_rules! arena_types {
123123
[few] inferred_outlives_crate: rustc::ty::CratePredicatesMap<'tcx>,
124124
[] upvars: rustc_data_structures::fx::FxIndexMap<rustc_hir::HirId, rustc_hir::Upvar>,
125125

126+
// Interned types
127+
[] tys: rustc::ty::TyS<$tcx>,
128+
126129
// HIR types
127130
[few] hir_forest: rustc::hir::map::Forest<$tcx>,
128131
[] arm: rustc_hir::Arm<$tcx>,
@@ -176,7 +179,7 @@ macro_rules! declare_arena {
176179
([], [$($a:tt $name:ident: $ty:ty,)*], $tcx:lifetime) => {
177180
#[derive(Default)]
178181
pub struct Arena<$tcx> {
179-
dropless: DroplessArena,
182+
pub dropless: DroplessArena,
180183
drop: DropArena,
181184
$($name: arena_for_type!($a[$ty]),)*
182185
}

src/librustc/ty/context.rs

+4-16
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ use rustc_hir::def_id::{CrateNum, DefId, DefIdMap, DefIdSet, DefIndex, LOCAL_CRA
5050
use rustc_hir::{HirId, Node, TraitCandidate};
5151
use rustc_hir::{ItemKind, ItemLocalId, ItemLocalMap, ItemLocalSet};
5252

53-
use arena::SyncDroplessArena;
5453
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
5554
use rustc_data_structures::profiling::SelfProfilerRef;
5655
use rustc_data_structures::sharded::{IntoPointer, ShardedHashMap};
@@ -81,21 +80,11 @@ use syntax::ast;
8180
use syntax::attr;
8281
use syntax::expand::allocator::AllocatorKind;
8382

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-
9483
type InternedSet<'tcx, T> = ShardedHashMap<Interned<'tcx, T>, ()>;
9584

9685
pub struct CtxtInterners<'tcx> {
9786
/// The arena that types, regions, etc. are allocated from.
98-
arena: &'tcx SyncDroplessArena,
87+
arena: &'tcx WorkerLocal<Arena<'tcx>>,
9988

10089
/// Specifically use a speedy hash algorithm for these hash sets, since
10190
/// they're accessed quite often.
@@ -115,7 +104,7 @@ pub struct CtxtInterners<'tcx> {
115104
}
116105

117106
impl<'tcx> CtxtInterners<'tcx> {
118-
fn new(arena: &'tcx SyncDroplessArena) -> CtxtInterners<'tcx> {
107+
fn new(arena: &'tcx WorkerLocal<Arena<'tcx>>) -> CtxtInterners<'tcx> {
119108
CtxtInterners {
120109
arena,
121110
type_: Default::default(),
@@ -1118,7 +1107,6 @@ impl<'tcx> TyCtxt<'tcx> {
11181107
lint_store: Lrc<lint::LintStore>,
11191108
local_providers: ty::query::Providers<'tcx>,
11201109
extern_providers: ty::query::Providers<'tcx>,
1121-
arenas: &'tcx AllArenas,
11221110
arena: &'tcx WorkerLocal<Arena<'tcx>>,
11231111
resolutions: ty::ResolverOutputs,
11241112
hir: hir_map::Map<'tcx>,
@@ -1129,7 +1117,7 @@ impl<'tcx> TyCtxt<'tcx> {
11291117
let data_layout = TargetDataLayout::parse(&s.target.target).unwrap_or_else(|err| {
11301118
s.fatal(&err);
11311119
});
1132-
let interners = CtxtInterners::new(&arenas.interner);
1120+
let interners = CtxtInterners::new(arena);
11331121
let common_types = CommonTypes::new(&interners);
11341122
let common_lifetimes = CommonLifetimes::new(&interners);
11351123
let common_consts = CommonConsts::new(&interners, &common_types);
@@ -2087,7 +2075,7 @@ macro_rules! slice_interners {
20872075
$(impl<'tcx> TyCtxt<'tcx> {
20882076
pub fn $method(self, v: &[$ty]) -> &'tcx List<$ty> {
20892077
self.interners.$field.intern_ref(v, || {
2090-
Interned(List::from_arena(&self.interners.arena, v))
2078+
Interned(List::from_arena(&*self.arena, v))
20912079
}).0
20922080
}
20932081
})+

src/librustc/ty/mod.rs

+6-4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ pub use self::BorrowKind::*;
66
pub use self::IntVarValue::*;
77
pub use self::Variance::*;
88

9+
use crate::arena::Arena;
910
use crate::hir::exports::ExportMap;
1011
use crate::hir::map as hir_map;
1112

@@ -26,7 +27,6 @@ use crate::ty::layout::VariantIdx;
2627
use crate::ty::subst::{InternalSubsts, Subst, SubstsRef};
2728
use crate::ty::util::{Discr, IntTypeExt};
2829
use crate::ty::walk::TypeWalker;
29-
use arena::SyncDroplessArena;
3030
use rustc_data_structures::captures::Captures;
3131
use rustc_data_structures::fx::FxHashMap;
3232
use rustc_data_structures::fx::FxIndexMap;
@@ -76,7 +76,7 @@ pub use crate::ty::diagnostics::*;
7676
pub use self::binding::BindingMode;
7777
pub use self::binding::BindingMode::*;
7878

79-
pub use self::context::{keep_local, tls, AllArenas, FreeRegionInfo, TyCtxt};
79+
pub use self::context::{keep_local, tls, FreeRegionInfo, TyCtxt};
8080
pub use self::context::{
8181
CanonicalUserType, CanonicalUserTypeAnnotation, CanonicalUserTypeAnnotations, ResolvedOpaqueTy,
8282
UserType, UserTypeAnnotationIndex,
@@ -606,7 +606,7 @@ unsafe impl<T: Sync> Sync for List<T> {}
606606

607607
impl<T: Copy> List<T> {
608608
#[inline]
609-
fn from_arena<'tcx>(arena: &'tcx SyncDroplessArena, slice: &[T]) -> &'tcx List<T> {
609+
fn from_arena<'tcx>(arena: &'tcx Arena<'tcx>, slice: &[T]) -> &'tcx List<T> {
610610
assert!(!mem::needs_drop::<T>());
611611
assert!(mem::size_of::<T>() != 0);
612612
assert!(slice.len() != 0);
@@ -619,7 +619,9 @@ impl<T: Copy> List<T> {
619619

620620
let size = offset + slice.len() * mem::size_of::<T>();
621621

622-
let mem = arena.alloc_raw(size, cmp::max(mem::align_of::<T>(), mem::align_of::<usize>()));
622+
let mem = arena
623+
.dropless
624+
.alloc_raw(size, cmp::max(mem::align_of::<T>(), mem::align_of::<usize>()));
623625
unsafe {
624626
let result = &mut *(mem.as_mut_ptr() as *mut List<T>);
625627
// Write the length

src/librustc_interface/passes.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use rustc::session::search_paths::PathKind;
1515
use rustc::session::Session;
1616
use rustc::traits;
1717
use rustc::ty::steal::Steal;
18-
use rustc::ty::{self, AllArenas, GlobalCtxt, ResolverOutputs, TyCtxt};
18+
use rustc::ty::{self, GlobalCtxt, ResolverOutputs, TyCtxt};
1919
use rustc::util::common::ErrorReported;
2020
use rustc_builtin_macros;
2121
use rustc_codegen_ssa::back::link::emit_metadata;
@@ -711,7 +711,6 @@ pub fn create_global_ctxt<'tcx>(
711711
outputs: OutputFilenames,
712712
crate_name: &str,
713713
global_ctxt: &'tcx Once<GlobalCtxt<'tcx>>,
714-
all_arenas: &'tcx AllArenas,
715714
arena: &'tcx WorkerLocal<Arena<'tcx>>,
716715
) -> QueryContext<'tcx> {
717716
let sess = &compiler.session();
@@ -742,7 +741,6 @@ pub fn create_global_ctxt<'tcx>(
742741
lint_store,
743742
local_providers,
744743
extern_providers,
745-
&all_arenas,
746744
arena,
747745
resolver_outputs,
748746
hir_map,

src/librustc_interface/queries.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use rustc::lint::LintStore;
99
use rustc::session::config::{OutputFilenames, OutputType};
1010
use rustc::session::Session;
1111
use rustc::ty::steal::Steal;
12-
use rustc::ty::{AllArenas, GlobalCtxt, ResolverOutputs};
12+
use rustc::ty::{GlobalCtxt, ResolverOutputs};
1313
use rustc::util::common::ErrorReported;
1414
use rustc_codegen_utils::codegen_backend::CodegenBackend;
1515
use rustc_data_structures::sync::{Lrc, Once, WorkerLocal};
@@ -67,7 +67,6 @@ pub struct Queries<'tcx> {
6767
compiler: &'tcx Compiler,
6868
gcx: Once<GlobalCtxt<'tcx>>,
6969

70-
all_arenas: AllArenas,
7170
arena: WorkerLocal<Arena<'tcx>>,
7271

7372
dep_graph_future: Query<Option<DepGraphFuture>>,
@@ -87,7 +86,6 @@ impl<'tcx> Queries<'tcx> {
8786
Queries {
8887
compiler,
8988
gcx: Once::new(),
90-
all_arenas: AllArenas::new(),
9189
arena: WorkerLocal::new(|_| Arena::default()),
9290
dep_graph_future: Default::default(),
9391
parse: Default::default(),
@@ -266,7 +264,6 @@ impl<'tcx> Queries<'tcx> {
266264
outputs,
267265
&crate_name,
268266
&self.gcx,
269-
&self.all_arenas,
270267
&self.arena,
271268
))
272269
})

0 commit comments

Comments
 (0)