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.
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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-04-03 14:43:34 +02:00
|
|
|
#[unstable(feature = "allocator_api", issue = "32838")]
|
|
|
|
#[rustc_deprecated(since = "1.27.0", reason = "type renamed to `Global`")]
|
2018-04-03 21:15:06 +02:00
|
|
|
pub type Heap = Global;
|
2018-04-03 14:43:34 +02:00
|
|
|
|
2018-04-03 21:15:06 +02:00
|
|
|
#[unstable(feature = "allocator_api", issue = "32838")]
|
|
|
|
#[rustc_deprecated(since = "1.27.0", reason = "type renamed to `Global`")]
|
|
|
|
#[allow(non_upper_case_globals)]
|
|
|
|
pub const Heap: Global = Global;
|
2018-04-03 14:43:34 +02:00
|
|
|
|
2018-04-04 19:15:22 +02:00
|
|
|
unsafe impl GlobalAlloc for Global {
|
2017-06-03 14:54:08 -07:00
|
|
|
#[inline]
|
2018-04-11 17:19:48 +02:00
|
|
|
unsafe fn alloc(&self, layout: Layout) -> *mut Opaque {
|
2018-04-03 17:12:57 +02:00
|
|
|
let ptr = __rust_alloc(layout.size(), layout.align());
|
2018-04-11 17:19:48 +02:00
|
|
|
ptr as *mut Opaque
|
2017-05-23 14:47:41 +02:00
|
|
|
}
|
|
|
|
|
2017-06-03 14:54:08 -07:00
|
|
|
#[inline]
|
2018-04-11 17:19:48 +02:00
|
|
|
unsafe fn dealloc(&self, ptr: *mut Opaque, layout: Layout) {
|
2018-04-04 19:15:22 +02:00
|
|
|
__rust_dealloc(ptr as *mut u8, layout.size(), layout.align())
|
2017-05-23 14:47:41 +02:00
|
|
|
}
|
|
|
|
|
2017-06-03 14:54:08 -07:00
|
|
|
#[inline]
|
2018-04-11 17:19:48 +02:00
|
|
|
unsafe fn realloc(&self, ptr: *mut Opaque, layout: Layout, new_size: usize) -> *mut Opaque {
|
2018-04-04 19:15:22 +02:00
|
|
|
let ptr = __rust_realloc(ptr as *mut u8, layout.size(), layout.align(), new_size);
|
2018-04-11 17:19:48 +02:00
|
|
|
ptr as *mut Opaque
|
2017-05-23 14:47:41 +02:00
|
|
|
}
|
|
|
|
|
2017-06-03 14:54:08 -07:00
|
|
|
#[inline]
|
2018-04-11 17:19:48 +02:00
|
|
|
unsafe fn alloc_zeroed(&self, layout: Layout) -> *mut Opaque {
|
2018-04-03 17:12:57 +02:00
|
|
|
let ptr = __rust_alloc_zeroed(layout.size(), layout.align());
|
2018-04-11 17:19:48 +02:00
|
|
|
ptr as *mut Opaque
|
2017-06-03 14:54:08 -07:00
|
|
|
}
|
2014-05-11 17:41:15 -04:00
|
|
|
}
|
|
|
|
|
2018-04-04 19:15:22 +02:00
|
|
|
unsafe impl Alloc for Global {
|
|
|
|
#[inline]
|
2018-04-11 17:19:48 +02:00
|
|
|
unsafe fn alloc(&mut self, layout: Layout) -> Result<NonNull<Opaque>, AllocErr> {
|
2018-04-11 16:28:37 +02:00
|
|
|
NonNull::new(GlobalAlloc::alloc(self, layout)).ok_or(AllocErr)
|
2018-04-04 19:15:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2018-04-11 17:19:48 +02:00
|
|
|
unsafe fn dealloc(&mut self, ptr: NonNull<Opaque>, layout: Layout) {
|
2018-04-03 08:51:02 +09:00
|
|
|
GlobalAlloc::dealloc(self, ptr.as_ptr(), layout)
|
2018-04-04 19:15:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
unsafe fn realloc(&mut self,
|
2018-04-11 17:19:48 +02:00
|
|
|
ptr: NonNull<Opaque>,
|
2018-04-04 19:15:22 +02:00
|
|
|
layout: Layout,
|
|
|
|
new_size: usize)
|
2018-04-11 17:19:48 +02:00
|
|
|
-> Result<NonNull<Opaque>, AllocErr>
|
2018-04-04 19:15:22 +02:00
|
|
|
{
|
2018-04-11 16:28:37 +02:00
|
|
|
NonNull::new(GlobalAlloc::realloc(self, ptr.as_ptr(), layout, new_size)).ok_or(AllocErr)
|
2018-04-04 19:15:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2018-04-11 17:19:48 +02:00
|
|
|
unsafe fn alloc_zeroed(&mut self, layout: Layout) -> Result<NonNull<Opaque>, AllocErr> {
|
2018-04-11 16:28:37 +02:00
|
|
|
NonNull::new(GlobalAlloc::alloc_zeroed(self, 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-04-04 19:15:22 +02:00
|
|
|
let ptr = Global.alloc(layout);
|
|
|
|
if !ptr.is_null() {
|
|
|
|
ptr as *mut u8
|
|
|
|
} 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-04-11 17:19:48 +02:00
|
|
|
Global.dealloc(ptr as *mut Opaque, layout);
|
2016-01-28 23:59:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|