]> git.proxmox.com Git - rustc.git/blame - library/std/src/sys/common/alloc.rs
New upstream version 1.58.1+dfsg1
[rustc.git] / library / std / src / sys / common / alloc.rs
CommitLineData
532ac7d7
XL
1use crate::alloc::{GlobalAlloc, Layout, System};
2use crate::cmp;
3use crate::ptr;
a1dfa0c6
XL
4
5// The minimum alignment guaranteed by the architecture. This value is used to
6// add fast paths for low alignment values.
60c5eb7d
XL
7#[cfg(all(any(
8 target_arch = "x86",
9 target_arch = "arm",
10 target_arch = "mips",
11 target_arch = "powerpc",
12 target_arch = "powerpc64",
1b1a35ee 13 target_arch = "sparc",
60c5eb7d
XL
14 target_arch = "asmjs",
15 target_arch = "wasm32",
1b1a35ee 16 target_arch = "hexagon",
94222f64
XL
17 target_arch = "riscv32",
18 target_arch = "xtensa"
60c5eb7d 19)))]
a1dfa0c6 20pub const MIN_ALIGN: usize = 8;
60c5eb7d
XL
21#[cfg(all(any(
22 target_arch = "x86_64",
23 target_arch = "aarch64",
24 target_arch = "mips64",
25 target_arch = "s390x",
dfeec247 26 target_arch = "sparc64",
3c0e092e
XL
27 target_arch = "riscv64",
28 target_arch = "wasm64",
60c5eb7d 29)))]
a1dfa0c6
XL
30pub const MIN_ALIGN: usize = 16;
31
32pub unsafe fn realloc_fallback(
33 alloc: &System,
34 ptr: *mut u8,
35 old_layout: Layout,
36 new_size: usize,
37) -> *mut u8 {
38 // Docs for GlobalAlloc::realloc require this to be valid:
39 let new_layout = Layout::from_size_align_unchecked(new_size, old_layout.align());
40
41 let new_ptr = GlobalAlloc::alloc(alloc, new_layout);
42 if !new_ptr.is_null() {
43 let size = cmp::min(old_layout.size(), new_size);
44 ptr::copy_nonoverlapping(ptr, new_ptr, size);
45 GlobalAlloc::dealloc(alloc, ptr, old_layout);
46 }
47 new_ptr
48}