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
use crate::boxed::ABox;
use crate::error::ExcessiveSliceRequestedError;
use crate::fat::*;
use crate::meta::*;
use crate::util;
use bytemuck::*;
use core::alloc::Layout;
impl<T: Zeroable, A: Alloc + Free> ABox<T, A> {
// Sized, Alloc
/// Allocate a new box initialized to `0` using `allocator`.
///
/// ## Failure Modes
/// * Fails to compile on impossible alignments (e.g. attempting to allocate 4 KiB alignment pages via 8/16 byte aligned malloc)
/// * Fails to compile for ZSTs if unsupported by the allocator
/// * Returns <code>[Err]\(...\)</code> when out of memory
///
/// ## Examples
/// ```
/// use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// let a = ABox::<u32, _>::try_new_bytemuck_zeroed_in(Malloc).unwrap();
/// let a = ABox::<(), _>::try_new_bytemuck_zeroed_in(DangleZst(Malloc)).unwrap();
/// ```
///
/// ```
/// // will return Err(...) - Null can't allocate anything
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// let err = ABox::<u32, _>::try_new_bytemuck_zeroed_in(Null).unwrap_err();
/// ```
///
/// ```compile_fail,E0080
/// // won't compile - Malloc doesn't support ZSTs
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// let a = ABox::<(), _>::try_new_bytemuck_zeroed_in(Malloc).unwrap();
/// ```
///
/// ```compile_fail,E0080
/// // won't compile - Malloc doesn't support Page alignment
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// #[repr(C, align(4096))] pub struct Page([u8; 4096]);
/// unsafe impl bytemuck::Zeroable for Page {}
/// let a = ABox::<Page, _>::try_new_bytemuck_zeroed_in(Malloc).unwrap();
/// ```
#[track_caller] pub fn try_new_bytemuck_zeroed_in(allocator: A) -> Result<Self, A::Error> {
let _ = Self::ASSERT_A_CAN_ALLOC_T;
let layout = Layout::new::<T>();
let data = allocator.alloc_zeroed(layout)?.cast();
// SAFETY: ✔️ we just allocated `data` with `allocator`
// SAFETY: ✔️ `T` is `Zeroable`, so our `alloc_zeroed` should've made `*data` a valid initialized `T`
Ok(unsafe { ABox::from_raw_in(data, allocator) })
}
/// Allocate a new box of `len` values initialized to `0` using `allocator`.
///
/// ## Failure Modes
/// * Fails to compile on impossible alignments (e.g. attempting to allocate 4 KiB alignment pages via 8/16 byte aligned malloc)
/// * Fails to compile if the allocator doesn't support ZSTs
/// * Returns <code>[Err]\(...\)</code> when excessively large allocations are requested
/// * Returns <code>[Err]\(...\)</code> when out of memory
///
/// ## Examples
/// ```
/// use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// let alloc = DangleZst(Malloc);
/// let a = ABox::<u32, _>::try_new_bytemuck_zeroed_slice_in(0, alloc).unwrap();
/// # assert_eq!(a.len(), 0);
/// let a = ABox::<(), _>::try_new_bytemuck_zeroed_slice_in(0, alloc).unwrap();
/// # assert_eq!(a.len(), 0);
/// let a = ABox::<u32, _>::try_new_bytemuck_zeroed_slice_in(32, alloc).unwrap();
/// # assert_eq!(a.len(), 32);
/// let a = ABox::<(), _>::try_new_bytemuck_zeroed_slice_in(32, alloc).unwrap();
/// # assert_eq!(a.len(), 32);
/// let a = ABox::<(), _>::try_new_bytemuck_zeroed_slice_in(usize::MAX, alloc).unwrap();
/// # assert_eq!(a.len(), usize::MAX);
/// ```
///
/// ```
/// // will return Err(...) - too much memory requested
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// # let alloc = DangleZst(Malloc);
/// let err = ABox::<u32, _>::try_new_bytemuck_zeroed_slice_in(usize::MAX, alloc).err().unwrap();
/// ```
///
/// ```
/// // will return Err(...) - still too much memory (half the address space → `Layout` overflows)
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// # let alloc = DangleZst(Malloc);
/// let err = ABox::<u32, _>::try_new_bytemuck_zeroed_slice_in(usize::MAX/8+1, alloc).err().unwrap();
/// ```
///
/// ```compile_fail,E0277
/// // won't compile - Malloc doesn't support ZSTs like empty slices
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// let a = ABox::<u32, _>::try_new_bytemuck_zeroed_slice_in(0, Malloc).unwrap();
/// ```
///
/// ```compile_fail,E0080
/// // won't compile - Malloc doesn't support Page alignment
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// # let alloc = DangleZst(Malloc);
/// #[repr(C, align(4096))] pub struct Page([u8; 4096]);
/// unsafe impl bytemuck::Zeroable for Page {}
/// let a = ABox::<Page, _>::try_new_bytemuck_zeroed_slice_in(1, alloc).unwrap();
/// ```
#[track_caller] pub fn try_new_bytemuck_zeroed_slice_in(len: usize, allocator: A) -> Result<ABox<[T], A>, A::Error> where A : ZstSupported {
let _ = Self::ASSERT_A_CAN_ALLOC_T_SLICE;
let layout = Layout::array::<T>(len).map_err(|_| ExcessiveSliceRequestedError{ requested: len })?;
let data = util::nn::slice_from_raw_parts(allocator.alloc_zeroed(layout)?.cast(), len);
// SAFETY: ✔️ we just allocated `data` with `allocator`
// SAFETY: ✔️ `T` is `Zeroable`, so our `alloc_zeroed` should've made `*data` a valid initialized `[T; len]`
Ok(unsafe { ABox::from_raw_in(data, allocator) })
}
/// Allocate a new box initialized to `0` using `allocator`.
///
/// ## Failure Modes
/// * Fails to compile on impossible alignments (e.g. attempting to allocate 4 KiB alignment pages via 8/16 byte aligned malloc)
/// * Fails to compile for ZSTs if unsupported by the allocator
/// * [`panic!`]s or [`handle_alloc_error`](alloc::alloc::handle_alloc_error)s when out of memory
///
/// ## Examples
/// ```
/// use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// let a = ABox::<u32, _>::new_bytemuck_zeroed_in(Malloc);
/// let a = ABox::<(), _>::new_bytemuck_zeroed_in(DangleZst(Malloc));
/// ```
///
/// ```should_panic
/// // will panic - Null can't allocate anything
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// let a = ABox::<u32, _>::new_bytemuck_zeroed_in(Null);
/// ```
///
/// ```compile_fail,E0080
/// // won't compile - Malloc doesn't support ZSTs
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// let a = ABox::<(), _>::new_bytemuck_zeroed_in(Malloc);
/// ```
///
/// ```compile_fail,E0080
/// // won't compile - Malloc doesn't support Page alignment
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// #[repr(C, align(4096))] pub struct Page([u8; 4096]);
/// unsafe impl bytemuck::Zeroable for Page {}
/// let a = ABox::<Page, _>::new_bytemuck_zeroed_in(Malloc);
/// ```
#[cfg(global_oom_handling)] #[track_caller] pub fn new_bytemuck_zeroed_in(allocator: A) -> Self {
let _ = Self::ASSERT_A_CAN_ALLOC_T;
Self::try_new_bytemuck_zeroed_in(allocator).expect("unable to allocate")
}
/// Allocate a new box of `len` values initialized to `0` using `allocator`.
///
/// ## Failure Modes
/// * Fails to compile on impossible alignments (e.g. attempting to allocate 4 KiB alignment pages via 8/16 byte aligned malloc)
/// * Fails to compile if the allocator doesn't support ZSTs
/// * [`panic!`]s or [`handle_alloc_error`](alloc::alloc::handle_alloc_error)s when excessively large allocations are requested
/// * [`panic!`]s or [`handle_alloc_error`](alloc::alloc::handle_alloc_error)s when out of memory
///
/// ## Examples
/// ```
/// use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// let alloc = DangleZst(Malloc);
/// let a = ABox::<u32, _>::new_bytemuck_zeroed_slice_in(0, alloc);
/// # assert_eq!(a.len(), 0);
/// let a = ABox::<(), _>::new_bytemuck_zeroed_slice_in(0, alloc);
/// # assert_eq!(a.len(), 0);
/// let a = ABox::<u32, _>::new_bytemuck_zeroed_slice_in(32, alloc);
/// # assert_eq!(a.len(), 32);
/// let a = ABox::<(), _>::new_bytemuck_zeroed_slice_in(32, alloc);
/// # assert_eq!(a.len(), 32);
/// let a = ABox::<(), _>::new_bytemuck_zeroed_slice_in(usize::MAX, alloc);
/// # assert_eq!(a.len(), usize::MAX);
/// ```
///
/// ```should_panic
/// // will panic - too much memory requested
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// # let alloc = DangleZst(Malloc);
/// let a = ABox::<u32, _>::new_bytemuck_zeroed_slice_in(usize::MAX, alloc);
/// ```
///
/// ```should_panic
/// // will panic - still too much memory (half the address space → `Layout` overflows)
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// # let alloc = DangleZst(Malloc);
/// let a = ABox::<u32, _>::new_bytemuck_zeroed_slice_in(usize::MAX/8+1, alloc);
/// ```
///
/// ```compile_fail,E0277
/// // won't compile - Malloc doesn't support ZSTs like empty slices
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// let a = ABox::<u32, _>::new_bytemuck_zeroed_slice_in(0, Malloc);
/// ```
///
/// ```compile_fail,E0080
/// // won't compile - Malloc doesn't support Page alignment
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// # let alloc = DangleZst(Malloc);
/// #[repr(C, align(4096))] pub struct Page([u8; 4096]);
/// unsafe impl bytemuck::Zeroable for Page {}
/// let a = ABox::<Page, _>::new_bytemuck_zeroed_slice_in(1, alloc);
/// ```
#[cfg(global_oom_handling)] #[track_caller] pub fn new_bytemuck_zeroed_slice_in(len: usize, allocator: A) -> ABox<[T], A> where A : ZstSupported {
let _ = Self::ASSERT_A_CAN_ALLOC_T_SLICE;
Self::try_new_bytemuck_zeroed_slice_in(len, allocator).expect("unable to allocate")
}
}
impl<T: Zeroable, A: Alloc + Free + Default> ABox<T, A> {
// Sized, Alloc, Default
/// Allocate a new box initialized to `0`.
///
/// ## Failure Modes
/// * Fails to compile on impossible alignments (e.g. attempting to allocate 4 KiB alignment pages via 8/16 byte aligned malloc)
/// * Fails to compile for ZSTs if unsupported by the allocator
/// * Returns <code>[Err]\(...\)</code> when out of memory
///
/// ## Examples
/// ```
/// use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// let a = ABox::<u32, Malloc>::try_new_bytemuck_zeroed().unwrap();
/// let a = ABox::<(), DangleZst<Malloc>>::try_new_bytemuck_zeroed().unwrap();
/// ```
///
/// ```
/// // will return Err(...) - Null can't allocate anything
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// let err = ABox::<u32, Null>::try_new_bytemuck_zeroed().unwrap_err();
/// ```
///
/// ```compile_fail,E0080
/// // won't compile - Malloc doesn't support ZSTs
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// let a = ABox::<(), Malloc>::try_new_bytemuck_zeroed().unwrap();
/// ```
///
/// ```compile_fail,E0080
/// // won't compile - Malloc doesn't support Page alignment
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// #[repr(C, align(4096))] pub struct Page([u8; 4096]);
/// unsafe impl bytemuck::Zeroable for Page {}
/// let a = ABox::<Page, Malloc>::try_new_bytemuck_zeroed().unwrap();
/// ```
#[track_caller] #[inline(always)] pub fn try_new_bytemuck_zeroed() -> Result<Self, A::Error> {
let _ = Self::ASSERT_A_CAN_ALLOC_T;
Self::try_new_bytemuck_zeroed_in(A::default())
}
/// Allocate a new box of `len` values initialized to `0`.
///
/// ## Failure Modes
/// * Fails to compile on impossible alignments (e.g. attempting to allocate 4 KiB alignment pages via 8/16 byte aligned malloc)
/// * Fails to compile if the allocator doesn't support ZSTs
/// * Returns <code>[Err]\(...\)</code> when excessively large allocations are requested
/// * Returns <code>[Err]\(...\)</code> when out of memory
///
/// ## Examples
/// ```
/// use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// type A = DangleZst<Malloc>;
/// let a = ABox::<u32, A>::try_new_bytemuck_zeroed_slice(0).unwrap();
/// # assert_eq!(a.len(), 0);
/// let a = ABox::<(), A>::try_new_bytemuck_zeroed_slice(0).unwrap();
/// # assert_eq!(a.len(), 0);
/// let a = ABox::<u32, A>::try_new_bytemuck_zeroed_slice(32).unwrap();
/// # assert_eq!(a.len(), 32);
/// let a = ABox::<(), A>::try_new_bytemuck_zeroed_slice(32).unwrap();
/// # assert_eq!(a.len(), 32);
/// let a = ABox::<(), A>::try_new_bytemuck_zeroed_slice(usize::MAX).unwrap();
/// # assert_eq!(a.len(), usize::MAX);
/// ```
///
/// ```
/// // will return Err(...) - too much memory requested
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// # type A = DangleZst<Malloc>;
/// let err = ABox::<u32, A>::try_new_bytemuck_zeroed_slice(usize::MAX).err().unwrap();
/// ```
///
/// ```
/// // will return Err(...) - still too much memory (half the address space → `Layout` overflows)
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// # type A = DangleZst<Malloc>;
/// let err = ABox::<u32, A>::try_new_bytemuck_zeroed_slice(usize::MAX/8+1).err().unwrap();
/// ```
///
/// ```compile_fail,E0277
/// // won't compile - Malloc doesn't support ZSTs like empty slices
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// let a = ABox::<u32, Malloc>::try_new_bytemuck_zeroed_slice(0).unwrap();
/// ```
///
/// ```compile_fail,E0080
/// // won't compile - Malloc doesn't support Page alignment
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// # type A = DangleZst<Malloc>;
/// #[repr(C, align(4096))] pub struct Page([u8; 4096]);
/// unsafe impl bytemuck::Zeroable for Page {}
/// let a = ABox::<Page, A>::try_new_bytemuck_zeroed_slice(1).unwrap();
/// ```
#[track_caller] #[inline(always)] pub fn try_new_bytemuck_zeroed_slice(len: usize) -> Result<ABox<[T], A>, A::Error> where A : ZstSupported {
let _ = Self::ASSERT_A_CAN_ALLOC_T_SLICE;
Self::try_new_bytemuck_zeroed_slice_in(len, A::default())
}
/// Allocate a new box initialized to `0`.
///
/// ## Failure Modes
/// * Fails to compile on impossible alignments (e.g. attempting to allocate 4 KiB alignment pages via 8/16 byte aligned malloc)
/// * Fails to compile for ZSTs if unsupported by the allocator
/// * [`panic!`]s or [`handle_alloc_error`](alloc::alloc::handle_alloc_error)s when out of memory
///
/// ## Examples
/// ```
/// use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// let a = ABox::<u32, Malloc>::new_bytemuck_zeroed();
/// let a = ABox::<(), DangleZst<Malloc>>::new_bytemuck_zeroed();
/// ```
///
/// ```should_panic
/// // will panic - Null can't allocate anything
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// let a = ABox::<u32, Null>::new_bytemuck_zeroed();
/// ```
///
/// ```compile_fail,E0080
/// // won't compile - Malloc doesn't support ZSTs
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// let a = ABox::<(), Malloc>::new_bytemuck_zeroed();
/// ```
///
/// ```compile_fail,E0080
/// // won't compile - Malloc doesn't support Page alignment
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// #[repr(C, align(4096))] pub struct Page([u8; 4096]);
/// unsafe impl bytemuck::Zeroable for Page {}
/// let a = ABox::<Page, Malloc>::new_bytemuck_zeroed();
/// ```
#[cfg(global_oom_handling)] #[track_caller] #[inline(always)] pub fn new_bytemuck_zeroed() -> Self {
let _ = Self::ASSERT_A_CAN_ALLOC_T;
Self::new_bytemuck_zeroed_in(A::default())
}
/// Allocate a new box of `len` values initialized to `0`.
///
/// ## Failure Modes
/// * Fails to compile on impossible alignments (e.g. attempting to allocate 4 KiB alignment pages via 8/16 byte aligned malloc)
/// * Fails to compile if the allocator doesn't support ZSTs
/// * [`panic!`]s or [`handle_alloc_error`](alloc::alloc::handle_alloc_error)s when excessively large allocations are requested
/// * [`panic!`]s or [`handle_alloc_error`](alloc::alloc::handle_alloc_error)s when out of memory
///
/// ## Examples
/// ```
/// use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// type A = DangleZst<Malloc>;
/// let a = ABox::<u32, A>::new_bytemuck_zeroed_slice(0);
/// # assert_eq!(a.len(), 0);
/// let a = ABox::<(), A>::new_bytemuck_zeroed_slice(0);
/// # assert_eq!(a.len(), 0);
/// let a = ABox::<u32, A>::new_bytemuck_zeroed_slice(32);
/// # assert_eq!(a.len(), 32);
/// let a = ABox::<(), A>::new_bytemuck_zeroed_slice(32);
/// # assert_eq!(a.len(), 32);
/// let a = ABox::<(), A>::new_bytemuck_zeroed_slice(usize::MAX);
/// # assert_eq!(a.len(), usize::MAX);
/// ```
///
/// ```should_panic
/// // will panic - too much memory requested
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// # type A = DangleZst<Malloc>;
/// let a = ABox::<u32, A>::new_bytemuck_zeroed_slice(usize::MAX);
/// ```
///
/// ```should_panic
/// // will panic - still too much memory (half the address space → `Layout` overflows)
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// # type A = DangleZst<Malloc>;
/// let a = ABox::<u32, A>::new_bytemuck_zeroed_slice(usize::MAX/8+1);
/// ```
///
/// ```compile_fail,E0277
/// // won't compile - Malloc doesn't support ZSTs like empty slices
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// let a = ABox::<u32, Malloc>::new_bytemuck_zeroed_slice(0);
/// ```
///
/// ```compile_fail,E0080
/// // won't compile - Malloc doesn't support Page alignment
/// # use ialloc::{allocator::{adapt::DangleZst, c::Malloc, debug::Null}, boxed::ABox};
/// # type A = DangleZst<Malloc>;
/// #[repr(C, align(4096))] pub struct Page([u8; 4096]);
/// unsafe impl bytemuck::Zeroable for Page {}
/// let a = ABox::<Page, A>::new_bytemuck_zeroed_slice(1);
/// ```
#[cfg(global_oom_handling)] #[track_caller] #[inline(always)] pub fn new_bytemuck_zeroed_slice(len: usize) -> ABox<[T], A> where A : ZstSupported {
let _ = Self::ASSERT_A_CAN_ALLOC_T_SLICE;
Self::new_bytemuck_zeroed_slice_in(len, A::default())
}
}