2013-05-21 18:24:42 -07:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// 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.
|
|
|
|
|
2013-12-12 22:27:26 +01:00
|
|
|
use libc::{c_void, size_t, free, malloc, realloc};
|
2014-01-17 20:45:48 -05:00
|
|
|
use ptr::{RawPtr, mut_null};
|
2014-02-05 23:05:30 -05:00
|
|
|
use unstable::intrinsics::abort;
|
2013-07-21 17:20:52 -07:00
|
|
|
use unstable::raw;
|
2013-10-16 18:34:01 -07:00
|
|
|
use mem::size_of;
|
2013-05-21 18:24:42 -07:00
|
|
|
|
2013-06-30 22:41:51 -04:00
|
|
|
#[inline]
|
2013-10-26 01:10:39 -07:00
|
|
|
pub fn get_box_size(body_size: uint, body_align: uint) -> uint {
|
2013-07-21 17:20:52 -07:00
|
|
|
let header_size = size_of::<raw::Box<()>>();
|
2013-05-21 18:24:42 -07:00
|
|
|
let total_size = align_to(header_size, body_align) + body_size;
|
2013-06-29 22:35:04 -04:00
|
|
|
total_size
|
2013-05-21 18:24:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Rounds |size| to the nearest |alignment|. Invariant: |alignment| is a power
|
|
|
|
// of two.
|
2013-06-30 22:41:51 -04:00
|
|
|
#[inline]
|
2013-05-21 18:24:42 -07:00
|
|
|
fn align_to(size: uint, align: uint) -> uint {
|
|
|
|
assert!(align != 0);
|
|
|
|
(size + align - 1) & !(align - 1)
|
|
|
|
}
|
|
|
|
|
2013-06-29 22:35:04 -04:00
|
|
|
/// A wrapper around libc::malloc, aborting on out-of-memory
|
2014-01-15 11:45:12 +02:00
|
|
|
#[inline]
|
2013-12-12 22:27:26 +01:00
|
|
|
pub unsafe fn malloc_raw(size: uint) -> *mut u8 {
|
2014-01-17 20:45:48 -05:00
|
|
|
// `malloc(0)` may allocate, but it may also return a null pointer
|
|
|
|
// http://pubs.opengroup.org/onlinepubs/9699919799/functions/malloc.html
|
|
|
|
if size == 0 {
|
|
|
|
mut_null()
|
|
|
|
} else {
|
|
|
|
let p = malloc(size as size_t);
|
|
|
|
if p.is_null() {
|
|
|
|
// we need a non-allocating way to print an error here
|
|
|
|
abort();
|
|
|
|
}
|
2013-12-12 22:27:26 +01:00
|
|
|
p as *mut u8
|
2013-06-29 22:35:04 -04:00
|
|
|
}
|
2013-05-21 18:24:42 -07:00
|
|
|
}
|
|
|
|
|
2013-06-30 22:12:26 -04:00
|
|
|
/// A wrapper around libc::realloc, aborting on out-of-memory
|
2014-01-15 11:45:12 +02:00
|
|
|
#[inline]
|
2013-12-12 22:27:26 +01:00
|
|
|
pub unsafe fn realloc_raw(ptr: *mut u8, size: uint) -> *mut u8 {
|
2014-01-17 20:45:48 -05:00
|
|
|
// `realloc(ptr, 0)` may allocate, but it may also return a null pointer
|
|
|
|
// http://pubs.opengroup.org/onlinepubs/9699919799/functions/realloc.html
|
|
|
|
if size == 0 {
|
2014-01-21 09:35:11 -05:00
|
|
|
free(ptr as *mut c_void);
|
2014-01-17 20:45:48 -05:00
|
|
|
mut_null()
|
|
|
|
} else {
|
2013-12-12 22:27:26 +01:00
|
|
|
let p = realloc(ptr as *mut c_void, size as size_t);
|
2014-01-17 20:45:48 -05:00
|
|
|
if p.is_null() {
|
|
|
|
// we need a non-allocating way to print an error here
|
|
|
|
abort();
|
|
|
|
}
|
2013-12-12 22:27:26 +01:00
|
|
|
p as *mut u8
|
2013-06-30 22:12:26 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-08 13:27:55 -04:00
|
|
|
/// The allocator for unique pointers without contained managed pointers.
|
2013-07-22 00:06:29 -04:00
|
|
|
#[cfg(not(test))]
|
2013-06-29 22:35:04 -04:00
|
|
|
#[lang="exchange_malloc"]
|
|
|
|
#[inline]
|
2013-12-12 22:27:26 +01:00
|
|
|
pub unsafe fn exchange_malloc(size: uint) -> *u8 {
|
|
|
|
malloc_raw(size) as *u8
|
2013-06-30 03:22:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: #7496
|
2014-02-12 16:40:17 -08:00
|
|
|
#[cfg(not(test))]
|
2014-02-05 23:05:30 -05:00
|
|
|
#[lang="closure_exchange_malloc"]
|
2013-06-30 03:22:18 -04:00
|
|
|
#[inline]
|
2014-02-05 23:05:30 -05:00
|
|
|
pub unsafe fn closure_exchange_malloc_(drop_glue: fn(*mut u8), size: uint, align: uint) -> *u8 {
|
|
|
|
closure_exchange_malloc(drop_glue, size, align)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub unsafe fn closure_exchange_malloc(drop_glue: fn(*mut u8), size: uint, align: uint) -> *u8 {
|
|
|
|
let total_size = get_box_size(size, align);
|
|
|
|
let p = malloc_raw(total_size);
|
|
|
|
|
|
|
|
let alloc = p as *mut raw::Box<()>;
|
|
|
|
(*alloc).drop_glue = drop_glue;
|
|
|
|
|
|
|
|
alloc as *u8
|
|
|
|
}
|
|
|
|
|
2013-06-29 22:35:04 -04:00
|
|
|
// NB: Calls to free CANNOT be allowed to fail, as throwing an exception from
|
|
|
|
// inside a landing pad may corrupt the state of the exception handler.
|
|
|
|
#[cfg(not(test))]
|
|
|
|
#[lang="exchange_free"]
|
2013-07-02 17:36:58 -07:00
|
|
|
#[inline]
|
2013-12-12 22:27:26 +01:00
|
|
|
pub unsafe fn exchange_free_(ptr: *u8) {
|
2013-07-02 17:36:58 -07:00
|
|
|
exchange_free(ptr)
|
2013-05-21 18:24:42 -07:00
|
|
|
}
|
|
|
|
|
2014-01-15 11:45:12 +02:00
|
|
|
#[inline]
|
2013-12-12 22:27:26 +01:00
|
|
|
pub unsafe fn exchange_free(ptr: *u8) {
|
2014-01-21 09:31:32 -05:00
|
|
|
free(ptr as *mut c_void);
|
2013-05-21 18:24:42 -07:00
|
|
|
}
|
2013-07-22 11:42:47 -07:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod bench {
|
|
|
|
use extra::test::BenchHarness;
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
fn alloc_owned_small(bh: &mut BenchHarness) {
|
2013-11-21 17:23:21 -08:00
|
|
|
bh.iter(|| {
|
2014-02-12 23:39:21 +08:00
|
|
|
~10
|
2013-11-21 17:23:21 -08:00
|
|
|
})
|
2013-07-22 11:42:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
fn alloc_owned_big(bh: &mut BenchHarness) {
|
2013-11-21 17:23:21 -08:00
|
|
|
bh.iter(|| {
|
2014-02-12 23:39:21 +08:00
|
|
|
~[10, ..1000]
|
2013-11-21 17:23:21 -08:00
|
|
|
})
|
2013-07-22 11:42:47 -07:00
|
|
|
}
|
|
|
|
}
|