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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
use std::alloc::{GlobalAlloc, Layout, System};
use std::cell::Cell;
use std::fmt;
use std::fmt::{Debug, Display};
use std::mem;
use std::panic::catch_unwind;
use std::sync::atomic::AtomicUsize;
use std::sync::atomic::Ordering::{AcqRel, Relaxed};
use std::sync::{Arc, Mutex};
use crossbeam_channel::{unbounded, Receiver, Sender};
use once_cell::race::OnceBox;
use once_cell::unsync::Lazy;
#[derive(Default)]
pub struct AccountingAlloc<A = System> {
thread_counters: OnceBox<ThreadCounters>,
allocator: A,
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
pub struct AllocStats {
pub all_time: AllTimeAllocStats,
pub since_last: IncrementalAllocStats,
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
pub struct AllTimeAllocStats {
pub alloc: usize,
pub dealloc: usize,
pub largest_alloc: usize,
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
pub struct IncrementalAllocStats {
pub alloc: usize,
pub dealloc: usize,
pub largest_alloc: usize,
}
#[derive(Debug)]
struct ThreadCounters {
tx: Sender<Arc<ThreadCounter>>,
shared: Mutex<ThreadCountersShared>,
}
#[derive(Debug)]
struct ThreadCountersShared {
rx: Receiver<Arc<ThreadCounter>>,
counters: Vec<Arc<ThreadCounter>>,
dead_alloc: usize,
dead_dealloc: usize,
all_time: AllTimeAllocStats,
}
#[derive(Debug, Default)]
struct ThreadCounter {
alloc: AtomicUsize,
dealloc: AtomicUsize,
largest_alloc: AtomicUsize,
}
#[derive(Clone, Copy, Debug)]
enum ThreadCounterState {
Uninitialized,
Initializing(AllTimeAllocStats),
Initialized,
}
impl AccountingAlloc<System> {
pub const fn new() -> Self {
Self::with_allocator(System)
}
}
impl<A> AccountingAlloc<A> {
pub const fn with_allocator(allocator: A) -> Self {
Self { thread_counters: OnceBox::new(), allocator }
}
pub fn count(&self) -> AllocStats {
let thread_counters = self.thread_counters.get_or_init(Default::default);
thread_counters.shared.lock().unwrap().count()
}
pub fn inc(&self, mut alloc: usize, mut dealloc: usize) {
use ThreadCounterState::{Initialized, Initializing, Uninitialized};
thread_local! {
static COUNTER: Lazy<Arc<ThreadCounter>> = Default::default();
static STATE: Cell<ThreadCounterState> = Cell::new(Uninitialized);
}
let thread_counters = &self.thread_counters;
let _ignore = catch_unwind(move || {
match STATE.try_with(|state| state.get())? {
Uninitialized => {
STATE.try_with(|state| state.set(Initializing(AllTimeAllocStats::default())))?;
let counter = COUNTER.try_with(|counter| Arc::clone(counter))?;
let mut largest_alloc = alloc;
if let Initializing(init_counter) = STATE.try_with(|state| state.replace(Initialized))? {
alloc += init_counter.alloc;
dealloc += init_counter.dealloc;
largest_alloc = largest_alloc.max(init_counter.largest_alloc);
}
counter.alloc.fetch_add(alloc, Relaxed);
counter.dealloc.fetch_add(dealloc, Relaxed);
counter.largest_alloc.fetch_max(largest_alloc, AcqRel);
let thread_counters = thread_counters.get_or_init(Default::default);
let _ignore = thread_counters.tx.send(counter);
Ok(())
}
Initializing(init_counts) => STATE.try_with(|state| {
state.set(Initializing(AllTimeAllocStats {
alloc: init_counts.alloc + alloc,
dealloc: init_counts.dealloc + dealloc,
largest_alloc: init_counts.largest_alloc.max(alloc),
}))
}),
Initialized => COUNTER.try_with(|counter| {
counter.alloc.fetch_add(alloc, Relaxed);
counter.dealloc.fetch_add(dealloc, Relaxed);
counter.largest_alloc.fetch_max(alloc, AcqRel);
}),
}
});
}
}
impl<A: Debug> Debug for AccountingAlloc<A> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("AccountingAlloc")
.field("thread_counters", &self.thread_counters.get())
.field("allocator", &self.allocator)
.finish()
}
}
impl<A> Display for AccountingAlloc<A> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let thread_counters = self.thread_counters.get_or_init(Default::default);
let mut shared = thread_counters.shared.lock().unwrap();
let AllTimeAllocStats { alloc, dealloc, largest_alloc } = shared.count().all_time;
for (thread_idx, thread_counter) in shared.counters.iter().enumerate() {
let thread_alloc = thread_counter.alloc.load(Relaxed);
let thread_dealloc = thread_counter.dealloc.load(Relaxed);
writeln!(f, "Thread {thread_idx}: alloc {thread_alloc} dealloc {thread_dealloc}")?;
}
let total = alloc - dealloc;
writeln!(
f,
"Total: {total} (alloc {alloc} dealloc {dealloc} largest_alloc {largest_alloc})"
)
}
}
unsafe impl<A: GlobalAlloc> GlobalAlloc for AccountingAlloc<A> {
unsafe fn alloc(&self, layout: Layout) -> *mut u8 {
self.inc(layout.size(), 0);
self.allocator.alloc(layout)
}
unsafe fn dealloc(&self, ptr: *mut u8, layout: Layout) {
self.inc(0, layout.size());
self.allocator.dealloc(ptr, layout);
}
unsafe fn alloc_zeroed(&self, layout: Layout) -> *mut u8 {
self.inc(layout.size(), 0);
self.allocator.alloc_zeroed(layout)
}
unsafe fn realloc(&self, ptr: *mut u8, layout: Layout, new_size: usize) -> *mut u8 {
self.inc(new_size, layout.size());
self.allocator.realloc(ptr, layout, new_size)
}
}
impl Default for ThreadCounters {
fn default() -> Self {
let (tx, rx) = unbounded();
Self {
tx,
shared: Mutex::new(ThreadCountersShared {
rx,
counters: Vec::with_capacity(64),
dead_alloc: Default::default(),
dead_dealloc: Default::default(),
all_time: Default::default(),
}),
}
}
}
impl ThreadCountersShared {
fn count(&mut self) -> AllocStats {
let mut alloc = 0;
let mut dealloc = 0;
let mut largest_alloc = 0;
self.counters.retain_mut(|counter| match Arc::get_mut(counter) {
Some(counter) => {
self.dead_alloc += *counter.alloc.get_mut();
self.dead_dealloc += *counter.dealloc.get_mut();
largest_alloc = largest_alloc.max(*counter.largest_alloc.get_mut());
false
}
None => {
alloc += counter.alloc.load(Relaxed);
dealloc += counter.dealloc.load(Relaxed);
largest_alloc = largest_alloc.max(counter.largest_alloc.swap(0, AcqRel));
true
}
});
for counter in self.rx.try_iter() {
match Arc::try_unwrap(counter) {
Ok(mut counter) => {
self.dead_alloc += *counter.alloc.get_mut();
self.dead_dealloc += *counter.dealloc.get_mut();
largest_alloc = largest_alloc.max(*counter.largest_alloc.get_mut());
}
Err(counter) => {
alloc += counter.alloc.load(Relaxed);
dealloc += counter.dealloc.load(Relaxed);
largest_alloc = largest_alloc.max(counter.largest_alloc.swap(0, AcqRel));
self.counters.push(counter);
}
}
}
alloc += self.dead_alloc;
dealloc += self.dead_dealloc;
let all_time =
AllTimeAllocStats { alloc, dealloc, largest_alloc: self.all_time.largest_alloc.max(largest_alloc) };
let last_all_time = mem::replace(&mut self.all_time, all_time);
let since_last = IncrementalAllocStats {
alloc: alloc - last_all_time.alloc,
dealloc: dealloc - last_all_time.dealloc,
largest_alloc,
};
AllocStats { all_time, since_last }
}
}
#[cfg(test)]
mod tests {
use std::convert::identity;
use crossbeam_utils::thread::scope;
use super::*;
#[derive(Default)]
struct TestAlloc;
struct Allocation {
layout: Layout,
}
struct AllocationHandle<'a> {
allocator: &'a AccountingAlloc<TestAlloc>,
ptr: *mut u8,
layout: Layout,
}
fn test_allocations<'a, T>(
allocator: &'a AccountingAlloc<TestAlloc>,
allocate: fn(&'a AccountingAlloc<TestAlloc>, Layout) -> AllocationHandle<'a>,
callback: impl FnOnce(Vec<AllocationHandle<'a>>) -> T,
) -> T {
let layouts: Vec<_> = (1..10).map(|idx| Layout::array::<u8>(10000 * idx).unwrap()).collect();
let (allocations_tx, allocations_rx) = unbounded();
scope(|scope| {
for layout in layouts.clone() {
let allocations_tx = allocations_tx.clone();
scope.spawn(move |_scope| allocations_tx.send(allocate(allocator, layout)).unwrap());
}
drop(allocations_tx);
callback(allocations_rx.into_iter().collect())
})
.unwrap()
}
fn expected_counts<'a>(allocations: &[AllocationHandle<'a>]) -> AllocStats {
let allocation_sizes = allocations.iter().map(|allocation| allocation.layout.size());
let since_last = IncrementalAllocStats {
alloc: allocation_sizes.clone().sum::<usize>(),
dealloc: 0,
largest_alloc: allocation_sizes.max().unwrap(),
};
AllocStats {
all_time: AllTimeAllocStats {
alloc: since_last.alloc,
dealloc: since_last.dealloc,
largest_alloc: since_last.largest_alloc,
},
since_last,
}
}
#[test]
fn alloc() {
let allocator = Default::default();
let (_allocations, expected) = test_allocations(&allocator, AllocationHandle::new, |allocations| {
let expected = expected_counts(&allocations);
assert_eq!(allocator.count(), expected);
(allocations, expected)
});
assert_eq!(
allocator.count(),
AllocStats { since_last: Default::default(), ..expected }
);
}
#[test]
fn dealloc() {
let allocator = &Default::default();
let allocations = test_allocations(&allocator, AllocationHandle::new, identity);
let expected = expected_counts(&allocations);
assert_eq!(allocator.count(), expected);
scope(|scope| {
for allocation in allocations {
scope.spawn(move |_scope| drop(allocation));
}
})
.unwrap();
assert_eq!(
allocator.count(),
AllocStats {
all_time: AllTimeAllocStats { dealloc: expected.all_time.alloc, ..expected.all_time },
since_last: IncrementalAllocStats { dealloc: expected.all_time.alloc, ..Default::default() },
}
);
}
#[test]
fn alloc_zeroed() {
let allocator = &Default::default();
let allocations = test_allocations(&allocator, AllocationHandle::new_zeroed, identity);
let expected = expected_counts(&allocations);
assert_eq!(allocator.count(), expected);
}
#[test]
fn realloc() {
let allocator = &Default::default();
let mut allocations = test_allocations(&allocator, AllocationHandle::new, identity);
let expected = expected_counts(&allocations);
assert_eq!(allocator.count(), expected);
scope(|scope| {
for allocation in &mut allocations {
scope.spawn(move |_scope| allocation.realloc(allocation.layout.size() * 2));
}
})
.unwrap();
let expected_2 = expected_counts(&allocations);
assert_eq!(
allocator.count(),
AllocStats {
all_time: AllTimeAllocStats {
alloc: expected.since_last.alloc + expected_2.since_last.alloc,
dealloc: expected.since_last.alloc,
largest_alloc: expected_2.since_last.largest_alloc,
},
since_last: IncrementalAllocStats { dealloc: expected.since_last.alloc, ..expected_2.since_last }
}
);
}
unsafe impl GlobalAlloc for TestAlloc {
unsafe fn alloc(&self, layout: Layout) -> *mut u8 {
Box::into_raw(Box::new(Allocation { layout })) as *mut u8
}
unsafe fn dealloc(&self, ptr: *mut u8, layout: Layout) {
let allocation = Box::from_raw(ptr as *mut Allocation);
assert_eq!(layout, allocation.layout);
drop(allocation);
}
unsafe fn alloc_zeroed(&self, layout: Layout) -> *mut u8 {
self.alloc(layout)
}
unsafe fn realloc(&self, ptr: *mut u8, layout: Layout, new_size: usize) -> *mut u8 {
self.dealloc(ptr, layout);
self.alloc(Layout::from_size_align_unchecked(new_size, layout.align()))
}
}
impl<'a> AllocationHandle<'a> {
fn new(allocator: &'a AccountingAlloc<TestAlloc>, layout: Layout) -> Self {
Self { allocator, ptr: unsafe { allocator.alloc(layout) }, layout }
}
fn new_zeroed(allocator: &'a AccountingAlloc<TestAlloc>, layout: Layout) -> Self {
Self { allocator, ptr: unsafe { allocator.alloc_zeroed(layout) }, layout }
}
fn realloc(&mut self, new_size: usize) {
unsafe {
self.ptr = self.allocator.realloc(self.ptr, self.layout, new_size);
self.layout = Layout::from_size_align_unchecked(new_size, self.layout.align());
}
}
}
unsafe impl Send for AllocationHandle<'_> {}
impl Drop for AllocationHandle<'_> {
fn drop(&mut self) {
unsafe { self.allocator.dealloc(self.ptr, self.layout) };
}
}
}