-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathgc.rs
377 lines (330 loc) · 11.5 KB
/
gc.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
use crate::set_data_ptr;
use crate::trace::Trace;
use std::alloc::{alloc, dealloc, Layout};
use std::cell::{Cell, RefCell};
use std::mem;
use std::ptr::{self, NonNull};
#[cfg(feature = "nightly")]
use std::marker::Unsize;
struct GcState {
stats: GcStats,
config: GcConfig,
boxes_start: Option<NonNull<GcBox<dyn Trace>>>,
}
impl Drop for GcState {
fn drop(&mut self) {
if !self.config.leak_on_drop {
collect_garbage(self);
}
// We have no choice but to leak any remaining nodes that
// might be referenced from other thread-local variables.
}
}
// Whether or not the thread is currently in the sweep phase of garbage collection.
// During this phase, attempts to dereference a `Gc<T>` pointer will trigger a panic.
thread_local!(pub static GC_DROPPING: Cell<bool> = const { Cell::new(false) });
struct DropGuard;
impl DropGuard {
fn new() -> DropGuard {
GC_DROPPING.with(|dropping| dropping.set(true));
DropGuard
}
}
impl Drop for DropGuard {
fn drop(&mut self) {
GC_DROPPING.with(|dropping| dropping.set(false));
}
}
#[must_use]
pub fn finalizer_safe() -> bool {
GC_DROPPING.with(|dropping| !dropping.get())
}
// The garbage collector's internal state.
thread_local!(static GC_STATE: RefCell<GcState> = RefCell::new(GcState {
stats: GcStats::default(),
config: GcConfig::default(),
boxes_start: None,
}));
const MARK_MASK: usize = 1 << (usize::BITS - 1);
const ROOTS_MASK: usize = !MARK_MASK;
const ROOTS_MAX: usize = ROOTS_MASK; // max allowed value of roots
pub(crate) struct GcBoxHeader {
roots: Cell<usize>, // high bit is used as mark flag
next: Cell<Option<NonNull<GcBox<dyn Trace>>>>,
}
impl GcBoxHeader {
#[inline]
pub fn new() -> Self {
GcBoxHeader {
roots: Cell::new(1), // unmarked and roots count = 1
next: Cell::new(None),
}
}
#[inline]
pub fn roots(&self) -> usize {
self.roots.get() & ROOTS_MASK
}
#[inline]
pub fn inc_roots(&self) {
let roots = self.roots.get();
// abort if the count overflows to prevent `mem::forget` loops
// that could otherwise lead to erroneous drops
if (roots & ROOTS_MASK) < ROOTS_MAX {
self.roots.set(roots + 1); // we checked that this wont affect the high bit
} else {
panic!("roots counter overflow");
}
}
#[inline]
pub fn dec_roots(&self) {
self.roots.set(self.roots.get() - 1); // no underflow check
}
#[inline]
pub fn is_marked(&self) -> bool {
self.roots.get() & MARK_MASK != 0
}
#[inline]
pub fn mark(&self) {
self.roots.set(self.roots.get() | MARK_MASK);
}
#[inline]
pub fn unmark(&self) {
self.roots.set(self.roots.get() & !MARK_MASK);
}
}
#[repr(C)] // to justify the layout computations in GcBox::from_box, Gc::from_raw
pub(crate) struct GcBox<T: ?Sized + 'static> {
header: GcBoxHeader,
data: T,
}
impl<T: Trace> GcBox<T> {
/// Allocates a garbage collected `GcBox` on the heap,
/// and appends it to the thread-local `GcBox` chain. This might
/// trigger a collection.
///
/// A `GcBox` allocated this way starts its life rooted.
pub(crate) fn new(value: T) -> NonNull<Self> {
let gcbox = NonNull::from(Box::leak(Box::new(GcBox {
header: GcBoxHeader::new(),
data: value,
})));
unsafe { insert_gcbox(gcbox) };
gcbox
}
}
impl<
#[cfg(not(feature = "nightly"))] T: Trace,
#[cfg(feature = "nightly")] T: Trace + Unsize<dyn Trace> + ?Sized,
> GcBox<T>
{
/// Consumes a `Box`, moving the value inside into a new `GcBox`
/// on the heap. Adds the new `GcBox` to the thread-local `GcBox`
/// chain. This might trigger a collection.
///
/// A `GcBox` allocated this way starts its life rooted.
pub(crate) fn from_box(value: Box<T>) -> NonNull<Self> {
let header_layout = Layout::new::<GcBoxHeader>();
let value_layout = Layout::for_value::<T>(&*value);
// This relies on GcBox being #[repr(C)].
let gcbox_layout = header_layout.extend(value_layout).unwrap().0.pad_to_align();
unsafe {
// Allocate the GcBox in a way that's compatible with Box,
// since the collector will deallocate it via
// Box::from_raw.
let gcbox_addr = alloc(gcbox_layout);
// Since we're not allowed to move the value out of an
// active Box, and we will need to deallocate the Box
// without calling the destructor, convert it to a raw
// pointer first.
let value = Box::into_raw(value);
// Create a pointer with the metadata of value and the
// address and provenance of the GcBox.
let gcbox = set_data_ptr(value as *mut GcBox<T>, gcbox_addr);
// Move the data.
ptr::addr_of_mut!((*gcbox).header).write(GcBoxHeader::new());
ptr::addr_of_mut!((*gcbox).data)
.cast::<u8>()
.copy_from_nonoverlapping(value.cast::<u8>(), value_layout.size());
// Deallocate the former Box. (Box only allocates for size
// != 0.)
if value_layout.size() != 0 {
dealloc(value.cast::<u8>(), value_layout);
}
// Add the new GcBox to the chain and return it.
let gcbox = NonNull::new_unchecked(gcbox);
insert_gcbox(gcbox);
gcbox
}
}
}
/// Add a new `GcBox` to the current thread's `GcBox` chain. This
/// might trigger a collection first if enough bytes have been
/// allocated since the previous collection.
///
/// # Safety
///
/// `gcbox` must point to a valid `GcBox` that is not yet in a `GcBox`
/// chain.
unsafe fn insert_gcbox(gcbox: NonNull<GcBox<dyn Trace>>) {
GC_STATE.with(|st| {
let mut st = st.borrow_mut();
// XXX We should probably be more clever about collecting
if st.stats.bytes_allocated > st.config.threshold {
collect_garbage(&mut st);
if st.stats.bytes_allocated as f64
> st.config.threshold as f64 * st.config.used_space_ratio
{
// we didn't collect enough, so increase the
// threshold for next time, to avoid thrashing the
// collector too much/behaving quadratically.
st.config.threshold =
(st.stats.bytes_allocated as f64 / st.config.used_space_ratio) as usize;
}
}
let next = st.boxes_start.replace(gcbox);
gcbox.as_ref().header.next.set(next);
// We allocated some bytes! Let's record it
st.stats.bytes_allocated += mem::size_of_val::<GcBox<_>>(gcbox.as_ref());
});
}
impl<T: ?Sized> GcBox<T> {
/// Returns `true` if the two references refer to the same `GcBox`.
pub(crate) fn ptr_eq(this: &GcBox<T>, other: &GcBox<T>) -> bool {
// Use .header to ignore fat pointer vtables, to work around
// https://github.com/rust-lang/rust/issues/46139
ptr::eq(&this.header, &other.header)
}
}
impl<T: Trace + ?Sized> GcBox<T> {
/// Marks this `GcBox` and marks through its data.
pub(crate) unsafe fn trace_inner(&self) {
if !self.header.is_marked() {
self.header.mark();
self.data.trace();
}
}
}
impl<T: ?Sized> GcBox<T> {
/// Increases the root count on this `GcBox`.
/// Roots prevent the `GcBox` from being destroyed by the garbage collector.
pub(crate) unsafe fn root_inner(&self) {
self.header.inc_roots();
}
/// Decreases the root count on this `GcBox`.
/// Roots prevent the `GcBox` from being destroyed by the garbage collector.
pub(crate) unsafe fn unroot_inner(&self) {
self.header.dec_roots();
}
/// Returns a pointer to the `GcBox`'s value, without dereferencing it.
pub(crate) fn value_ptr(this: *const GcBox<T>) -> *const T {
unsafe { ptr::addr_of!((*this).data) }
}
/// Returns a reference to the `GcBox`'s value.
pub(crate) fn value(&self) -> &T {
&self.data
}
}
/// Collects garbage.
fn collect_garbage(st: &mut GcState) {
struct Unmarked<'a> {
incoming: &'a Cell<Option<NonNull<GcBox<dyn Trace>>>>,
this: NonNull<GcBox<dyn Trace>>,
}
unsafe fn mark(head: &Cell<Option<NonNull<GcBox<dyn Trace>>>>) -> Vec<Unmarked<'_>> {
// Walk the tree, tracing and marking the nodes
let mut mark_head = head.get();
while let Some(node) = mark_head {
if node.as_ref().header.roots() > 0 {
node.as_ref().trace_inner();
}
mark_head = node.as_ref().header.next.get();
}
// Collect a vector of all of the nodes which were not marked,
// and unmark the ones which were.
let mut unmarked = Vec::new();
let mut unmark_head = head;
while let Some(node) = unmark_head.get() {
if node.as_ref().header.is_marked() {
node.as_ref().header.unmark();
} else {
unmarked.push(Unmarked {
incoming: unmark_head,
this: node,
});
}
unmark_head = &node.as_ref().header.next;
}
unmarked
}
unsafe fn sweep(finalized: Vec<Unmarked<'_>>, bytes_allocated: &mut usize) {
let _guard = DropGuard::new();
for node in finalized.into_iter().rev() {
if node.this.as_ref().header.is_marked() {
continue;
}
let incoming = node.incoming;
let node = Box::from_raw(node.this.as_ptr());
*bytes_allocated -= mem::size_of_val::<GcBox<_>>(&*node);
incoming.set(node.header.next.take());
}
}
st.stats.collections_performed += 1;
unsafe {
let head = Cell::from_mut(&mut st.boxes_start);
let unmarked = mark(head);
if unmarked.is_empty() {
return;
}
for node in &unmarked {
Trace::finalize_glue(&node.this.as_ref().data);
}
mark(head);
sweep(unmarked, &mut st.stats.bytes_allocated);
}
}
/// Immediately triggers a garbage collection on the current thread.
///
/// This will panic if executed while a collection is currently in progress
pub fn force_collect() {
GC_STATE.with(|st| {
let mut st = st.borrow_mut();
collect_garbage(&mut st);
});
}
pub struct GcConfig {
pub threshold: usize,
/// after collection we want the the ratio of used/total to be no
/// greater than this (the threshold grows exponentially, to avoid
/// quadratic behavior when the heap is growing linearly with the
/// number of `new` calls):
pub used_space_ratio: f64,
/// For short-running processes it is not always appropriate to run
/// GC, sometimes it is better to let system free the resources
pub leak_on_drop: bool,
}
impl Default for GcConfig {
fn default() -> Self {
Self {
used_space_ratio: 0.7,
threshold: 100,
leak_on_drop: false,
}
}
}
#[allow(dead_code)]
pub fn configure(configurer: impl FnOnce(&mut GcConfig)) {
GC_STATE.with(|st| {
let mut st = st.borrow_mut();
configurer(&mut st.config);
});
}
#[derive(Clone, Default)]
pub struct GcStats {
pub bytes_allocated: usize,
pub collections_performed: usize,
}
#[allow(dead_code)]
#[must_use]
pub fn stats() -> GcStats {
GC_STATE.with(|st| st.borrow().stats.clone())
}