]> git.lizzy.rs Git - rust.git/blob - src/librustc/arena.rs
Rollup merge of #66633 - GuillaumeGomez:err-codes-cleanup, r=Dylan-DPC
[rust.git] / src / librustc / arena.rs
1 use arena::{TypedArena, DroplessArena};
2 use std::mem;
3 use std::ptr;
4 use std::slice;
5 use std::cell::RefCell;
6 use std::marker::PhantomData;
7 use smallvec::SmallVec;
8
9 /// This declares a list of types which can be allocated by `Arena`.
10 ///
11 /// The `few` modifier will cause allocation to use the shared arena and recording the destructor.
12 /// This is faster and more memory efficient if there's only a few allocations of the type.
13 /// Leaving `few` out will cause the type to get its own dedicated `TypedArena` which is
14 /// faster and more memory efficient if there is lots of allocations.
15 ///
16 /// Specifying the `decode` modifier will add decode impls for &T and &[T] where T is the type
17 /// listed. These impls will appear in the implement_ty_decoder! macro.
18 #[macro_export]
19 macro_rules! arena_types {
20     ($macro:path, $args:tt, $tcx:lifetime) => (
21         $macro!($args, [
22             [] layouts: rustc::ty::layout::LayoutDetails,
23             [] generics: rustc::ty::Generics,
24             [] trait_def: rustc::ty::TraitDef,
25             [] adt_def: rustc::ty::AdtDef,
26             [] steal_mir: rustc::ty::steal::Steal<rustc::mir::Body<$tcx>>,
27             [] mir: rustc::mir::Body<$tcx>,
28             [] steal_promoted: rustc::ty::steal::Steal<
29                 rustc_index::vec::IndexVec<
30                     rustc::mir::Promoted,
31                     rustc::mir::Body<$tcx>
32                 >
33             >,
34             [] promoted: rustc_index::vec::IndexVec<
35                 rustc::mir::Promoted,
36                 rustc::mir::Body<$tcx>
37             >,
38             [] tables: rustc::ty::TypeckTables<$tcx>,
39             [] const_allocs: rustc::mir::interpret::Allocation,
40             [] vtable_method: Option<(
41                 rustc::hir::def_id::DefId,
42                 rustc::ty::subst::SubstsRef<$tcx>
43             )>,
44             [few, decode] mir_keys: rustc::util::nodemap::DefIdSet,
45             [decode] specialization_graph: rustc::traits::specialization_graph::Graph,
46             [] region_scope_tree: rustc::middle::region::ScopeTree,
47             [] item_local_set: rustc::util::nodemap::ItemLocalSet,
48             [decode] mir_const_qualif: rustc_index::bit_set::BitSet<rustc::mir::Local>,
49             [] trait_impls_of: rustc::ty::trait_def::TraitImpls,
50             [] dropck_outlives:
51                 rustc::infer::canonical::Canonical<'tcx,
52                     rustc::infer::canonical::QueryResponse<'tcx,
53                         rustc::traits::query::dropck_outlives::DropckOutlivesResult<'tcx>
54                     >
55                 >,
56             [] normalize_projection_ty:
57                 rustc::infer::canonical::Canonical<'tcx,
58                     rustc::infer::canonical::QueryResponse<'tcx,
59                         rustc::traits::query::normalize::NormalizationResult<'tcx>
60                     >
61                 >,
62             [] implied_outlives_bounds:
63                 rustc::infer::canonical::Canonical<'tcx,
64                     rustc::infer::canonical::QueryResponse<'tcx,
65                         Vec<rustc::traits::query::outlives_bounds::OutlivesBound<'tcx>>
66                     >
67                 >,
68             [] type_op_subtype:
69                 rustc::infer::canonical::Canonical<'tcx,
70                     rustc::infer::canonical::QueryResponse<'tcx, ()>
71                 >,
72             [] type_op_normalize_poly_fn_sig:
73                 rustc::infer::canonical::Canonical<'tcx,
74                     rustc::infer::canonical::QueryResponse<'tcx, rustc::ty::PolyFnSig<'tcx>>
75                 >,
76             [] type_op_normalize_fn_sig:
77                 rustc::infer::canonical::Canonical<'tcx,
78                     rustc::infer::canonical::QueryResponse<'tcx, rustc::ty::FnSig<'tcx>>
79                 >,
80             [] type_op_normalize_predicate:
81                 rustc::infer::canonical::Canonical<'tcx,
82                     rustc::infer::canonical::QueryResponse<'tcx, rustc::ty::Predicate<'tcx>>
83                 >,
84             [] type_op_normalize_ty:
85                 rustc::infer::canonical::Canonical<'tcx,
86                     rustc::infer::canonical::QueryResponse<'tcx, rustc::ty::Ty<'tcx>>
87                 >,
88             [few] crate_inherent_impls: rustc::ty::CrateInherentImpls,
89             [few] upstream_monomorphizations:
90                 rustc::util::nodemap::DefIdMap<
91                     rustc_data_structures::fx::FxHashMap<
92                         rustc::ty::subst::SubstsRef<'tcx>,
93                         rustc::hir::def_id::CrateNum
94                     >
95                 >,
96             [few] diagnostic_items: rustc_data_structures::fx::FxHashMap<
97                 syntax::symbol::Symbol,
98                 rustc::hir::def_id::DefId,
99             >,
100             [few] resolve_lifetimes: rustc::middle::resolve_lifetime::ResolveLifetimes,
101             [few] lint_levels: rustc::lint::LintLevelMap,
102             [few] stability_index: rustc::middle::stability::Index<'tcx>,
103             [few] features: syntax::feature_gate::Features,
104             [few] all_traits: Vec<rustc::hir::def_id::DefId>,
105             [few] privacy_access_levels: rustc::middle::privacy::AccessLevels,
106             [few] target_features_whitelist: rustc_data_structures::fx::FxHashMap<
107                 String,
108                 Option<syntax::symbol::Symbol>
109             >,
110             [few] wasm_import_module_map: rustc_data_structures::fx::FxHashMap<
111                 rustc::hir::def_id::DefId,
112                 String
113             >,
114             [few] get_lib_features: rustc::middle::lib_features::LibFeatures,
115             [few] defined_lib_features: rustc::middle::lang_items::LanguageItems,
116             [few] visible_parent_map: rustc::util::nodemap::DefIdMap<rustc::hir::def_id::DefId>,
117             [few] foreign_module: rustc::middle::cstore::ForeignModule,
118             [few] foreign_modules: Vec<rustc::middle::cstore::ForeignModule>,
119             [few] reachable_non_generics: rustc::util::nodemap::DefIdMap<
120                 rustc::middle::exported_symbols::SymbolExportLevel
121             >,
122             [few] crate_variances: rustc::ty::CrateVariancesMap<'tcx>,
123             [few] inferred_outlives_crate: rustc::ty::CratePredicatesMap<'tcx>,
124             [] upvars: rustc_data_structures::fx::FxIndexMap<rustc::hir::HirId, rustc::hir::Upvar>,
125         ], $tcx);
126     )
127 }
128
129 macro_rules! arena_for_type {
130     ([][$ty:ty]) => {
131         TypedArena<$ty>
132     };
133     ([few $(, $attrs:ident)*][$ty:ty]) => {
134         PhantomData<$ty>
135     };
136     ([$ignore:ident $(, $attrs:ident)*]$args:tt) => {
137         arena_for_type!([$($attrs),*]$args)
138     };
139 }
140
141 macro_rules! declare_arena {
142     ([], [$($a:tt $name:ident: $ty:ty,)*], $tcx:lifetime) => {
143         #[derive(Default)]
144         pub struct Arena<$tcx> {
145             dropless: DroplessArena,
146             drop: DropArena,
147             $($name: arena_for_type!($a[$ty]),)*
148         }
149     }
150 }
151
152 macro_rules! which_arena_for_type {
153     ([][$arena:expr]) => {
154         Some($arena)
155     };
156     ([few$(, $attrs:ident)*][$arena:expr]) => {
157         None
158     };
159     ([$ignore:ident$(, $attrs:ident)*]$args:tt) => {
160         which_arena_for_type!([$($attrs),*]$args)
161     };
162 }
163
164 macro_rules! impl_arena_allocatable {
165     ([], [$($a:tt $name:ident: $ty:ty,)*], $tcx:lifetime) => {
166         $(
167             impl ArenaAllocatable for $ty {}
168             unsafe impl<$tcx> ArenaField<$tcx> for $ty {
169                 #[inline]
170                 fn arena<'a>(_arena: &'a Arena<$tcx>) -> Option<&'a TypedArena<Self>> {
171                     which_arena_for_type!($a[&_arena.$name])
172                 }
173             }
174         )*
175     }
176 }
177
178 arena_types!(declare_arena, [], 'tcx);
179
180 arena_types!(impl_arena_allocatable, [], 'tcx);
181
182 pub trait ArenaAllocatable {}
183
184 impl<T: Copy> ArenaAllocatable for T {}
185
186 unsafe trait ArenaField<'tcx>: Sized {
187     /// Returns a specific arena to allocate from.
188     /// If `None` is returned, the `DropArena` will be used.
189     fn arena<'a>(arena: &'a Arena<'tcx>) -> Option<&'a TypedArena<Self>>;
190 }
191
192 unsafe impl<'tcx, T> ArenaField<'tcx> for T {
193     #[inline]
194     default fn arena<'a>(_: &'a Arena<'tcx>) -> Option<&'a TypedArena<Self>> {
195         panic!()
196     }
197 }
198
199 impl<'tcx> Arena<'tcx> {
200     #[inline]
201     pub fn alloc<T: ArenaAllocatable>(&self, value: T) -> &mut T {
202         if !mem::needs_drop::<T>() {
203             return self.dropless.alloc(value);
204         }
205         match <T as ArenaField<'tcx>>::arena(self) {
206             Some(arena) => arena.alloc(value),
207             None => unsafe { self.drop.alloc(value) },
208         }
209     }
210
211     #[inline]
212     pub fn alloc_slice<T: Copy>(&self, value: &[T]) -> &mut [T] {
213         if value.len() == 0 {
214             return &mut []
215         }
216         self.dropless.alloc_slice(value)
217     }
218
219     pub fn alloc_from_iter<
220         T: ArenaAllocatable,
221         I: IntoIterator<Item = T>
222     >(
223         &'a self,
224         iter: I
225     ) -> &'a mut [T] {
226         if !mem::needs_drop::<T>() {
227             return self.dropless.alloc_from_iter(iter);
228         }
229         match <T as ArenaField<'tcx>>::arena(self) {
230             Some(arena) => arena.alloc_from_iter(iter),
231             None => unsafe { self.drop.alloc_from_iter(iter) },
232         }
233     }
234 }
235
236 /// Calls the destructor for an object when dropped.
237 struct DropType {
238     drop_fn: unsafe fn(*mut u8),
239     obj: *mut u8,
240 }
241
242 unsafe fn drop_for_type<T>(to_drop: *mut u8) {
243     std::ptr::drop_in_place(to_drop as *mut T)
244 }
245
246 impl Drop for DropType {
247     fn drop(&mut self) {
248         unsafe {
249             (self.drop_fn)(self.obj)
250         }
251     }
252 }
253
254 /// An arena which can be used to allocate any type.
255 /// Allocating in this arena is unsafe since the type system
256 /// doesn't know which types it contains. In order to
257 /// allocate safely, you must store a PhantomData<T>
258 /// alongside this arena for each type T you allocate.
259 #[derive(Default)]
260 struct DropArena {
261     /// A list of destructors to run when the arena drops.
262     /// Ordered so `destructors` gets dropped before the arena
263     /// since its destructor can reference memory in the arena.
264     destructors: RefCell<Vec<DropType>>,
265     arena: DroplessArena,
266 }
267
268 impl DropArena {
269     #[inline]
270     unsafe fn alloc<T>(&self, object: T) -> &mut T {
271         let mem = self.arena.alloc_raw(
272             mem::size_of::<T>(),
273             mem::align_of::<T>()
274         ) as *mut _ as *mut T;
275         // Write into uninitialized memory.
276         ptr::write(mem, object);
277         let result = &mut *mem;
278         // Record the destructor after doing the allocation as that may panic
279         // and would cause `object`'s destuctor to run twice if it was recorded before
280         self.destructors.borrow_mut().push(DropType {
281             drop_fn: drop_for_type::<T>,
282             obj: result as *mut T as *mut u8,
283         });
284         result
285     }
286
287     #[inline]
288     unsafe fn alloc_from_iter<T, I: IntoIterator<Item = T>>(&self, iter: I) -> &mut [T] {
289         let mut vec: SmallVec<[_; 8]> = iter.into_iter().collect();
290         if vec.is_empty() {
291             return &mut [];
292         }
293         let len = vec.len();
294
295         let start_ptr = self.arena.alloc_raw(
296             len.checked_mul(mem::size_of::<T>()).unwrap(),
297             mem::align_of::<T>()
298         ) as *mut _ as *mut T;
299
300         let mut destructors = self.destructors.borrow_mut();
301         // Reserve space for the destructors so we can't panic while adding them
302         destructors.reserve(len);
303
304         // Move the content to the arena by copying it and then forgetting
305         // the content of the SmallVec
306         vec.as_ptr().copy_to_nonoverlapping(start_ptr, len);
307         mem::forget(vec.drain(..));
308
309         // Record the destructors after doing the allocation as that may panic
310         // and would cause `object`'s destuctor to run twice if it was recorded before
311         for i in 0..len {
312             destructors.push(DropType {
313                 drop_fn: drop_for_type::<T>,
314                 obj: start_ptr.offset(i as isize) as *mut u8,
315             });
316         }
317
318         slice::from_raw_parts_mut(start_ptr, len)
319     }
320 }