bump-scope 2.3.0

A fast bump allocator that supports allocation scopes / checkpoints. Aka an arena for values of arbitrary types.
Documentation
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
use core::{fmt, iter::FusedIterator, marker::PhantomData, ptr::NonNull};

use crate::{chunk::ChunkHeader, settings::BumpAllocatorSettings};

use super::{Chunk, ChunkNextIter, ChunkPrevIter, Stats};

/// Provides statistics about the memory usage of the bump allocator.
///
/// This is returned from [`BumpAllocatorCore::any_stats`](crate::traits::BumpAllocatorCore::any_stats).
#[derive(Default, Clone, Copy, PartialEq, Eq)]
pub struct AnyStats<'a> {
    chunk: Option<AnyChunk<'a>>,
}

impl<A, S> From<Stats<'_, A, S>> for AnyStats<'_>
where
    S: BumpAllocatorSettings,
{
    fn from(value: Stats<'_, A, S>) -> Self {
        Self {
            chunk: value.current_chunk().map(Into::into),
        }
    }
}

impl fmt::Debug for AnyStats<'_> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        self.debug_format("AnyStats", f)
    }
}

impl<'a> AnyStats<'a> {
    /// Returns the number of chunks.
    #[must_use]
    pub fn count(self) -> usize {
        let Some(current) = self.chunk else { return 0 };

        let mut sum = 1;
        current.iter_prev().for_each(|_| sum += 1);
        current.iter_next().for_each(|_| sum += 1);
        sum
    }

    /// Returns the total size of all chunks.
    #[must_use]
    pub fn size(self) -> usize {
        let Some(current) = self.chunk else { return 0 };

        let mut sum = current.size();
        current.iter_prev().for_each(|chunk| sum += chunk.size());
        current.iter_next().for_each(|chunk| sum += chunk.size());
        sum
    }

    /// Returns the total capacity of all chunks.
    #[must_use]
    pub fn capacity(self) -> usize {
        let Some(current) = self.chunk else { return 0 };

        let mut sum = current.capacity();
        current.iter_prev().for_each(|chunk| sum += chunk.capacity());
        current.iter_next().for_each(|chunk| sum += chunk.capacity());
        sum
    }

    /// Returns the amount of allocated bytes.
    /// This includes padding and wasted space due to reallocations.
    ///
    /// This is equal to the `allocated` bytes of the current chunk
    /// plus the `capacity` of all previous chunks.
    #[must_use]
    pub fn allocated(self) -> usize {
        let Some(current) = self.chunk else { return 0 };

        let mut sum = current.allocated();
        current.iter_prev().for_each(|chunk| sum += chunk.capacity());
        sum
    }

    /// Returns the remaining capacity in bytes.
    ///
    /// This is equal to the `remaining` capacity of the current chunk
    /// plus the `capacity` of all following chunks.
    #[must_use]
    pub fn remaining(self) -> usize {
        let Some(current) = self.chunk else { return 0 };

        let mut sum = current.remaining();
        current.iter_next().for_each(|chunk| sum += chunk.capacity());
        sum
    }

    /// Returns an iterator from smallest to biggest chunk.
    #[must_use]
    pub fn small_to_big(self) -> AnyChunkNextIter<'a> {
        let Some(mut start) = self.chunk else {
            return AnyChunkNextIter { chunk: None };
        };

        while let Some(chunk) = start.prev() {
            start = chunk;
        }

        AnyChunkNextIter { chunk: Some(start) }
    }

    /// Returns an iterator from biggest to smallest chunk.
    #[must_use]
    pub fn big_to_small(self) -> AnyChunkPrevIter<'a> {
        let Some(mut start) = self.chunk else {
            return AnyChunkPrevIter { chunk: None };
        };

        while let Some(chunk) = start.next() {
            start = chunk;
        }

        AnyChunkPrevIter { chunk: Some(start) }
    }

    /// This is the chunk we are currently allocating on.
    #[must_use]
    pub fn current_chunk(self) -> Option<AnyChunk<'a>> {
        self.chunk
    }

    pub(crate) fn debug_format(self, name: &str, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct(name)
            .field("allocated", &self.allocated())
            .field("capacity", &self.capacity())
            .finish()
    }
}

impl<'a> From<AnyChunk<'a>> for AnyStats<'a> {
    fn from(chunk: AnyChunk<'a>) -> Self {
        Self { chunk: Some(chunk) }
    }
}

/// Refers to a chunk of memory that was allocated by the bump allocator.
///
/// See [`AnyStats`].
#[derive(Clone, Copy, PartialEq, Eq)]
pub struct AnyChunk<'a> {
    header: NonNull<ChunkHeader>,
    marker: PhantomData<&'a ()>,
}

impl<A, S> From<Chunk<'_, A, S>> for AnyChunk<'_>
where
    S: BumpAllocatorSettings,
{
    fn from(value: Chunk<'_, A, S>) -> Self {
        Self {
            header: value.chunk.header().cast(),
            marker: PhantomData,
        }
    }
}

impl fmt::Debug for AnyChunk<'_> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("Chunk")
            .field("allocated", &self.allocated())
            .field("capacity", &self.capacity())
            .finish()
    }
}

impl<'a> AnyChunk<'a> {
    fn header(&self) -> &ChunkHeader {
        unsafe { self.header.as_ref() }
    }

    #[inline]
    pub(crate) fn is_upwards_allocating(self) -> bool {
        let header = self.header.addr();
        let end = self.header().end.addr();
        end > header
    }

    /// Returns the previous (smaller) chunk.
    #[must_use]
    #[inline(always)]
    pub fn prev(self) -> Option<Self> {
        Some(AnyChunk {
            header: self.header().prev.get()?,
            marker: PhantomData,
        })
    }

    /// Returns the next (bigger) chunk.
    #[must_use]
    #[inline(always)]
    pub fn next(self) -> Option<Self> {
        Some(AnyChunk {
            header: self.header().next.get()?,
            marker: PhantomData,
        })
    }

    /// Returns an iterator over all previous (smaller) chunks.
    #[must_use]
    #[inline(always)]
    pub fn iter_prev(self) -> AnyChunkPrevIter<'a> {
        AnyChunkPrevIter { chunk: self.prev() }
    }

    /// Returns an iterator over all next (bigger) chunks.
    #[must_use]
    #[inline(always)]
    pub fn iter_next(self) -> AnyChunkNextIter<'a> {
        AnyChunkNextIter { chunk: self.next() }
    }

    /// Returns the size of this chunk in bytes.
    #[must_use]
    #[inline]
    pub fn size(self) -> usize {
        let start = self.chunk_start();
        let end = self.chunk_end();
        end.addr().get() - start.addr().get()
    }

    /// Returns the capacity of this chunk in bytes.
    #[must_use]
    #[inline]
    pub fn capacity(self) -> usize {
        let start = self.content_start();
        let end = self.content_end();
        end.addr().get() - start.addr().get()
    }

    /// Returns the amount of allocated bytes.
    /// This includes padding and wasted space due to reallocations.
    ///
    /// This property can be misleading for chunks that come after the current chunk because
    /// their `bump_position` and consequently the `allocated` property is not reset until
    /// they become the current chunk again.
    #[must_use]
    #[inline]
    pub fn allocated(self) -> usize {
        if self.is_upwards_allocating() {
            let start = self.content_start();
            let end = self.bump_position();
            end.addr().get() - start.addr().get()
        } else {
            let start = self.bump_position();
            let end = self.content_end();
            end.addr().get() - start.addr().get()
        }
    }

    /// Returns the remaining capacity.
    ///
    /// This property can be misleading for chunks that come after the current chunk because
    /// their `bump_position` and consequently the `remaining` property is not reset until
    /// they become the current chunk again.
    #[must_use]
    #[inline]
    pub fn remaining(self) -> usize {
        if self.is_upwards_allocating() {
            let start = self.bump_position();
            let end = self.content_end();
            end.addr().get() - start.addr().get()
        } else {
            let start = self.content_start();
            let end = self.bump_position();
            end.addr().get() - start.addr().get()
        }
    }

    /// Returns a pointer to the start of the chunk.
    #[must_use]
    #[inline]
    pub fn chunk_start(self) -> NonNull<u8> {
        if self.is_upwards_allocating() {
            self.header.cast()
        } else {
            self.header().end
        }
    }

    /// Returns a pointer to the end of the chunk.
    #[must_use]
    #[inline]
    pub fn chunk_end(self) -> NonNull<u8> {
        if self.is_upwards_allocating() {
            self.header().end
        } else {
            self.after_header()
        }
    }

    /// Returns a pointer to the start of the chunk's content.
    #[must_use]
    #[inline]
    pub fn content_start(self) -> NonNull<u8> {
        if self.is_upwards_allocating() {
            self.after_header()
        } else {
            self.chunk_start()
        }
    }

    /// Returns a pointer to the end of the chunk's content.
    #[must_use]
    #[inline]
    pub fn content_end(self) -> NonNull<u8> {
        if self.is_upwards_allocating() {
            self.chunk_end()
        } else {
            self.header.cast()
        }
    }

    /// Returns the bump pointer. It lies within the chunk's content range.
    ///
    /// This property can be misleading for chunks that come after the current chunk because
    /// their `bump_position` is not reset until they become the current chunk again.
    #[must_use]
    #[inline]
    pub fn bump_position(self) -> NonNull<u8> {
        self.header().pos.get()
    }

    fn after_header(self) -> NonNull<u8> {
        unsafe { self.header.add(1).cast() }
    }
}

/// Iterator that iterates over previous chunks by continuously calling [`AnyChunk::prev`].
#[derive(Default, Clone, Copy, PartialEq, Eq)]
pub struct AnyChunkPrevIter<'a> {
    #[expect(missing_docs)]
    pub chunk: Option<AnyChunk<'a>>,
}

impl<A, S> From<ChunkPrevIter<'_, A, S>> for AnyChunkPrevIter<'_>
where
    S: BumpAllocatorSettings,
{
    fn from(value: ChunkPrevIter<'_, A, S>) -> Self {
        Self {
            chunk: value.chunk.map(Into::into),
        }
    }
}

impl<'a> Iterator for AnyChunkPrevIter<'a> {
    type Item = AnyChunk<'a>;

    #[inline(always)]
    fn next(&mut self) -> Option<Self::Item> {
        let chunk = self.chunk?;
        self.chunk = chunk.prev();
        Some(chunk)
    }
}

impl FusedIterator for AnyChunkPrevIter<'_> {}

impl fmt::Debug for AnyChunkPrevIter<'_> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_list().entries(*self).finish()
    }
}

/// Iterator that iterates over next chunks by continuously calling [`AnyChunk::next`].
#[derive(Default, Clone, Copy, PartialEq, Eq)]
pub struct AnyChunkNextIter<'a> {
    #[expect(missing_docs)]
    pub chunk: Option<AnyChunk<'a>>,
}

impl<A, S> From<ChunkNextIter<'_, A, S>> for AnyChunkNextIter<'_>
where
    S: BumpAllocatorSettings,
{
    fn from(value: ChunkNextIter<'_, A, S>) -> Self {
        Self {
            chunk: value.chunk.map(Into::into),
        }
    }
}

impl<'a> Iterator for AnyChunkNextIter<'a> {
    type Item = AnyChunk<'a>;

    #[inline(always)]
    fn next(&mut self) -> Option<Self::Item> {
        let chunk = self.chunk?;
        self.chunk = chunk.next();
        Some(chunk)
    }
}

impl FusedIterator for AnyChunkNextIter<'_> {}

impl fmt::Debug for AnyChunkNextIter<'_> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_list().entries(self.map(AnyChunk::size)).finish()
    }
}

#[test]
fn check_from_impls() {
    #![expect(dead_code, clippy::elidable_lifetime_names)]

    use crate::{BaseAllocator, BumpScope};

    fn accepting_any_stats(_: AnyStats) {}
    fn accepting_any_chunk(_: AnyChunk) {}
    fn accepting_any_chunk_prev_iter(_: AnyChunkPrevIter) {}
    fn accepting_any_chunk_next_iter(_: AnyChunkNextIter) {}

    fn generic_bump<'a, A, S>(bump: &BumpScope<'a, A, S>)
    where
        A: BaseAllocator<S::GuaranteedAllocated>,
        S: BumpAllocatorSettings,
    {
        let stats = bump.stats();
        accepting_any_stats(stats.into());
        accepting_any_chunk(stats.current_chunk().unwrap().into());
        accepting_any_chunk_next_iter(stats.small_to_big().into());
        accepting_any_chunk_prev_iter(stats.big_to_small().into());
    }
}