2014-12-12 23:39:27 +00:00
|
|
|
|
// Copyright 2014-2015 The Rust Project Developers. See the COPYRIGHT
|
2014-04-25 02:19:34 -04:00
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
|
//
|
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
2018-05-31 18:23:42 +02:00
|
|
|
|
//! Memory allocation APIs
|
|
|
|
|
|
2017-06-03 14:54:08 -07:00
|
|
|
|
#![unstable(feature = "allocator_api",
|
2015-06-09 11:52:41 -07:00
|
|
|
|
reason = "the precise API and guarantees it provides may be tweaked \
|
|
|
|
|
slightly, especially to possibly take into account the \
|
|
|
|
|
types being stored to make room for a future \
|
2015-08-12 22:19:08 -07:00
|
|
|
|
tracing garbage collector",
|
2017-06-03 14:54:08 -07:00
|
|
|
|
issue = "32838")]
|
2015-06-09 11:52:41 -07:00
|
|
|
|
|
2016-11-11 11:55:47 +01:00
|
|
|
|
use core::intrinsics::{min_align_of_val, size_of_val};
|
2018-04-20 10:24:53 +09:00
|
|
|
|
use core::ptr::{NonNull, Unique};
|
2017-06-03 14:54:08 -07:00
|
|
|
|
use core::usize;
|
2015-02-07 18:49:54 -05:00
|
|
|
|
|
2018-04-02 10:38:07 +02:00
|
|
|
|
#[doc(inline)]
|
2018-04-03 21:05:10 +02:00
|
|
|
|
pub use core::alloc::*;
|
2018-04-02 10:38:07 +02:00
|
|
|
|
|
2018-04-03 17:12:57 +02:00
|
|
|
|
extern "Rust" {
|
|
|
|
|
#[allocator]
|
2017-08-22 14:36:49 -07:00
|
|
|
|
#[rustc_allocator_nounwind]
|
2018-04-03 17:12:57 +02:00
|
|
|
|
fn __rust_alloc(size: usize, align: usize) -> *mut u8;
|
2017-08-22 14:36:49 -07:00
|
|
|
|
#[rustc_allocator_nounwind]
|
2018-04-03 17:12:57 +02:00
|
|
|
|
fn __rust_dealloc(ptr: *mut u8, size: usize, align: usize);
|
2017-08-22 14:36:49 -07:00
|
|
|
|
#[rustc_allocator_nounwind]
|
2018-04-03 17:12:57 +02:00
|
|
|
|
fn __rust_realloc(ptr: *mut u8,
|
|
|
|
|
old_size: usize,
|
|
|
|
|
align: usize,
|
|
|
|
|
new_size: usize) -> *mut u8;
|
2017-08-22 14:36:49 -07:00
|
|
|
|
#[rustc_allocator_nounwind]
|
2018-04-03 17:12:57 +02:00
|
|
|
|
fn __rust_alloc_zeroed(size: usize, align: usize) -> *mut u8;
|
2015-02-07 18:49:54 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-31 18:23:42 +02:00
|
|
|
|
/// The global memory allocator.
|
|
|
|
|
///
|
|
|
|
|
/// This type implements the [`Alloc`] trait by forwarding calls
|
|
|
|
|
/// to the allocator registered with the `#[global_allocator]` attribute
|
|
|
|
|
/// if there is one, or the `std` crate’s default.
|
2017-05-23 14:47:41 +02:00
|
|
|
|
#[derive(Copy, Clone, Default, Debug)]
|
2018-04-03 14:43:34 +02:00
|
|
|
|
pub struct Global;
|
2017-05-23 14:47:41 +02:00
|
|
|
|
|
2018-05-31 18:23:42 +02:00
|
|
|
|
/// Allocate memory with the global allocator.
|
|
|
|
|
///
|
|
|
|
|
/// This function forwards calls to the [`GlobalAlloc::alloc`] method
|
|
|
|
|
/// of the allocator registered with the `#[global_allocator]` attribute
|
|
|
|
|
/// if there is one, or the `std` crate’s default.
|
|
|
|
|
///
|
|
|
|
|
/// This function is expected to be deprecated in favor of the `alloc` method
|
|
|
|
|
/// of the [`Global`] type when it and the [`Alloc`] trait become stable.
|
|
|
|
|
///
|
|
|
|
|
/// # Safety
|
|
|
|
|
///
|
|
|
|
|
/// See [`GlobalAlloc::alloc`].
|
2018-05-31 16:10:01 +09:00
|
|
|
|
#[unstable(feature = "allocator_api", issue = "32838")]
|
|
|
|
|
#[inline]
|
|
|
|
|
pub unsafe fn alloc(layout: Layout) -> *mut u8 {
|
|
|
|
|
__rust_alloc(layout.size(), layout.align())
|
|
|
|
|
}
|
2017-05-23 14:47:41 +02:00
|
|
|
|
|
2018-05-31 18:23:42 +02:00
|
|
|
|
/// Deallocate memory with the global allocator.
|
|
|
|
|
///
|
|
|
|
|
/// This function forwards calls to the [`GlobalAlloc::dealloc`] method
|
|
|
|
|
/// of the allocator registered with the `#[global_allocator]` attribute
|
|
|
|
|
/// if there is one, or the `std` crate’s default.
|
|
|
|
|
///
|
|
|
|
|
/// This function is expected to be deprecated in favor of the `dealloc` method
|
|
|
|
|
/// of the [`Global`] type when it and the [`Alloc`] trait become stable.
|
|
|
|
|
///
|
|
|
|
|
/// # Safety
|
|
|
|
|
///
|
|
|
|
|
/// See [`GlobalAlloc::dealloc`].
|
2018-05-31 16:10:01 +09:00
|
|
|
|
#[unstable(feature = "allocator_api", issue = "32838")]
|
|
|
|
|
#[inline]
|
|
|
|
|
pub unsafe fn dealloc(ptr: *mut u8, layout: Layout) {
|
|
|
|
|
__rust_dealloc(ptr, layout.size(), layout.align())
|
|
|
|
|
}
|
2017-05-23 14:47:41 +02:00
|
|
|
|
|
2018-05-31 18:23:42 +02:00
|
|
|
|
/// Reallocate memory with the global allocator.
|
|
|
|
|
///
|
|
|
|
|
/// This function forwards calls to the [`GlobalAlloc::realloc`] method
|
|
|
|
|
/// of the allocator registered with the `#[global_allocator]` attribute
|
|
|
|
|
/// if there is one, or the `std` crate’s default.
|
|
|
|
|
///
|
|
|
|
|
/// This function is expected to be deprecated in favor of the `realloc` method
|
|
|
|
|
/// of the [`Global`] type when it and the [`Alloc`] trait become stable.
|
|
|
|
|
///
|
|
|
|
|
/// # Safety
|
|
|
|
|
///
|
|
|
|
|
/// See [`GlobalAlloc::realloc`].
|
2018-05-31 16:10:01 +09:00
|
|
|
|
#[unstable(feature = "allocator_api", issue = "32838")]
|
|
|
|
|
#[inline]
|
|
|
|
|
pub unsafe fn realloc(ptr: *mut u8, layout: Layout, new_size: usize) -> *mut u8 {
|
|
|
|
|
__rust_realloc(ptr, layout.size(), layout.align(), new_size)
|
|
|
|
|
}
|
2017-05-23 14:47:41 +02:00
|
|
|
|
|
2018-05-31 18:23:42 +02:00
|
|
|
|
/// Allocate zero-initialized memory with the global allocator.
|
|
|
|
|
///
|
|
|
|
|
/// This function forwards calls to the [`GlobalAlloc::alloc_zeroed`] method
|
|
|
|
|
/// of the allocator registered with the `#[global_allocator]` attribute
|
|
|
|
|
/// if there is one, or the `std` crate’s default.
|
|
|
|
|
///
|
|
|
|
|
/// This function is expected to be deprecated in favor of the `alloc_zeroed` method
|
|
|
|
|
/// of the [`Global`] type when it and the [`Alloc`] trait become stable.
|
|
|
|
|
///
|
|
|
|
|
/// # Safety
|
|
|
|
|
///
|
|
|
|
|
/// See [`GlobalAlloc::alloc_zeroed`].
|
2018-05-31 16:10:01 +09:00
|
|
|
|
#[unstable(feature = "allocator_api", issue = "32838")]
|
|
|
|
|
#[inline]
|
|
|
|
|
pub unsafe fn alloc_zeroed(layout: Layout) -> *mut u8 {
|
|
|
|
|
__rust_alloc_zeroed(layout.size(), layout.align())
|
2014-05-11 17:41:15 -04:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-04 19:15:22 +02:00
|
|
|
|
unsafe impl Alloc for Global {
|
|
|
|
|
#[inline]
|
2018-05-31 15:57:43 +09:00
|
|
|
|
unsafe fn alloc(&mut self, layout: Layout) -> Result<NonNull<u8>, AllocErr> {
|
2018-05-31 16:10:01 +09:00
|
|
|
|
NonNull::new(alloc(layout)).ok_or(AllocErr)
|
2018-04-04 19:15:22 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2018-05-31 15:57:43 +09:00
|
|
|
|
unsafe fn dealloc(&mut self, ptr: NonNull<u8>, layout: Layout) {
|
2018-05-31 16:10:01 +09:00
|
|
|
|
dealloc(ptr.as_ptr(), layout)
|
2018-04-04 19:15:22 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
unsafe fn realloc(&mut self,
|
2018-05-31 15:57:43 +09:00
|
|
|
|
ptr: NonNull<u8>,
|
2018-04-04 19:15:22 +02:00
|
|
|
|
layout: Layout,
|
|
|
|
|
new_size: usize)
|
2018-05-31 15:57:43 +09:00
|
|
|
|
-> Result<NonNull<u8>, AllocErr>
|
2018-04-04 19:15:22 +02:00
|
|
|
|
{
|
2018-05-31 16:10:01 +09:00
|
|
|
|
NonNull::new(realloc(ptr.as_ptr(), layout, new_size)).ok_or(AllocErr)
|
2018-04-04 19:15:22 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2018-05-31 15:57:43 +09:00
|
|
|
|
unsafe fn alloc_zeroed(&mut self, layout: Layout) -> Result<NonNull<u8>, AllocErr> {
|
2018-05-31 16:10:01 +09:00
|
|
|
|
NonNull::new(alloc_zeroed(layout)).ok_or(AllocErr)
|
2018-04-04 19:15:22 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-06 22:03:14 -04:00
|
|
|
|
/// The allocator for unique pointers.
|
2018-05-08 16:10:16 +03:00
|
|
|
|
// This function must not unwind. If it does, MIR codegen will fail.
|
2014-05-12 02:51:00 -04:00
|
|
|
|
#[cfg(not(test))]
|
2015-05-09 14:50:28 -05:00
|
|
|
|
#[lang = "exchange_malloc"]
|
2014-05-06 22:03:14 -04:00
|
|
|
|
#[inline]
|
2015-02-09 10:00:46 +03:00
|
|
|
|
unsafe fn exchange_malloc(size: usize, align: usize) -> *mut u8 {
|
2014-05-06 22:03:14 -04:00
|
|
|
|
if size == 0 {
|
2017-05-04 14:48:58 -04:00
|
|
|
|
align as *mut u8
|
2014-05-06 22:03:14 -04:00
|
|
|
|
} else {
|
2017-06-03 14:54:08 -07:00
|
|
|
|
let layout = Layout::from_size_align_unchecked(size, align);
|
2018-05-31 16:10:01 +09:00
|
|
|
|
let ptr = alloc(layout);
|
2018-04-04 19:15:22 +02:00
|
|
|
|
if !ptr.is_null() {
|
2018-05-31 15:57:43 +09:00
|
|
|
|
ptr
|
2018-04-04 19:15:22 +02:00
|
|
|
|
} else {
|
2018-05-15 09:56:46 +09:00
|
|
|
|
oom(layout)
|
2018-04-04 19:15:22 +02:00
|
|
|
|
}
|
2014-05-06 22:03:14 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-10 12:02:19 -06:00
|
|
|
|
#[cfg_attr(not(test), lang = "box_free")]
|
2016-01-28 23:59:00 +02:00
|
|
|
|
#[inline]
|
2018-04-20 10:24:53 +09:00
|
|
|
|
pub(crate) unsafe fn box_free<T: ?Sized>(ptr: Unique<T>) {
|
|
|
|
|
let ptr = ptr.as_ptr();
|
2016-11-11 11:55:47 +01:00
|
|
|
|
let size = size_of_val(&*ptr);
|
|
|
|
|
let align = min_align_of_val(&*ptr);
|
2016-01-28 23:59:00 +02:00
|
|
|
|
// We do not allocate for Box<T> when T is ZST, so deallocation is also not necessary.
|
|
|
|
|
if size != 0 {
|
2017-06-03 14:54:08 -07:00
|
|
|
|
let layout = Layout::from_size_align_unchecked(size, align);
|
2018-05-31 16:10:01 +09:00
|
|
|
|
dealloc(ptr as *mut u8, layout);
|
2016-01-28 23:59:00 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-31 18:23:42 +02:00
|
|
|
|
/// Abort on memory allocation error or failure.
|
|
|
|
|
///
|
|
|
|
|
/// Callers of memory allocation APIs wishing to abort computation
|
|
|
|
|
/// in response to an allocation error are encouraged to call this function,
|
|
|
|
|
/// rather than directly invoking `panic!` or similar.
|
|
|
|
|
///
|
|
|
|
|
/// The default behavior of this function is to print a message to standard error
|
|
|
|
|
/// and abort the process.
|
|
|
|
|
/// It can be replaced with [`std::alloc::set_oom_hook`]
|
|
|
|
|
/// and [`std::alloc::take_oom_hook`].
|
2018-05-24 12:03:05 -07:00
|
|
|
|
#[rustc_allocator_nounwind]
|
2018-05-15 09:56:46 +09:00
|
|
|
|
pub fn oom(layout: Layout) -> ! {
|
|
|
|
|
#[allow(improper_ctypes)]
|
|
|
|
|
extern "Rust" {
|
2018-04-20 21:05:13 -07:00
|
|
|
|
#[lang = "oom"]
|
2018-05-15 09:56:46 +09:00
|
|
|
|
fn oom_impl(layout: Layout) -> !;
|
2018-04-20 21:05:13 -07:00
|
|
|
|
}
|
2018-05-15 09:56:46 +09:00
|
|
|
|
unsafe { oom_impl(layout) }
|
2018-04-20 21:05:13 -07:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-06 22:03:14 -04:00
|
|
|
|
#[cfg(test)]
|
2015-04-24 17:30:41 +02:00
|
|
|
|
mod tests {
|
2014-05-06 22:03:14 -04:00
|
|
|
|
extern crate test;
|
|
|
|
|
use self::test::Bencher;
|
2015-02-17 21:41:32 +01:00
|
|
|
|
use boxed::Box;
|
2018-04-20 21:05:13 -07:00
|
|
|
|
use alloc::{Global, Alloc, Layout, oom};
|
2014-05-06 22:03:14 -04:00
|
|
|
|
|
2017-03-09 17:53:01 -08:00
|
|
|
|
#[test]
|
|
|
|
|
fn allocate_zeroed() {
|
|
|
|
|
unsafe {
|
2017-06-03 14:54:08 -07:00
|
|
|
|
let layout = Layout::from_size_align(1024, 1).unwrap();
|
2018-04-03 14:43:34 +02:00
|
|
|
|
let ptr = Global.alloc_zeroed(layout.clone())
|
2018-05-15 09:56:46 +09:00
|
|
|
|
.unwrap_or_else(|_| oom(layout));
|
2017-03-09 17:53:01 -08:00
|
|
|
|
|
2018-04-03 08:51:02 +09:00
|
|
|
|
let mut i = ptr.cast::<u8>().as_ptr();
|
|
|
|
|
let end = i.offset(layout.size() as isize);
|
2017-03-09 17:53:01 -08:00
|
|
|
|
while i < end {
|
|
|
|
|
assert_eq!(*i, 0);
|
|
|
|
|
i = i.offset(1);
|
|
|
|
|
}
|
2018-04-03 14:43:34 +02:00
|
|
|
|
Global.dealloc(ptr, layout);
|
2014-10-02 03:29:39 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-06 22:03:14 -04:00
|
|
|
|
#[bench]
|
|
|
|
|
fn alloc_owned_small(b: &mut Bencher) {
|
|
|
|
|
b.iter(|| {
|
2015-02-17 21:41:32 +01:00
|
|
|
|
let _: Box<_> = box 10;
|
2014-05-06 22:03:14 -04:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|