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
use crate::{error::AllocError, helpers::SliceAllocGuard, Alloc};
use core::{
alloc::Layout,
ptr::{self, NonNull},
};
/// Extension trait for [`Alloc`](Alloc) which provides interfaces to reallocate in-place.
pub trait ResizeInPlace: Alloc {
/// Grow the given block to a new, larger layout.
///
/// # Errors
/// - [`AllocError::AllocFailed`] if allocation fails.
/// - [`AllocError::GrowSmallerNewLayout`] if `new_size < old_layout.size()`.
/// - [`AllocError::Other`]`("zero-sized resize in place was requested")` if `new_size` is zero.
/// - [`AllocError::Other`]`("cannot resize in place")` if the growth operation could not be
/// completed in-place.
///
/// # Safety
///
/// - `ptr` must point to a block of memory allocated using this allocator.
/// - `old_layout` must describe exactly the same block.
#[cfg_attr(miri, track_caller)]
unsafe fn grow_in_place(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_size: usize,
) -> Result<(), AllocError>;
/// Grow the given block to a new, larger layout, zeroing newly allocated bytes.
///
/// # Errors
/// - [`AllocError::AllocFailed`] if allocation fails.
/// - [`AllocError::GrowSmallerNewLayout`] if `new_size < old_layout.size()`.
/// - [`AllocError::Other`]`("zero-sized resize in place was requested")` if `new_size` is zero.
/// - [`AllocError::Other`]`("cannot resize in place")` if the growth operation could not be
/// completed in-place.
///
/// # Safety
///
/// - `ptr` must point to a block of memory allocated using this allocator.
/// - `old_layout` must describe exactly the same block.
#[cfg_attr(miri, track_caller)]
unsafe fn grow_in_place_zeroed(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_size: usize,
) -> Result<(), AllocError> {
self.grow_in_place_filled(ptr, old_layout, new_size, 0)
}
/// Grow the given block to a new, larger layout, filling any newly allocated bytes by calling
/// `pattern(i)` for each new byte index `i`.
///
/// # Errors
/// - [`AllocError::AllocFailed`] if allocation fails.
/// - [`AllocError::GrowSmallerNewLayout`] if `new_size < old_layout.size()`.
/// - [`AllocError::Other`]`("zero-sized resize in place was requested")` if `new_size` is zero.
/// - [`AllocError::Other`]`("cannot resize in place")` if the growth operation could not be
/// completed in-place.
///
/// # Safety
///
/// - `ptr` must point to a block of memory allocated using this allocator.
/// - `old_layout` must describe exactly the same block.
#[cfg_attr(miri, track_caller)]
unsafe fn grow_in_place_patterned<F: Fn(usize) -> u8 + Clone>(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_size: usize,
pattern: F,
) -> Result<(), AllocError> {
tri!(self.grow_in_place(ptr, old_layout, new_size));
let start_idx = old_layout.size();
let mut start = SliceAllocGuard::new(
NonNull::new_unchecked(ptr.as_ptr().add(start_idx)),
&self,
new_size - start_idx,
);
for i in 0..new_size - start_idx {
start.init_unchecked(pattern(start_idx + i));
}
Ok(())
}
/// Grow the given block to a new, larger layout, filling any newly allocated bytes with `n`.
///
/// # Errors
/// - [`AllocError::AllocFailed`] if allocation fails.
/// - [`AllocError::GrowSmallerNewLayout`] if `new_size < old_layout.size()`.
/// - [`AllocError::Other`]`("zero-sized resize in place was requested")` if `new_size` is zero.
/// - [`AllocError::Other`]`("cannot resize in place")` if the growth operation could not be
/// completed in-place.
///
/// # Safety
///
/// - `ptr` must point to a block of memory allocated using this allocator.
/// - `old_layout` must describe exactly the same block.
#[cfg_attr(miri, track_caller)]
unsafe fn grow_in_place_filled(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_size: usize,
n: u8,
) -> Result<(), AllocError> {
tri!(self.grow_in_place(ptr, old_layout, new_size));
ptr::write_bytes(
ptr.as_ptr().add(old_layout.size()),
n,
new_size - old_layout.size(),
);
Ok(())
}
/// Shrink the given block to a new, smaller layout.
///
/// # Errors
///
/// - [`AllocError::AllocFailed`] if allocation fails.
/// - [`AllocError::ShrinkBiggerNewLayout`] if `new_size > old_layout.size()`.
/// - [`AllocError::Other`]`("zero-sized resize in place was requested")` if `new_size` is zero.
/// - [`AllocError::Other`]`("cannot resize in place")` if the shrink operation could not be
/// completed in-place.
///
/// # Safety
///
/// - `ptr` must point to a block of memory allocated using this allocator.
/// - `old_layout` must describe exactly the same block.
#[cfg_attr(miri, track_caller)]
unsafe fn shrink_in_place(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_size: usize,
) -> Result<(), AllocError>;
/// Reallocate a block, growing or shrinking as needed.
///
/// On grow, preserves existing contents up to `old_layout.size()`, and
/// on shrink, truncates to `new_size`.
///
/// # Errors
///
/// - [`AllocError::AllocFailed`] if allocation fails.
/// - [`AllocError::Other`]`("zero-sized resize in place was requested")` if `new_size` is zero.
/// - [`AllocError::Other`]`("cannot resize in place")` if the reallocation operation could not
/// be completed in-place.
///
/// # Safety
///
/// - `ptr` must point to a block previously allocated with this allocator.
/// - `old_layout` must describe exactly that block.
#[cfg_attr(miri, track_caller)]
unsafe fn realloc_in_place(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_size: usize,
) -> Result<(), AllocError> {
if new_size > old_layout.size() {
self.grow_in_place(ptr, old_layout, new_size)
} else {
self.shrink_in_place(ptr, old_layout, new_size)
}
}
/// Reallocate a block, growing or shrinking as needed, zeroing any newly allocated bytes.
///
/// On grow, preserves existing contents up to `old_layout.size()`, and
/// on shrink, truncates to `new_size`.
///
/// # Errors
///
/// - [`AllocError::AllocFailed`] if allocation fails.
/// - [`AllocError::Other`]`("zero-sized resize in place was requested")` if `new_size` is zero.
/// - [`AllocError::Other`]`("cannot resize in place")` if the reallocation operation could not
/// be completed in-place.
///
/// # Safety
///
/// - `ptr` must point to a block previously allocated with this allocator.
/// - `old_layout` must describe exactly that block.
#[cfg_attr(miri, track_caller)]
unsafe fn realloc_in_place_zeroed(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_size: usize,
) -> Result<(), AllocError> {
if new_size > old_layout.size() {
self.grow_in_place_zeroed(ptr, old_layout, new_size)
} else {
self.shrink_in_place(ptr, old_layout, new_size)
}
}
/// Reallocate a block, growing or shrinking as needed, filling any new bytes by calling
/// `pattern(i)` for each new byte index `i`.
///
/// On grow, preserves existing contents up to `old_layout.size()`, and
/// on shrink, truncates to `new_size`.
///
/// # Errors
///
/// - [`AllocError::AllocFailed`] if allocation fails.
/// - [`AllocError::Other`]`("zero-sized resize in place was requested")` if `new_size` is zero.
/// - [`AllocError::Other`]`("cannot resize in place")` if the reallocation operation could not
/// be completed in-place.
///
/// # Safety
///
/// - `ptr` must point to a block previously allocated with this allocator.
/// - `old_layout` must describe exactly that block.
#[cfg_attr(miri, track_caller)]
unsafe fn realloc_in_place_patterned<F: Fn(usize) -> u8 + Clone>(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_size: usize,
pattern: F,
) -> Result<(), AllocError> {
if new_size > old_layout.size() {
self.grow_in_place_patterned(ptr, old_layout, new_size, pattern)
} else {
self.shrink_in_place(ptr, old_layout, new_size)
}
}
/// Reallocate a block, growing or shrinking as needed, filling any newly allocated bytes with
/// `n`.
///
/// On grow, preserves existing contents up to `old_layout.size()`, and
/// on shrink, truncates to `new_size`.
///
/// # Errors
///
/// - [`AllocError::AllocFailed`] if allocation fails.
/// - [`AllocError::Other`]`("zero-sized resize in place was requested")` if `new_size` is zero.
/// - [`AllocError::Other`]`("cannot resize in place")` if the reallocation operation could not
/// be completed in-place.
///
/// # Safety
///
/// - `ptr` must point to a block previously allocated with this allocator.
/// - `old_layout` must describe exactly that block.
#[cfg_attr(miri, track_caller)]
unsafe fn realloc_in_place_filled(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_size: usize,
n: u8,
) -> Result<(), AllocError> {
if new_size > old_layout.size() {
self.grow_in_place_filled(ptr, old_layout, new_size, n)
} else {
self.shrink_in_place(ptr, old_layout, new_size)
}
}
}
#[cfg(any(feature = "jemalloc", feature = "mimalloc"))]
const RESIZE_IP_ZS: AllocError = AllocError::Other("zero-sized resize in place was requested");
#[cfg(any(feature = "jemalloc", feature = "mimalloc"))]
const CANNOT_RESIZE_IP: AllocError = AllocError::Other("cannot resize in place");
#[cfg(feature = "jemalloc")]
impl ResizeInPlace for crate::external_alloc::jemalloc::Jemalloc {
unsafe fn grow_in_place(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_size: usize,
) -> Result<(), AllocError> {
if new_size == 0 {
Err(RESIZE_IP_ZS)
} else if new_size < old_layout.size() {
Err(AllocError::GrowSmallerNewLayout(
old_layout.size(),
new_size,
))
} else {
// it isn't my fault if this is wrong lol
if crate::external_alloc::ffi::jem::xallocx(
ptr.as_ptr().cast::<libc::c_void>(),
new_size,
0,
crate::external_alloc::ffi::jem::layout_to_flags(new_size, old_layout.align()),
) >= new_size
{
Ok(())
} else {
Err(CANNOT_RESIZE_IP)
}
}
}
unsafe fn shrink_in_place(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_size: usize,
) -> Result<(), AllocError> {
if new_size == 0 {
Err(RESIZE_IP_ZS)
} else if new_size > old_layout.size() {
Err(AllocError::ShrinkBiggerNewLayout(
old_layout.size(),
new_size,
))
} else if new_size == old_layout.size() {
// noop
Ok(())
} else {
let flags =
crate::external_alloc::ffi::jem::layout_to_flags(new_size, old_layout.align());
let usable_size = crate::external_alloc::ffi::jem::xallocx(
ptr.as_ptr().cast::<libc::c_void>(),
new_size,
0,
flags,
);
if usable_size < old_layout.size() {
Ok(())
} else if usable_size == crate::external_alloc::ffi::jem::nallocx(new_size, flags) {
debug_assert_eq!(
crate::external_alloc::ffi::jem::nallocx(new_size, flags),
crate::external_alloc::ffi::jem::nallocx(old_layout.size(), flags)
);
Ok(())
} else {
// is this even possible?
Err(CANNOT_RESIZE_IP)
}
}
}
}
#[cfg(feature = "mimalloc")]
pub(crate) const SHRINK_IP: AllocError =
AllocError::Other("unsupported operation: attempted to shrink in place");
#[cfg(feature = "mimalloc")]
impl ResizeInPlace for crate::external_alloc::mimalloc::MiMalloc {
unsafe fn grow_in_place(
&self,
ptr: NonNull<u8>,
old_layout: Layout,
new_size: usize,
) -> Result<(), AllocError> {
if new_size == 0 {
Err(RESIZE_IP_ZS)
} else if new_size < old_layout.size() {
Err(AllocError::GrowSmallerNewLayout(
old_layout.size(),
new_size,
))
} else {
// this would be, though
if crate::external_alloc::ffi::mim::mi_expand(
ptr.as_ptr().cast::<libc::c_void>(),
new_size,
)
.is_null()
{
Err(CANNOT_RESIZE_IP)
} else {
Ok(())
}
}
}
/// Shrinking in-place is not supported by mimalloc.
///
/// This is a no-op and always returns an error.
///
/// # Errors
///
/// - [`AllocError::Other`]`("unsupported operation: attempted to shrink in place")`.
// it just returns an error, no reason not to inline it.
#[allow(clippy::inline_always)]
#[inline(always)]
unsafe fn shrink_in_place(
&self,
_: NonNull<u8>,
_: Layout,
_: usize,
) -> Result<(), AllocError> {
Err(SHRINK_IP)
}
}
// TODO: the absolutely hellish task of adding in-place operations parallel to alloc_ext's and
// alloc_slice's methods