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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
#[cfg(not(feature = "std"))]
use alloc::boxed::Box;
use core::mem;
use arrayvec::ArrayVec;
use reclaim::{Reclaim, Retired};
use crate::epoch::PossibleAge;
use crate::EPOCH_CACHE_SIZE;
const BAG_POOL_SIZE: usize = 16;
#[derive(Debug)]
pub struct BagPool<R: Reclaim + 'static>(ArrayVec<[Box<BagNode<R>>; BAG_POOL_SIZE]>);
impl<R: Reclaim + 'static> Default for BagPool<R> {
#[inline]
fn default() -> Self {
Self::new()
}
}
impl<R: Reclaim + 'static> BagPool<R> {
#[inline]
pub fn new() -> Self {
Self(ArrayVec::default())
}
#[inline]
pub fn with_bags() -> Self {
Self((0..BAG_POOL_SIZE).map(|_| BagNode::boxed()).collect())
}
#[inline]
fn allocate_bag(&mut self) -> Box<BagNode<R>> {
self.0.pop().unwrap_or_else(BagNode::boxed)
}
#[inline]
fn recycle_bag(&mut self, bag: Box<BagNode<R>>) {
debug_assert!(bag.is_empty());
if let Err(cap) = self.0.try_push(bag) {
mem::drop(cap.element());
}
}
}
const BAG_QUEUE_COUNT: usize = 3;
#[derive(Debug)]
pub struct EpochBagQueues<R: Reclaim + 'static> {
queues: [BagQueue<R>; BAG_QUEUE_COUNT],
curr_idx: usize,
}
impl<R: Reclaim + 'static> Default for EpochBagQueues<R> {
#[inline]
fn default() -> Self {
Self::new()
}
}
impl<R: Reclaim + 'static> EpochBagQueues<R> {
#[inline]
pub fn new() -> Self {
Self { queues: [BagQueue::new(), BagQueue::new(), BagQueue::new()], curr_idx: 0 }
}
#[inline]
pub fn into_sorted(self) -> [BagQueue<R>; BAG_QUEUE_COUNT] {
let [a, b, c] = self.queues;
match self.curr_idx {
0 => [a, c, b],
1 => [b, a, c],
2 => [c, b, a],
_ => unreachable!(),
}
}
#[inline]
pub fn retire_record(&mut self, record: Retired<R>, bag_pool: &mut BagPool<R>) {
self.retire_record_by_age(record, PossibleAge::SameEpoch, bag_pool);
}
#[inline]
pub fn retire_record_by_age(
&mut self,
record: Retired<R>,
age: PossibleAge,
bag_pool: &mut BagPool<R>,
) {
let queue = match age {
PossibleAge::SameEpoch => &mut self.queues[self.curr_idx],
PossibleAge::OneEpoch => &mut self.queues[(self.curr_idx + 2) % BAG_QUEUE_COUNT],
PossibleAge::TwoEpochs => &mut self.queues[(self.curr_idx + 1) % BAG_QUEUE_COUNT],
};
queue.retire_record(record, bag_pool);
}
#[inline]
pub unsafe fn retire_final_record(&mut self, record: Retired<R>) {
let curr = &mut self.queues[self.curr_idx];
curr.head.retired_records.push_unchecked(record);
}
#[inline]
pub unsafe fn rotate_and_reclaim(&mut self, bag_pool: &mut BagPool<R>) {
self.curr_idx = (self.curr_idx + 1) % BAG_QUEUE_COUNT;
self.queues[self.curr_idx].reclaim_full_bags(bag_pool);
}
}
#[derive(Debug)]
pub struct BagQueue<R: Reclaim + 'static> {
head: Box<BagNode<R>>,
}
impl<R: Reclaim + 'static> BagQueue<R> {
#[inline]
pub fn into_non_empty(self) -> Option<Box<BagNode<R>>> {
if !self.is_empty() {
Some(self.head)
} else {
None
}
}
#[inline]
fn new() -> Self {
Self { head: BagNode::boxed() }
}
#[inline]
fn is_empty(&self) -> bool {
self.head.is_empty()
}
#[inline]
fn retire_record(&mut self, record: Retired<R>, bag_pool: &mut BagPool<R>) {
unsafe { self.head.retired_records.push_unchecked(record) };
if self.head.retired_records.is_full() {
let mut old_head = bag_pool.allocate_bag();
mem::swap(&mut self.head, &mut old_head);
self.head.next = Some(old_head);
}
}
#[inline]
unsafe fn reclaim_full_bags(&mut self, bag_pool: &mut BagPool<R>) {
let mut node = self.head.next.take();
while let Some(mut bag) = node {
bag.reclaim_all();
node = bag.next.take();
bag_pool.recycle_bag(bag);
}
}
}
#[derive(Debug)]
pub struct BagNode<R: Reclaim + 'static> {
next: Option<Box<BagNode<R>>>,
retired_records: ArrayVec<[Retired<R>; EPOCH_CACHE_SIZE]>,
}
impl<R: Reclaim> BagNode<R> {
#[inline]
pub unsafe fn reclaim_all(&mut self) {
self.reclaim_inner();
let mut curr = self.next.take();
while let Some(mut node) = curr {
node.reclaim_inner();
curr = node.next.take();
}
}
#[inline]
fn boxed() -> Box<Self> {
Box::new(Self { next: None, retired_records: ArrayVec::default() })
}
#[inline]
fn is_empty(&self) -> bool {
self.next.is_none() && self.retired_records.len() == 0
}
#[inline]
unsafe fn reclaim_inner(&mut self) {
for mut record in self.retired_records.drain(..) {
record.reclaim();
}
}
}
impl<R: Reclaim + 'static> Drop for BagNode<R> {
#[inline]
fn drop(&mut self) {
debug_assert!(
self.is_empty(),
"`BagNode`s must not be dropped unless empty (would leak memory)"
);
}
}
#[cfg(test)]
mod tests {
use std::ptr::NonNull;
use reclaim::leak::Leaking;
use super::{BAG_QUEUE_COUNT, EPOCH_CACHE_SIZE};
use crate::epoch::PossibleAge;
type EpochBagQueues = super::EpochBagQueues<Leaking>;
type BagPool = super::BagPool<Leaking>;
type BagQueue = super::BagQueue<Leaking>;
type Retired = reclaim::Retired<Leaking>;
fn retired() -> Retired {
let ptr: NonNull<()> = NonNull::dangling();
unsafe { Retired::new_unchecked(ptr) }
}
#[test]
fn empty_bag_queue() {
let bag_queue = BagQueue::new();
assert!(bag_queue.is_empty());
assert!(bag_queue.into_non_empty().is_none());
}
#[test]
fn non_empty_bag_queue() {
let mut pool = BagPool::new();
let mut bag_queue = BagQueue::new();
for _ in 0..EPOCH_CACHE_SIZE - 1 {
bag_queue.retire_record(retired(), &mut pool);
}
assert!(!bag_queue.is_empty());
assert!(bag_queue.head.next.is_none());
bag_queue.retire_record(retired(), &mut pool);
assert_eq!(bag_queue.head.retired_records.len(), 0);
assert!(bag_queue.head.next.is_some());
assert!(!bag_queue.is_empty());
let mut node = bag_queue.into_non_empty().unwrap();
unsafe { node.reclaim_all() };
}
#[test]
fn rotate_and_reclaim() {
let mut pool = BagPool::new();
let mut bags = EpochBagQueues::new();
for _ in 0..=EPOCH_CACHE_SIZE {
bags.retire_record(retired(), &mut pool);
}
unsafe { bags.rotate_and_reclaim(&mut pool) };
unsafe { bags.rotate_and_reclaim(&mut pool) };
unsafe { bags.rotate_and_reclaim(&mut pool) };
assert_eq!(pool.0.len(), 1);
assert_eq!(bags.queues[0].head.retired_records.len(), 1);
unsafe { bags.queues[0].head.reclaim_all() };
}
#[test]
fn retire_by_age() {
let mut pool = BagPool::new();
let mut bags = EpochBagQueues::new();
for _ in 0..BAG_QUEUE_COUNT {
for _ in 0..EPOCH_CACHE_SIZE - 1 {
bags.retire_record(retired(), &mut pool);
unsafe { bags.rotate_and_reclaim(&mut pool) };
}
}
bags.retire_record_by_age(retired(), PossibleAge::TwoEpochs, &mut pool);
assert_eq!(bags.curr_idx, 0);
assert_eq!(bags.queues[1].head.retired_records.len(), 0);
assert!(bags.queues[1].head.next.is_some());
unsafe { bags.rotate_and_reclaim(&mut pool) };
assert_eq!(pool.0.len(), 1);
bags.retire_record_by_age(retired(), PossibleAge::OneEpoch, &mut pool);
assert_eq!(bags.curr_idx, 1);
assert_eq!(bags.queues[0].head.retired_records.len(), 0);
assert!(bags.queues[0].head.next.is_some());
assert_eq!(pool.0.len(), 0);
unsafe { bags.rotate_and_reclaim(&mut pool) };
bags.retire_record_by_age(retired(), PossibleAge::SameEpoch, &mut pool);
assert_eq!(bags.curr_idx, 2);
assert_eq!(pool.0.len(), 0);
assert_eq!(bags.queues[2].head.retired_records.len(), 0);
assert!(bags.queues[2].head.next.is_some());
unsafe { bags.rotate_and_reclaim(&mut pool) };
assert_eq!(bags.curr_idx, 0);
assert_eq!(pool.0.len(), 1);
unsafe { bags.rotate_and_reclaim(&mut pool) };
assert_eq!(bags.curr_idx, 1);
unsafe { bags.rotate_and_reclaim(&mut pool) };
assert_eq!(bags.curr_idx, 2);
assert_eq!(pool.0.len(), 2);
}
}