2013-03-02 12:57:05 +09:00
|
|
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-10 15:44:02 -08: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.
|
|
|
|
|
2014-05-07 12:12:24 -07:00
|
|
|
// FIXME: talk about offset, copy_memory, copy_nonoverlapping_memory
|
|
|
|
|
2014-05-22 09:44:54 -07:00
|
|
|
//! Operations on unsafe pointers, `*T`, and `*mut T`.
|
2014-04-07 14:00:19 -07:00
|
|
|
//!
|
2014-05-22 09:44:54 -07:00
|
|
|
//! Working with unsafe pointers in Rust is uncommon,
|
|
|
|
//! typically limited to a few patterns.
|
2014-04-07 14:00:19 -07:00
|
|
|
//!
|
|
|
|
//! Use the [`null` function](fn.null.html) to create null pointers,
|
|
|
|
//! the [`is_null`](trait.RawPtr.html#tymethod.is_null)
|
|
|
|
//! and [`is_not_null`](trait.RawPtr.html#method.is_not_null)
|
|
|
|
//! methods of the [`RawPtr` trait](trait.RawPtr.html) to check for null.
|
|
|
|
//! The `RawPtr` trait is imported by the prelude, so `is_null` etc.
|
2014-05-22 09:44:54 -07:00
|
|
|
//! work everywhere. The `RawPtr` also defines the `offset` method,
|
|
|
|
//! for pointer math.
|
2014-04-07 14:00:19 -07:00
|
|
|
//!
|
|
|
|
//! # Common ways to create unsafe pointers
|
|
|
|
//!
|
|
|
|
//! ## 1. Coerce a reference (`&T`) or mutable reference (`&mut T`).
|
|
|
|
//!
|
|
|
|
//! ```
|
|
|
|
//! let my_num: int = 10;
|
|
|
|
//! let my_num_ptr: *int = &my_num;
|
|
|
|
//! let mut my_speed: int = 88;
|
|
|
|
//! let my_speed_ptr: *mut int = &mut my_speed;
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! This does not take ownership of the original allocation
|
|
|
|
//! and requires no resource management later,
|
|
|
|
//! but you must not use the pointer after its lifetime.
|
|
|
|
//!
|
2014-05-05 18:56:44 -07:00
|
|
|
//! ## 2. Transmute an owned box (`Box<T>`).
|
2014-04-07 14:00:19 -07:00
|
|
|
//!
|
|
|
|
//! The `transmute` function takes, by value, whatever it's given
|
|
|
|
//! and returns it as whatever type is requested, as long as the
|
2014-05-05 18:56:44 -07:00
|
|
|
//! types are the same size. Because `Box<T>` and `*T` have the same
|
2014-04-07 14:00:19 -07:00
|
|
|
//! representation they can be trivially,
|
|
|
|
//! though unsafely, transformed from one type to the other.
|
|
|
|
//!
|
|
|
|
//! ```
|
core: Remove the cast module
This commit revisits the `cast` module in libcore and libstd, and scrutinizes
all functions inside of it. The result was to remove the `cast` module entirely,
folding all functionality into the `mem` module. Specifically, this is the fate
of each function in the `cast` module.
* transmute - This function was moved to `mem`, but it is now marked as
#[unstable]. This is due to planned changes to the `transmute`
function and how it can be invoked (see the #[unstable] comment).
For more information, see RFC 5 and #12898
* transmute_copy - This function was moved to `mem`, with clarification that is
is not an error to invoke it with T/U that are different
sizes, but rather that it is strongly discouraged. This
function is now #[stable]
* forget - This function was moved to `mem` and marked #[stable]
* bump_box_refcount - This function was removed due to the deprecation of
managed boxes as well as its questionable utility.
* transmute_mut - This function was previously deprecated, and removed as part
of this commit.
* transmute_mut_unsafe - This function doesn't serve much of a purpose when it
can be achieved with an `as` in safe code, so it was
removed.
* transmute_lifetime - This function was removed because it is likely a strong
indication that code is incorrect in the first place.
* transmute_mut_lifetime - This function was removed for the same reasons as
`transmute_lifetime`
* copy_lifetime - This function was moved to `mem`, but it is marked
`#[unstable]` now due to the likelihood of being removed in
the future if it is found to not be very useful.
* copy_mut_lifetime - This function was also moved to `mem`, but had the same
treatment as `copy_lifetime`.
* copy_lifetime_vec - This function was removed because it is not used today,
and its existence is not necessary with DST
(copy_lifetime will suffice).
In summary, the cast module was stripped down to these functions, and then the
functions were moved to the `mem` module.
transmute - #[unstable]
transmute_copy - #[stable]
forget - #[stable]
copy_lifetime - #[unstable]
copy_mut_lifetime - #[unstable]
[breaking-change]
2014-05-09 10:34:51 -07:00
|
|
|
//! use std::mem;
|
2014-04-07 14:00:19 -07:00
|
|
|
//!
|
|
|
|
//! unsafe {
|
2014-05-05 18:56:44 -07:00
|
|
|
//! let my_num: Box<int> = box 10;
|
core: Remove the cast module
This commit revisits the `cast` module in libcore and libstd, and scrutinizes
all functions inside of it. The result was to remove the `cast` module entirely,
folding all functionality into the `mem` module. Specifically, this is the fate
of each function in the `cast` module.
* transmute - This function was moved to `mem`, but it is now marked as
#[unstable]. This is due to planned changes to the `transmute`
function and how it can be invoked (see the #[unstable] comment).
For more information, see RFC 5 and #12898
* transmute_copy - This function was moved to `mem`, with clarification that is
is not an error to invoke it with T/U that are different
sizes, but rather that it is strongly discouraged. This
function is now #[stable]
* forget - This function was moved to `mem` and marked #[stable]
* bump_box_refcount - This function was removed due to the deprecation of
managed boxes as well as its questionable utility.
* transmute_mut - This function was previously deprecated, and removed as part
of this commit.
* transmute_mut_unsafe - This function doesn't serve much of a purpose when it
can be achieved with an `as` in safe code, so it was
removed.
* transmute_lifetime - This function was removed because it is likely a strong
indication that code is incorrect in the first place.
* transmute_mut_lifetime - This function was removed for the same reasons as
`transmute_lifetime`
* copy_lifetime - This function was moved to `mem`, but it is marked
`#[unstable]` now due to the likelihood of being removed in
the future if it is found to not be very useful.
* copy_mut_lifetime - This function was also moved to `mem`, but had the same
treatment as `copy_lifetime`.
* copy_lifetime_vec - This function was removed because it is not used today,
and its existence is not necessary with DST
(copy_lifetime will suffice).
In summary, the cast module was stripped down to these functions, and then the
functions were moved to the `mem` module.
transmute - #[unstable]
transmute_copy - #[stable]
forget - #[stable]
copy_lifetime - #[unstable]
copy_mut_lifetime - #[unstable]
[breaking-change]
2014-05-09 10:34:51 -07:00
|
|
|
//! let my_num: *int = mem::transmute(my_num);
|
2014-05-05 18:56:44 -07:00
|
|
|
//! let my_speed: Box<int> = box 88;
|
core: Remove the cast module
This commit revisits the `cast` module in libcore and libstd, and scrutinizes
all functions inside of it. The result was to remove the `cast` module entirely,
folding all functionality into the `mem` module. Specifically, this is the fate
of each function in the `cast` module.
* transmute - This function was moved to `mem`, but it is now marked as
#[unstable]. This is due to planned changes to the `transmute`
function and how it can be invoked (see the #[unstable] comment).
For more information, see RFC 5 and #12898
* transmute_copy - This function was moved to `mem`, with clarification that is
is not an error to invoke it with T/U that are different
sizes, but rather that it is strongly discouraged. This
function is now #[stable]
* forget - This function was moved to `mem` and marked #[stable]
* bump_box_refcount - This function was removed due to the deprecation of
managed boxes as well as its questionable utility.
* transmute_mut - This function was previously deprecated, and removed as part
of this commit.
* transmute_mut_unsafe - This function doesn't serve much of a purpose when it
can be achieved with an `as` in safe code, so it was
removed.
* transmute_lifetime - This function was removed because it is likely a strong
indication that code is incorrect in the first place.
* transmute_mut_lifetime - This function was removed for the same reasons as
`transmute_lifetime`
* copy_lifetime - This function was moved to `mem`, but it is marked
`#[unstable]` now due to the likelihood of being removed in
the future if it is found to not be very useful.
* copy_mut_lifetime - This function was also moved to `mem`, but had the same
treatment as `copy_lifetime`.
* copy_lifetime_vec - This function was removed because it is not used today,
and its existence is not necessary with DST
(copy_lifetime will suffice).
In summary, the cast module was stripped down to these functions, and then the
functions were moved to the `mem` module.
transmute - #[unstable]
transmute_copy - #[stable]
forget - #[stable]
copy_lifetime - #[unstable]
copy_mut_lifetime - #[unstable]
[breaking-change]
2014-05-09 10:34:51 -07:00
|
|
|
//! let my_speed: *mut int = mem::transmute(my_speed);
|
2014-04-07 14:00:19 -07:00
|
|
|
//!
|
2014-05-05 18:56:44 -07:00
|
|
|
//! // By taking ownership of the original `Box<T>` though
|
2014-04-07 14:00:19 -07:00
|
|
|
//! // we are obligated to transmute it back later to be destroyed.
|
core: Remove the cast module
This commit revisits the `cast` module in libcore and libstd, and scrutinizes
all functions inside of it. The result was to remove the `cast` module entirely,
folding all functionality into the `mem` module. Specifically, this is the fate
of each function in the `cast` module.
* transmute - This function was moved to `mem`, but it is now marked as
#[unstable]. This is due to planned changes to the `transmute`
function and how it can be invoked (see the #[unstable] comment).
For more information, see RFC 5 and #12898
* transmute_copy - This function was moved to `mem`, with clarification that is
is not an error to invoke it with T/U that are different
sizes, but rather that it is strongly discouraged. This
function is now #[stable]
* forget - This function was moved to `mem` and marked #[stable]
* bump_box_refcount - This function was removed due to the deprecation of
managed boxes as well as its questionable utility.
* transmute_mut - This function was previously deprecated, and removed as part
of this commit.
* transmute_mut_unsafe - This function doesn't serve much of a purpose when it
can be achieved with an `as` in safe code, so it was
removed.
* transmute_lifetime - This function was removed because it is likely a strong
indication that code is incorrect in the first place.
* transmute_mut_lifetime - This function was removed for the same reasons as
`transmute_lifetime`
* copy_lifetime - This function was moved to `mem`, but it is marked
`#[unstable]` now due to the likelihood of being removed in
the future if it is found to not be very useful.
* copy_mut_lifetime - This function was also moved to `mem`, but had the same
treatment as `copy_lifetime`.
* copy_lifetime_vec - This function was removed because it is not used today,
and its existence is not necessary with DST
(copy_lifetime will suffice).
In summary, the cast module was stripped down to these functions, and then the
functions were moved to the `mem` module.
transmute - #[unstable]
transmute_copy - #[stable]
forget - #[stable]
copy_lifetime - #[unstable]
copy_mut_lifetime - #[unstable]
[breaking-change]
2014-05-09 10:34:51 -07:00
|
|
|
//! drop(mem::transmute::<_, Box<int>>(my_speed));
|
|
|
|
//! drop(mem::transmute::<_, Box<int>>(my_num));
|
2014-04-07 14:00:19 -07:00
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! Note that here the call to `drop` is for clarity - it indicates
|
|
|
|
//! that we are done with the given value and it should be destroyed.
|
|
|
|
//!
|
|
|
|
//! ## 3. Get it from C.
|
|
|
|
//!
|
|
|
|
//! ```
|
|
|
|
//! extern crate libc;
|
|
|
|
//!
|
|
|
|
//! use std::mem;
|
|
|
|
//!
|
|
|
|
//! fn main() {
|
|
|
|
//! unsafe {
|
|
|
|
//! let my_num: *mut int = libc::malloc(mem::size_of::<int>() as libc::size_t) as *mut int;
|
|
|
|
//! if my_num.is_null() {
|
|
|
|
//! fail!("failed to allocate memory");
|
|
|
|
//! }
|
|
|
|
//! libc::free(my_num as *mut libc::c_void);
|
|
|
|
//! }
|
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! Usually you wouldn't literally use `malloc` and `free` from Rust,
|
|
|
|
//! but C APIs hand out a lot of pointers generally, so are a common source
|
|
|
|
//! of unsafe pointers in Rust.
|
2012-03-10 00:04:09 -08:00
|
|
|
|
core: Remove the cast module
This commit revisits the `cast` module in libcore and libstd, and scrutinizes
all functions inside of it. The result was to remove the `cast` module entirely,
folding all functionality into the `mem` module. Specifically, this is the fate
of each function in the `cast` module.
* transmute - This function was moved to `mem`, but it is now marked as
#[unstable]. This is due to planned changes to the `transmute`
function and how it can be invoked (see the #[unstable] comment).
For more information, see RFC 5 and #12898
* transmute_copy - This function was moved to `mem`, with clarification that is
is not an error to invoke it with T/U that are different
sizes, but rather that it is strongly discouraged. This
function is now #[stable]
* forget - This function was moved to `mem` and marked #[stable]
* bump_box_refcount - This function was removed due to the deprecation of
managed boxes as well as its questionable utility.
* transmute_mut - This function was previously deprecated, and removed as part
of this commit.
* transmute_mut_unsafe - This function doesn't serve much of a purpose when it
can be achieved with an `as` in safe code, so it was
removed.
* transmute_lifetime - This function was removed because it is likely a strong
indication that code is incorrect in the first place.
* transmute_mut_lifetime - This function was removed for the same reasons as
`transmute_lifetime`
* copy_lifetime - This function was moved to `mem`, but it is marked
`#[unstable]` now due to the likelihood of being removed in
the future if it is found to not be very useful.
* copy_mut_lifetime - This function was also moved to `mem`, but had the same
treatment as `copy_lifetime`.
* copy_lifetime_vec - This function was removed because it is not used today,
and its existence is not necessary with DST
(copy_lifetime will suffice).
In summary, the cast module was stripped down to these functions, and then the
functions were moved to the `mem` module.
transmute - #[unstable]
transmute_copy - #[stable]
forget - #[stable]
copy_lifetime - #[unstable]
copy_mut_lifetime - #[unstable]
[breaking-change]
2014-05-09 10:34:51 -07:00
|
|
|
use mem;
|
2013-07-02 12:47:32 -07:00
|
|
|
use clone::Clone;
|
2014-04-30 20:17:50 -07:00
|
|
|
use intrinsics;
|
2013-09-08 11:01:16 -04:00
|
|
|
use iter::{range, Iterator};
|
2014-04-30 20:17:50 -07:00
|
|
|
use option::{Some, None, Option};
|
2013-07-17 21:32:49 +02:00
|
|
|
|
2014-05-31 10:43:52 -07:00
|
|
|
#[cfg(not(test))] use cmp::{PartialEq, Eq, PartialOrd, Equiv};
|
2013-02-28 11:57:33 -05:00
|
|
|
|
2014-05-01 20:02:11 -05:00
|
|
|
/// Create a null pointer.
|
2014-04-07 14:00:19 -07:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// use std::ptr;
|
|
|
|
///
|
|
|
|
/// let p: *int = ptr::null();
|
|
|
|
/// assert!(p.is_null());
|
|
|
|
/// ```
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2014-05-29 17:40:18 -07:00
|
|
|
#[unstable = "may need a different name after pending changes to pointer types"]
|
2013-05-31 11:22:51 -04:00
|
|
|
pub fn null<T>() -> *T { 0 as *T }
|
2012-04-03 21:56:16 -07:00
|
|
|
|
2014-04-07 14:00:19 -07:00
|
|
|
/// Create an unsafe mutable null pointer.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// use std::ptr;
|
|
|
|
///
|
|
|
|
/// let p: *mut int = ptr::mut_null();
|
|
|
|
/// assert!(p.is_null());
|
|
|
|
/// ```
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2014-05-29 17:40:18 -07:00
|
|
|
#[unstable = "may need a different name after pending changes to pointer types"]
|
2013-05-31 11:22:51 -04:00
|
|
|
pub fn mut_null<T>() -> *mut T { 0 as *mut T }
|
2012-09-14 16:12:18 -07:00
|
|
|
|
2014-04-07 14:00:19 -07:00
|
|
|
/// Copies data from one location to another.
|
|
|
|
///
|
|
|
|
/// Copies `count` elements (not bytes) from `src` to `dst`. The source
|
|
|
|
/// and destination may overlap.
|
|
|
|
///
|
|
|
|
/// `copy_memory` is semantically equivalent to C's `memmove`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// Efficiently create a Rust vector from an unsafe buffer:
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// use std::ptr;
|
|
|
|
///
|
2014-04-17 15:28:14 -07:00
|
|
|
/// unsafe fn from_buf_raw<T>(ptr: *T, elts: uint) -> Vec<T> {
|
|
|
|
/// let mut dst = Vec::with_capacity(elts);
|
2014-04-07 14:00:19 -07:00
|
|
|
/// dst.set_len(elts);
|
|
|
|
/// ptr::copy_memory(dst.as_mut_ptr(), ptr, elts);
|
|
|
|
/// dst
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2014-05-29 17:40:18 -07:00
|
|
|
#[unstable]
|
2014-01-31 14:01:59 -08:00
|
|
|
pub unsafe fn copy_memory<T>(dst: *mut T, src: *T, count: uint) {
|
|
|
|
intrinsics::copy_memory(dst, src, count)
|
2013-11-03 16:54:58 -05:00
|
|
|
}
|
|
|
|
|
2014-04-07 14:00:19 -07:00
|
|
|
/// Copies data from one location to another.
|
|
|
|
///
|
|
|
|
/// Copies `count` elements (not bytes) from `src` to `dst`. The source
|
|
|
|
/// and destination may *not* overlap.
|
|
|
|
///
|
|
|
|
/// `copy_nonoverlapping_memory` is semantically equivalent to C's `memcpy`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// A safe swap function:
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// use std::mem;
|
|
|
|
/// use std::ptr;
|
|
|
|
///
|
|
|
|
/// fn swap<T>(x: &mut T, y: &mut T) {
|
|
|
|
/// unsafe {
|
|
|
|
/// // Give ourselves some scratch space to work with
|
2014-05-23 20:53:56 -07:00
|
|
|
/// let mut t: T = mem::uninitialized();
|
2014-04-07 14:00:19 -07:00
|
|
|
///
|
|
|
|
/// // Perform the swap, `&mut` pointers never alias
|
|
|
|
/// ptr::copy_nonoverlapping_memory(&mut t, &*x, 1);
|
|
|
|
/// ptr::copy_nonoverlapping_memory(x, &*y, 1);
|
|
|
|
/// ptr::copy_nonoverlapping_memory(y, &t, 1);
|
|
|
|
///
|
|
|
|
/// // y and t now point to the same thing, but we need to completely forget `tmp`
|
|
|
|
/// // because it's no longer relevant.
|
core: Remove the cast module
This commit revisits the `cast` module in libcore and libstd, and scrutinizes
all functions inside of it. The result was to remove the `cast` module entirely,
folding all functionality into the `mem` module. Specifically, this is the fate
of each function in the `cast` module.
* transmute - This function was moved to `mem`, but it is now marked as
#[unstable]. This is due to planned changes to the `transmute`
function and how it can be invoked (see the #[unstable] comment).
For more information, see RFC 5 and #12898
* transmute_copy - This function was moved to `mem`, with clarification that is
is not an error to invoke it with T/U that are different
sizes, but rather that it is strongly discouraged. This
function is now #[stable]
* forget - This function was moved to `mem` and marked #[stable]
* bump_box_refcount - This function was removed due to the deprecation of
managed boxes as well as its questionable utility.
* transmute_mut - This function was previously deprecated, and removed as part
of this commit.
* transmute_mut_unsafe - This function doesn't serve much of a purpose when it
can be achieved with an `as` in safe code, so it was
removed.
* transmute_lifetime - This function was removed because it is likely a strong
indication that code is incorrect in the first place.
* transmute_mut_lifetime - This function was removed for the same reasons as
`transmute_lifetime`
* copy_lifetime - This function was moved to `mem`, but it is marked
`#[unstable]` now due to the likelihood of being removed in
the future if it is found to not be very useful.
* copy_mut_lifetime - This function was also moved to `mem`, but had the same
treatment as `copy_lifetime`.
* copy_lifetime_vec - This function was removed because it is not used today,
and its existence is not necessary with DST
(copy_lifetime will suffice).
In summary, the cast module was stripped down to these functions, and then the
functions were moved to the `mem` module.
transmute - #[unstable]
transmute_copy - #[stable]
forget - #[stable]
copy_lifetime - #[unstable]
copy_mut_lifetime - #[unstable]
[breaking-change]
2014-05-09 10:34:51 -07:00
|
|
|
/// mem::forget(t);
|
2014-04-07 14:00:19 -07:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// # Safety Note
|
|
|
|
///
|
|
|
|
/// If the source and destination overlap then the behavior of this
|
|
|
|
/// function is undefined.
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2014-05-29 17:40:18 -07:00
|
|
|
#[unstable]
|
2014-01-31 14:01:59 -08:00
|
|
|
pub unsafe fn copy_nonoverlapping_memory<T>(dst: *mut T,
|
|
|
|
src: *T,
|
|
|
|
count: uint) {
|
|
|
|
intrinsics::copy_nonoverlapping_memory(dst, src, count)
|
2013-11-03 16:54:58 -05:00
|
|
|
}
|
|
|
|
|
2014-04-07 14:00:19 -07:00
|
|
|
/// Invokes memset on the specified pointer, setting `count * size_of::<T>()`
|
|
|
|
/// bytes of memory starting at `dst` to `c`.
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2014-05-29 17:40:18 -07:00
|
|
|
#[experimental = "uncertain about naming and semantics"]
|
2013-11-03 16:54:58 -05:00
|
|
|
pub unsafe fn set_memory<T>(dst: *mut T, c: u8, count: uint) {
|
|
|
|
intrinsics::set_memory(dst, c, count)
|
|
|
|
}
|
|
|
|
|
2014-04-07 14:00:19 -07:00
|
|
|
/// Zeroes out `count * size_of::<T>` bytes of memory at `dst`
|
2013-06-20 15:13:22 -04:00
|
|
|
#[inline]
|
2014-05-29 17:40:18 -07:00
|
|
|
#[experimental = "uncertain about naming and semantics"]
|
|
|
|
#[allow(experimental)]
|
2013-06-20 15:13:22 -04:00
|
|
|
pub unsafe fn zero_memory<T>(dst: *mut T, count: uint) {
|
|
|
|
set_memory(dst, 0, count);
|
|
|
|
}
|
|
|
|
|
2014-04-07 14:00:19 -07:00
|
|
|
/// Swap the values at two mutable locations of the same type, without
|
|
|
|
/// deinitialising either. They may overlap.
|
2013-05-31 10:21:29 -04:00
|
|
|
#[inline]
|
2014-05-29 17:40:18 -07:00
|
|
|
#[unstable]
|
2014-02-14 18:42:01 -05:00
|
|
|
pub unsafe fn swap<T>(x: *mut T, y: *mut T) {
|
2013-05-31 10:21:29 -04:00
|
|
|
// Give ourselves some scratch space to work with
|
2014-05-23 20:53:56 -07:00
|
|
|
let mut tmp: T = mem::uninitialized();
|
2013-05-31 10:21:29 -04:00
|
|
|
let t: *mut T = &mut tmp;
|
|
|
|
|
|
|
|
// Perform the swap
|
2014-01-31 14:01:59 -08:00
|
|
|
copy_nonoverlapping_memory(t, &*x, 1);
|
|
|
|
copy_memory(x, &*y, 1); // `x` and `y` may overlap
|
|
|
|
copy_nonoverlapping_memory(y, &*t, 1);
|
2013-05-31 10:21:29 -04:00
|
|
|
|
|
|
|
// y and t now point to the same thing, but we need to completely forget `tmp`
|
|
|
|
// because it's no longer relevant.
|
core: Remove the cast module
This commit revisits the `cast` module in libcore and libstd, and scrutinizes
all functions inside of it. The result was to remove the `cast` module entirely,
folding all functionality into the `mem` module. Specifically, this is the fate
of each function in the `cast` module.
* transmute - This function was moved to `mem`, but it is now marked as
#[unstable]. This is due to planned changes to the `transmute`
function and how it can be invoked (see the #[unstable] comment).
For more information, see RFC 5 and #12898
* transmute_copy - This function was moved to `mem`, with clarification that is
is not an error to invoke it with T/U that are different
sizes, but rather that it is strongly discouraged. This
function is now #[stable]
* forget - This function was moved to `mem` and marked #[stable]
* bump_box_refcount - This function was removed due to the deprecation of
managed boxes as well as its questionable utility.
* transmute_mut - This function was previously deprecated, and removed as part
of this commit.
* transmute_mut_unsafe - This function doesn't serve much of a purpose when it
can be achieved with an `as` in safe code, so it was
removed.
* transmute_lifetime - This function was removed because it is likely a strong
indication that code is incorrect in the first place.
* transmute_mut_lifetime - This function was removed for the same reasons as
`transmute_lifetime`
* copy_lifetime - This function was moved to `mem`, but it is marked
`#[unstable]` now due to the likelihood of being removed in
the future if it is found to not be very useful.
* copy_mut_lifetime - This function was also moved to `mem`, but had the same
treatment as `copy_lifetime`.
* copy_lifetime_vec - This function was removed because it is not used today,
and its existence is not necessary with DST
(copy_lifetime will suffice).
In summary, the cast module was stripped down to these functions, and then the
functions were moved to the `mem` module.
transmute - #[unstable]
transmute_copy - #[stable]
forget - #[stable]
copy_lifetime - #[unstable]
copy_mut_lifetime - #[unstable]
[breaking-change]
2014-05-09 10:34:51 -07:00
|
|
|
mem::forget(tmp);
|
2013-05-31 10:21:29 -04:00
|
|
|
}
|
|
|
|
|
2014-04-07 14:00:19 -07:00
|
|
|
/// Replace the value at a mutable location with a new one, returning the old
|
|
|
|
/// value, without deinitialising either.
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2014-05-29 17:40:18 -07:00
|
|
|
#[unstable]
|
2014-02-14 18:42:01 -05:00
|
|
|
pub unsafe fn replace<T>(dest: *mut T, mut src: T) -> T {
|
core: Remove the cast module
This commit revisits the `cast` module in libcore and libstd, and scrutinizes
all functions inside of it. The result was to remove the `cast` module entirely,
folding all functionality into the `mem` module. Specifically, this is the fate
of each function in the `cast` module.
* transmute - This function was moved to `mem`, but it is now marked as
#[unstable]. This is due to planned changes to the `transmute`
function and how it can be invoked (see the #[unstable] comment).
For more information, see RFC 5 and #12898
* transmute_copy - This function was moved to `mem`, with clarification that is
is not an error to invoke it with T/U that are different
sizes, but rather that it is strongly discouraged. This
function is now #[stable]
* forget - This function was moved to `mem` and marked #[stable]
* bump_box_refcount - This function was removed due to the deprecation of
managed boxes as well as its questionable utility.
* transmute_mut - This function was previously deprecated, and removed as part
of this commit.
* transmute_mut_unsafe - This function doesn't serve much of a purpose when it
can be achieved with an `as` in safe code, so it was
removed.
* transmute_lifetime - This function was removed because it is likely a strong
indication that code is incorrect in the first place.
* transmute_mut_lifetime - This function was removed for the same reasons as
`transmute_lifetime`
* copy_lifetime - This function was moved to `mem`, but it is marked
`#[unstable]` now due to the likelihood of being removed in
the future if it is found to not be very useful.
* copy_mut_lifetime - This function was also moved to `mem`, but had the same
treatment as `copy_lifetime`.
* copy_lifetime_vec - This function was removed because it is not used today,
and its existence is not necessary with DST
(copy_lifetime will suffice).
In summary, the cast module was stripped down to these functions, and then the
functions were moved to the `mem` module.
transmute - #[unstable]
transmute_copy - #[stable]
forget - #[stable]
copy_lifetime - #[unstable]
copy_mut_lifetime - #[unstable]
[breaking-change]
2014-05-09 10:34:51 -07:00
|
|
|
mem::swap(mem::transmute(dest), &mut src); // cannot overlap
|
2013-05-31 10:21:29 -04:00
|
|
|
src
|
|
|
|
}
|
|
|
|
|
2014-04-07 14:00:19 -07:00
|
|
|
/// Reads the value from `*src` and returns it.
|
2013-06-20 15:13:22 -04:00
|
|
|
#[inline(always)]
|
2014-05-29 17:40:18 -07:00
|
|
|
#[unstable]
|
2014-02-14 18:42:01 -05:00
|
|
|
pub unsafe fn read<T>(src: *T) -> T {
|
2014-05-23 20:53:56 -07:00
|
|
|
let mut tmp: T = mem::uninitialized();
|
2013-07-09 15:22:18 -04:00
|
|
|
copy_nonoverlapping_memory(&mut tmp, src, 1);
|
2013-06-20 15:13:22 -04:00
|
|
|
tmp
|
|
|
|
}
|
|
|
|
|
2014-04-07 14:00:19 -07:00
|
|
|
/// Reads the value from `*src` and nulls it out.
|
|
|
|
/// This currently prevents destructors from executing.
|
2013-06-20 15:13:22 -04:00
|
|
|
#[inline(always)]
|
2014-05-29 17:40:18 -07:00
|
|
|
#[experimental]
|
|
|
|
#[allow(experimental)]
|
2014-02-14 18:42:01 -05:00
|
|
|
pub unsafe fn read_and_zero<T>(dest: *mut T) -> T {
|
2013-06-20 15:13:22 -04:00
|
|
|
// Copy the data out from `dest`:
|
2014-02-14 18:42:01 -05:00
|
|
|
let tmp = read(&*dest);
|
2013-06-20 15:13:22 -04:00
|
|
|
|
|
|
|
// Now zero out `dest`:
|
|
|
|
zero_memory(dest, 1);
|
|
|
|
|
|
|
|
tmp
|
|
|
|
}
|
|
|
|
|
2014-05-29 17:40:18 -07:00
|
|
|
/// Unsafely overwrite a memory location with the given value without destroying
|
|
|
|
/// the old value.
|
|
|
|
///
|
|
|
|
/// This operation is unsafe because it does not destroy the previous value
|
|
|
|
/// contained at the location `dst`. This could leak allocations or resources,
|
|
|
|
/// so care must be taken to previously deallocate the value at `dst`.
|
|
|
|
#[inline]
|
|
|
|
#[unstable]
|
|
|
|
pub unsafe fn write<T>(dst: *mut T, src: T) {
|
|
|
|
intrinsics::move_val_init(&mut *dst, src)
|
|
|
|
}
|
|
|
|
|
2014-04-07 14:00:19 -07:00
|
|
|
/// Given a **T (pointer to an array of pointers),
|
|
|
|
/// iterate through each *T, up to the provided `len`,
|
|
|
|
/// passing to the provided callback function
|
2014-05-29 17:40:18 -07:00
|
|
|
#[deprecated = "old-style iteration. use a loop and RawPtr::offset"]
|
2013-11-18 21:15:42 -08:00
|
|
|
pub unsafe fn array_each_with_len<T>(arr: **T, len: uint, cb: |*T|) {
|
2014-02-14 18:42:01 -05:00
|
|
|
if arr.is_null() {
|
2013-10-21 13:08:31 -07:00
|
|
|
fail!("ptr::array_each_with_len failure: arr input is null pointer");
|
2013-02-14 22:16:53 -08:00
|
|
|
}
|
|
|
|
//let start_ptr = *arr;
|
2013-08-04 17:10:09 +02:00
|
|
|
for e in range(0, len) {
|
2014-02-10 16:50:42 -05:00
|
|
|
let n = arr.offset(e as int);
|
2013-02-14 22:16:53 -08:00
|
|
|
cb(*n);
|
2013-08-04 17:10:09 +02:00
|
|
|
}
|
2013-02-14 22:16:53 -08:00
|
|
|
}
|
|
|
|
|
2014-04-07 14:00:19 -07:00
|
|
|
/// Given a null-pointer-terminated **T (pointer to
|
|
|
|
/// an array of pointers), iterate through each *T,
|
|
|
|
/// passing to the provided callback function
|
|
|
|
///
|
|
|
|
/// # Safety Note
|
|
|
|
///
|
|
|
|
/// This will only work with a null-terminated
|
|
|
|
/// pointer array.
|
2014-05-29 17:40:18 -07:00
|
|
|
#[deprecated = "old-style iteration. use a loop and RawPtr::offset"]
|
|
|
|
#[allow(deprecated)]
|
2013-11-18 21:15:42 -08:00
|
|
|
pub unsafe fn array_each<T>(arr: **T, cb: |*T|) {
|
2014-02-14 18:42:01 -05:00
|
|
|
if arr.is_null() {
|
2013-10-21 13:08:31 -07:00
|
|
|
fail!("ptr::array_each_with_len failure: arr input is null pointer");
|
2013-02-14 22:16:53 -08:00
|
|
|
}
|
|
|
|
let len = buf_len(arr);
|
|
|
|
array_each_with_len(arr, len, cb);
|
|
|
|
}
|
|
|
|
|
2014-05-29 17:40:18 -07:00
|
|
|
/// Return the offset of the first null pointer in `buf`.
|
|
|
|
#[inline]
|
|
|
|
#[deprecated = "use a loop and RawPtr::offset"]
|
|
|
|
#[allow(deprecated)]
|
|
|
|
pub unsafe fn buf_len<T>(buf: **T) -> uint {
|
|
|
|
position(buf, |i| *i == null())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return the first offset `i` such that `f(buf[i]) == true`.
|
|
|
|
#[inline]
|
|
|
|
#[deprecated = "old-style iteration. use a loop and RawPtr::offset"]
|
|
|
|
pub unsafe fn position<T>(buf: *T, f: |&T| -> bool) -> uint {
|
|
|
|
let mut i = 0;
|
|
|
|
loop {
|
|
|
|
if f(&(*buf.offset(i as int))) { return i; }
|
|
|
|
else { i += 1; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-22 09:44:54 -07:00
|
|
|
/// Methods on raw pointers
|
2013-06-03 13:50:29 -04:00
|
|
|
pub trait RawPtr<T> {
|
2014-02-14 18:42:01 -05:00
|
|
|
/// Returns the null pointer.
|
2013-08-02 21:41:06 -07:00
|
|
|
fn null() -> Self;
|
2014-02-14 18:42:01 -05:00
|
|
|
/// Returns true if the pointer is equal to the null pointer.
|
2013-06-23 20:44:11 -07:00
|
|
|
fn is_null(&self) -> bool;
|
2014-02-14 18:42:01 -05:00
|
|
|
/// Returns true if the pointer is not equal to the null pointer.
|
|
|
|
fn is_not_null(&self) -> bool { !self.is_null() }
|
|
|
|
/// Returns the value of this pointer (ie, the address it points to)
|
2013-08-02 21:41:06 -07:00
|
|
|
fn to_uint(&self) -> uint;
|
2014-02-14 18:42:01 -05:00
|
|
|
/// Returns `None` if the pointer is null, or else returns the value wrapped
|
|
|
|
/// in `Some`.
|
|
|
|
///
|
|
|
|
/// # Safety Notes
|
|
|
|
///
|
|
|
|
/// While this method is useful for null-safety, it is important to note
|
|
|
|
/// that this is still an unsafe operation because the returned value could
|
|
|
|
/// be pointing to invalid memory.
|
2013-06-23 20:44:11 -07:00
|
|
|
unsafe fn to_option(&self) -> Option<&T>;
|
2014-02-14 18:42:01 -05:00
|
|
|
/// Calculates the offset from a pointer. The offset *must* be in-bounds of
|
2014-02-20 14:58:46 +01:00
|
|
|
/// the object, or one-byte-past-the-end. `count` is in units of T; e.g. a
|
|
|
|
/// `count` of 3 represents a pointer offset of `3 * sizeof::<T>()` bytes.
|
2013-08-08 22:22:52 -07:00
|
|
|
unsafe fn offset(self, count: int) -> Self;
|
2012-07-11 12:45:54 -07:00
|
|
|
}
|
|
|
|
|
2013-06-03 13:50:29 -04:00
|
|
|
impl<T> RawPtr<T> for *T {
|
2013-08-02 21:41:06 -07:00
|
|
|
#[inline]
|
|
|
|
fn null() -> *T { null() }
|
|
|
|
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2013-08-02 21:41:06 -07:00
|
|
|
fn is_null(&self) -> bool { *self == RawPtr::null() }
|
2012-04-15 21:46:29 -07:00
|
|
|
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2014-02-14 18:42:01 -05:00
|
|
|
fn to_uint(&self) -> uint { *self as uint }
|
2013-08-02 21:41:06 -07:00
|
|
|
|
|
|
|
#[inline]
|
2014-02-14 18:42:01 -05:00
|
|
|
unsafe fn offset(self, count: int) -> *T { intrinsics::offset(self, count) }
|
2012-10-01 14:34:53 -07:00
|
|
|
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2013-06-23 20:44:11 -07:00
|
|
|
unsafe fn to_option(&self) -> Option<&T> {
|
2014-02-14 18:42:01 -05:00
|
|
|
if self.is_null() {
|
|
|
|
None
|
|
|
|
} else {
|
2014-05-18 11:21:47 -07:00
|
|
|
Some(&**self)
|
2013-05-19 14:08:27 +10:00
|
|
|
}
|
|
|
|
}
|
2012-04-15 21:46:29 -07:00
|
|
|
}
|
|
|
|
|
2013-06-03 13:50:29 -04:00
|
|
|
impl<T> RawPtr<T> for *mut T {
|
2013-08-02 21:41:06 -07:00
|
|
|
#[inline]
|
|
|
|
fn null() -> *mut T { mut_null() }
|
|
|
|
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2013-08-02 21:41:06 -07:00
|
|
|
fn is_null(&self) -> bool { *self == RawPtr::null() }
|
2012-11-07 16:24:29 +10:00
|
|
|
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2014-02-14 18:42:01 -05:00
|
|
|
fn to_uint(&self) -> uint { *self as uint }
|
2013-08-02 21:41:06 -07:00
|
|
|
|
|
|
|
#[inline]
|
2014-04-30 20:17:50 -07:00
|
|
|
unsafe fn offset(self, count: int) -> *mut T {
|
|
|
|
intrinsics::offset(self as *T, count) as *mut T
|
|
|
|
}
|
2012-11-07 16:24:29 +10:00
|
|
|
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2013-06-23 20:44:11 -07:00
|
|
|
unsafe fn to_option(&self) -> Option<&T> {
|
2014-02-14 18:42:01 -05:00
|
|
|
if self.is_null() {
|
|
|
|
None
|
|
|
|
} else {
|
2014-05-18 11:21:47 -07:00
|
|
|
Some(&**self)
|
2013-05-19 14:08:27 +10:00
|
|
|
}
|
|
|
|
}
|
2012-11-07 16:24:29 +10:00
|
|
|
}
|
|
|
|
|
2012-08-27 17:33:22 -07:00
|
|
|
// Equality for pointers
|
2013-09-16 23:34:40 -07:00
|
|
|
#[cfg(not(test))]
|
2014-05-29 17:45:07 -07:00
|
|
|
impl<T> PartialEq for *T {
|
2013-09-12 01:01:59 -04:00
|
|
|
#[inline]
|
|
|
|
fn eq(&self, other: &*T) -> bool {
|
|
|
|
*self == *other
|
|
|
|
}
|
|
|
|
#[inline]
|
|
|
|
fn ne(&self, other: &*T) -> bool { !self.eq(other) }
|
|
|
|
}
|
|
|
|
|
2014-03-22 16:30:45 -04:00
|
|
|
#[cfg(not(test))]
|
2014-05-31 10:43:52 -07:00
|
|
|
impl<T> Eq for *T {}
|
2014-03-22 16:30:45 -04:00
|
|
|
|
2013-09-16 23:34:40 -07:00
|
|
|
#[cfg(not(test))]
|
2014-05-29 17:45:07 -07:00
|
|
|
impl<T> PartialEq for *mut T {
|
2013-09-12 01:01:59 -04:00
|
|
|
#[inline]
|
|
|
|
fn eq(&self, other: &*mut T) -> bool {
|
|
|
|
*self == *other
|
|
|
|
}
|
|
|
|
#[inline]
|
|
|
|
fn ne(&self, other: &*mut T) -> bool { !self.eq(other) }
|
|
|
|
}
|
|
|
|
|
2014-03-22 16:30:45 -04:00
|
|
|
#[cfg(not(test))]
|
2014-05-31 10:43:52 -07:00
|
|
|
impl<T> Eq for *mut T {}
|
2014-03-22 16:30:45 -04:00
|
|
|
|
2013-08-02 21:41:06 -07:00
|
|
|
// Equivalence for pointers
|
|
|
|
#[cfg(not(test))]
|
|
|
|
impl<T> Equiv<*mut T> for *T {
|
|
|
|
fn equiv(&self, other: &*mut T) -> bool {
|
|
|
|
self.to_uint() == other.to_uint()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(test))]
|
|
|
|
impl<T> Equiv<*T> for *mut T {
|
|
|
|
fn equiv(&self, other: &*T) -> bool {
|
|
|
|
self.to_uint() == other.to_uint()
|
|
|
|
}
|
2012-09-19 18:00:26 -07:00
|
|
|
}
|
2012-08-27 16:26:35 -07:00
|
|
|
|
2014-05-29 17:40:18 -07:00
|
|
|
impl<T> Clone for *T {
|
|
|
|
#[inline]
|
|
|
|
fn clone(&self) -> *T {
|
|
|
|
*self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Clone for *mut T {
|
|
|
|
#[inline]
|
|
|
|
fn clone(&self) -> *mut T {
|
|
|
|
*self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-21 09:31:02 -04:00
|
|
|
// Equality for extern "C" fn pointers
|
|
|
|
#[cfg(not(test))]
|
|
|
|
mod externfnpointers {
|
core: Remove the cast module
This commit revisits the `cast` module in libcore and libstd, and scrutinizes
all functions inside of it. The result was to remove the `cast` module entirely,
folding all functionality into the `mem` module. Specifically, this is the fate
of each function in the `cast` module.
* transmute - This function was moved to `mem`, but it is now marked as
#[unstable]. This is due to planned changes to the `transmute`
function and how it can be invoked (see the #[unstable] comment).
For more information, see RFC 5 and #12898
* transmute_copy - This function was moved to `mem`, with clarification that is
is not an error to invoke it with T/U that are different
sizes, but rather that it is strongly discouraged. This
function is now #[stable]
* forget - This function was moved to `mem` and marked #[stable]
* bump_box_refcount - This function was removed due to the deprecation of
managed boxes as well as its questionable utility.
* transmute_mut - This function was previously deprecated, and removed as part
of this commit.
* transmute_mut_unsafe - This function doesn't serve much of a purpose when it
can be achieved with an `as` in safe code, so it was
removed.
* transmute_lifetime - This function was removed because it is likely a strong
indication that code is incorrect in the first place.
* transmute_mut_lifetime - This function was removed for the same reasons as
`transmute_lifetime`
* copy_lifetime - This function was moved to `mem`, but it is marked
`#[unstable]` now due to the likelihood of being removed in
the future if it is found to not be very useful.
* copy_mut_lifetime - This function was also moved to `mem`, but had the same
treatment as `copy_lifetime`.
* copy_lifetime_vec - This function was removed because it is not used today,
and its existence is not necessary with DST
(copy_lifetime will suffice).
In summary, the cast module was stripped down to these functions, and then the
functions were moved to the `mem` module.
transmute - #[unstable]
transmute_copy - #[stable]
forget - #[stable]
copy_lifetime - #[unstable]
copy_mut_lifetime - #[unstable]
[breaking-change]
2014-05-09 10:34:51 -07:00
|
|
|
use mem;
|
2014-05-29 17:45:07 -07:00
|
|
|
use cmp::PartialEq;
|
2013-08-21 09:31:02 -04:00
|
|
|
|
2014-05-29 17:45:07 -07:00
|
|
|
impl<_R> PartialEq for extern "C" fn() -> _R {
|
2013-08-21 09:31:02 -04:00
|
|
|
#[inline]
|
|
|
|
fn eq(&self, other: &extern "C" fn() -> _R) -> bool {
|
core: Remove the cast module
This commit revisits the `cast` module in libcore and libstd, and scrutinizes
all functions inside of it. The result was to remove the `cast` module entirely,
folding all functionality into the `mem` module. Specifically, this is the fate
of each function in the `cast` module.
* transmute - This function was moved to `mem`, but it is now marked as
#[unstable]. This is due to planned changes to the `transmute`
function and how it can be invoked (see the #[unstable] comment).
For more information, see RFC 5 and #12898
* transmute_copy - This function was moved to `mem`, with clarification that is
is not an error to invoke it with T/U that are different
sizes, but rather that it is strongly discouraged. This
function is now #[stable]
* forget - This function was moved to `mem` and marked #[stable]
* bump_box_refcount - This function was removed due to the deprecation of
managed boxes as well as its questionable utility.
* transmute_mut - This function was previously deprecated, and removed as part
of this commit.
* transmute_mut_unsafe - This function doesn't serve much of a purpose when it
can be achieved with an `as` in safe code, so it was
removed.
* transmute_lifetime - This function was removed because it is likely a strong
indication that code is incorrect in the first place.
* transmute_mut_lifetime - This function was removed for the same reasons as
`transmute_lifetime`
* copy_lifetime - This function was moved to `mem`, but it is marked
`#[unstable]` now due to the likelihood of being removed in
the future if it is found to not be very useful.
* copy_mut_lifetime - This function was also moved to `mem`, but had the same
treatment as `copy_lifetime`.
* copy_lifetime_vec - This function was removed because it is not used today,
and its existence is not necessary with DST
(copy_lifetime will suffice).
In summary, the cast module was stripped down to these functions, and then the
functions were moved to the `mem` module.
transmute - #[unstable]
transmute_copy - #[stable]
forget - #[stable]
copy_lifetime - #[unstable]
copy_mut_lifetime - #[unstable]
[breaking-change]
2014-05-09 10:34:51 -07:00
|
|
|
let self_: *() = unsafe { mem::transmute(*self) };
|
|
|
|
let other_: *() = unsafe { mem::transmute(*other) };
|
2013-08-21 09:31:02 -04:00
|
|
|
self_ == other_
|
|
|
|
}
|
|
|
|
}
|
|
|
|
macro_rules! fnptreq(
|
|
|
|
($($p:ident),*) => {
|
2014-05-29 17:45:07 -07:00
|
|
|
impl<_R,$($p),*> PartialEq for extern "C" fn($($p),*) -> _R {
|
2013-08-21 09:31:02 -04:00
|
|
|
#[inline]
|
|
|
|
fn eq(&self, other: &extern "C" fn($($p),*) -> _R) -> bool {
|
core: Remove the cast module
This commit revisits the `cast` module in libcore and libstd, and scrutinizes
all functions inside of it. The result was to remove the `cast` module entirely,
folding all functionality into the `mem` module. Specifically, this is the fate
of each function in the `cast` module.
* transmute - This function was moved to `mem`, but it is now marked as
#[unstable]. This is due to planned changes to the `transmute`
function and how it can be invoked (see the #[unstable] comment).
For more information, see RFC 5 and #12898
* transmute_copy - This function was moved to `mem`, with clarification that is
is not an error to invoke it with T/U that are different
sizes, but rather that it is strongly discouraged. This
function is now #[stable]
* forget - This function was moved to `mem` and marked #[stable]
* bump_box_refcount - This function was removed due to the deprecation of
managed boxes as well as its questionable utility.
* transmute_mut - This function was previously deprecated, and removed as part
of this commit.
* transmute_mut_unsafe - This function doesn't serve much of a purpose when it
can be achieved with an `as` in safe code, so it was
removed.
* transmute_lifetime - This function was removed because it is likely a strong
indication that code is incorrect in the first place.
* transmute_mut_lifetime - This function was removed for the same reasons as
`transmute_lifetime`
* copy_lifetime - This function was moved to `mem`, but it is marked
`#[unstable]` now due to the likelihood of being removed in
the future if it is found to not be very useful.
* copy_mut_lifetime - This function was also moved to `mem`, but had the same
treatment as `copy_lifetime`.
* copy_lifetime_vec - This function was removed because it is not used today,
and its existence is not necessary with DST
(copy_lifetime will suffice).
In summary, the cast module was stripped down to these functions, and then the
functions were moved to the `mem` module.
transmute - #[unstable]
transmute_copy - #[stable]
forget - #[stable]
copy_lifetime - #[unstable]
copy_mut_lifetime - #[unstable]
[breaking-change]
2014-05-09 10:34:51 -07:00
|
|
|
let self_: *() = unsafe { mem::transmute(*self) };
|
|
|
|
let other_: *() = unsafe { mem::transmute(*other) };
|
2013-08-21 09:31:02 -04:00
|
|
|
self_ == other_
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
fnptreq!(A)
|
|
|
|
fnptreq!(A,B)
|
|
|
|
fnptreq!(A,B,C)
|
|
|
|
fnptreq!(A,B,C,D)
|
|
|
|
fnptreq!(A,B,C,D,E)
|
|
|
|
}
|
|
|
|
|
2012-08-27 16:26:35 -07:00
|
|
|
// Comparison for pointers
|
2013-09-16 23:34:40 -07:00
|
|
|
#[cfg(not(test))]
|
2014-05-29 17:45:07 -07:00
|
|
|
impl<T> PartialOrd for *T {
|
2013-09-12 01:01:59 -04:00
|
|
|
#[inline]
|
2014-04-30 20:17:50 -07:00
|
|
|
fn lt(&self, other: &*T) -> bool { *self < *other }
|
2013-09-12 01:01:59 -04:00
|
|
|
}
|
|
|
|
|
2013-09-16 23:34:40 -07:00
|
|
|
#[cfg(not(test))]
|
2014-05-29 17:45:07 -07:00
|
|
|
impl<T> PartialOrd for *mut T {
|
2013-09-12 01:01:59 -04:00
|
|
|
#[inline]
|
2014-04-30 20:17:50 -07:00
|
|
|
fn lt(&self, other: &*mut T) -> bool { *self < *other }
|
2013-09-12 01:01:59 -04:00
|
|
|
}
|
|
|
|
|
2013-04-16 01:08:52 +10:00
|
|
|
#[cfg(test)]
|
2014-06-06 10:27:49 -07:00
|
|
|
#[allow(deprecated, experimental)]
|
|
|
|
pub mod test {
|
2013-04-16 01:08:52 +10:00
|
|
|
use super::*;
|
2014-05-11 11:14:14 -07:00
|
|
|
use prelude::*;
|
2013-04-16 01:08:52 +10:00
|
|
|
|
2014-05-01 18:06:59 -07:00
|
|
|
use realstd::c_str::ToCStr;
|
core: Remove the cast module
This commit revisits the `cast` module in libcore and libstd, and scrutinizes
all functions inside of it. The result was to remove the `cast` module entirely,
folding all functionality into the `mem` module. Specifically, this is the fate
of each function in the `cast` module.
* transmute - This function was moved to `mem`, but it is now marked as
#[unstable]. This is due to planned changes to the `transmute`
function and how it can be invoked (see the #[unstable] comment).
For more information, see RFC 5 and #12898
* transmute_copy - This function was moved to `mem`, with clarification that is
is not an error to invoke it with T/U that are different
sizes, but rather that it is strongly discouraged. This
function is now #[stable]
* forget - This function was moved to `mem` and marked #[stable]
* bump_box_refcount - This function was removed due to the deprecation of
managed boxes as well as its questionable utility.
* transmute_mut - This function was previously deprecated, and removed as part
of this commit.
* transmute_mut_unsafe - This function doesn't serve much of a purpose when it
can be achieved with an `as` in safe code, so it was
removed.
* transmute_lifetime - This function was removed because it is likely a strong
indication that code is incorrect in the first place.
* transmute_mut_lifetime - This function was removed for the same reasons as
`transmute_lifetime`
* copy_lifetime - This function was moved to `mem`, but it is marked
`#[unstable]` now due to the likelihood of being removed in
the future if it is found to not be very useful.
* copy_mut_lifetime - This function was also moved to `mem`, but had the same
treatment as `copy_lifetime`.
* copy_lifetime_vec - This function was removed because it is not used today,
and its existence is not necessary with DST
(copy_lifetime will suffice).
In summary, the cast module was stripped down to these functions, and then the
functions were moved to the `mem` module.
transmute - #[unstable]
transmute_copy - #[stable]
forget - #[stable]
copy_lifetime - #[unstable]
copy_mut_lifetime - #[unstable]
[breaking-change]
2014-05-09 10:34:51 -07:00
|
|
|
use mem;
|
2013-05-24 19:35:29 -07:00
|
|
|
use libc;
|
2014-05-01 18:06:59 -07:00
|
|
|
use realstd::str;
|
2014-05-19 23:19:56 -07:00
|
|
|
use realstd::str::Str;
|
2014-06-06 10:27:49 -07:00
|
|
|
use realstd::vec::Vec;
|
|
|
|
use realstd::collections::Collection;
|
2014-03-08 18:11:52 -05:00
|
|
|
use slice::{ImmutableVector, MutableVector};
|
2013-05-24 19:35:29 -07:00
|
|
|
|
2013-04-16 01:08:52 +10:00
|
|
|
#[test]
|
|
|
|
fn test() {
|
|
|
|
unsafe {
|
2013-05-02 23:12:43 -07:00
|
|
|
struct Pair {
|
|
|
|
fst: int,
|
|
|
|
snd: int
|
|
|
|
};
|
2013-04-16 01:08:52 +10:00
|
|
|
let mut p = Pair {fst: 10, snd: 20};
|
|
|
|
let pptr: *mut Pair = &mut p;
|
core: Remove the cast module
This commit revisits the `cast` module in libcore and libstd, and scrutinizes
all functions inside of it. The result was to remove the `cast` module entirely,
folding all functionality into the `mem` module. Specifically, this is the fate
of each function in the `cast` module.
* transmute - This function was moved to `mem`, but it is now marked as
#[unstable]. This is due to planned changes to the `transmute`
function and how it can be invoked (see the #[unstable] comment).
For more information, see RFC 5 and #12898
* transmute_copy - This function was moved to `mem`, with clarification that is
is not an error to invoke it with T/U that are different
sizes, but rather that it is strongly discouraged. This
function is now #[stable]
* forget - This function was moved to `mem` and marked #[stable]
* bump_box_refcount - This function was removed due to the deprecation of
managed boxes as well as its questionable utility.
* transmute_mut - This function was previously deprecated, and removed as part
of this commit.
* transmute_mut_unsafe - This function doesn't serve much of a purpose when it
can be achieved with an `as` in safe code, so it was
removed.
* transmute_lifetime - This function was removed because it is likely a strong
indication that code is incorrect in the first place.
* transmute_mut_lifetime - This function was removed for the same reasons as
`transmute_lifetime`
* copy_lifetime - This function was moved to `mem`, but it is marked
`#[unstable]` now due to the likelihood of being removed in
the future if it is found to not be very useful.
* copy_mut_lifetime - This function was also moved to `mem`, but had the same
treatment as `copy_lifetime`.
* copy_lifetime_vec - This function was removed because it is not used today,
and its existence is not necessary with DST
(copy_lifetime will suffice).
In summary, the cast module was stripped down to these functions, and then the
functions were moved to the `mem` module.
transmute - #[unstable]
transmute_copy - #[stable]
forget - #[stable]
copy_lifetime - #[unstable]
copy_mut_lifetime - #[unstable]
[breaking-change]
2014-05-09 10:34:51 -07:00
|
|
|
let iptr: *mut int = mem::transmute(pptr);
|
2013-05-18 22:02:45 -04:00
|
|
|
assert_eq!(*iptr, 10);
|
2013-04-16 01:08:52 +10:00
|
|
|
*iptr = 30;
|
2013-05-18 22:02:45 -04:00
|
|
|
assert_eq!(*iptr, 30);
|
|
|
|
assert_eq!(p.fst, 30);
|
2013-04-16 01:08:52 +10:00
|
|
|
|
|
|
|
*pptr = Pair {fst: 50, snd: 60};
|
2013-05-18 22:02:45 -04:00
|
|
|
assert_eq!(*iptr, 50);
|
|
|
|
assert_eq!(p.fst, 50);
|
|
|
|
assert_eq!(p.snd, 60);
|
2013-04-16 01:08:52 +10:00
|
|
|
|
2014-06-06 10:27:49 -07:00
|
|
|
let v0 = vec![32000u16, 32001u16, 32002u16];
|
|
|
|
let mut v1 = vec![0u16, 0u16, 0u16];
|
2013-04-16 01:08:52 +10:00
|
|
|
|
2014-02-10 16:50:42 -05:00
|
|
|
copy_memory(v1.as_mut_ptr().offset(1),
|
|
|
|
v0.as_ptr().offset(1), 1);
|
2014-06-06 10:27:49 -07:00
|
|
|
assert!((*v1.get(0) == 0u16 &&
|
|
|
|
*v1.get(1) == 32001u16 &&
|
|
|
|
*v1.get(2) == 0u16));
|
2013-12-15 23:35:12 +11:00
|
|
|
copy_memory(v1.as_mut_ptr(),
|
2014-02-10 16:50:42 -05:00
|
|
|
v0.as_ptr().offset(2), 1);
|
2014-06-06 10:27:49 -07:00
|
|
|
assert!((*v1.get(0) == 32002u16 &&
|
|
|
|
*v1.get(1) == 32001u16 &&
|
|
|
|
*v1.get(2) == 0u16));
|
2014-02-10 16:50:42 -05:00
|
|
|
copy_memory(v1.as_mut_ptr().offset(2),
|
2013-12-15 23:35:12 +11:00
|
|
|
v0.as_ptr(), 1u);
|
2014-06-06 10:27:49 -07:00
|
|
|
assert!((*v1.get(0) == 32002u16 &&
|
|
|
|
*v1.get(1) == 32001u16 &&
|
|
|
|
*v1.get(2) == 32000u16));
|
2013-04-16 01:08:52 +10:00
|
|
|
}
|
2012-06-24 20:18:18 -07:00
|
|
|
}
|
2012-04-11 15:46:51 -07:00
|
|
|
|
2013-04-16 01:08:52 +10:00
|
|
|
#[test]
|
|
|
|
fn test_position() {
|
|
|
|
use libc::c_char;
|
2012-04-11 15:46:51 -07:00
|
|
|
|
2013-11-21 17:23:21 -08:00
|
|
|
"hello".with_c_str(|p| {
|
2013-08-03 17:13:14 -07:00
|
|
|
unsafe {
|
|
|
|
assert!(2u == position(p, |c| *c == 'l' as c_char));
|
|
|
|
assert!(4u == position(p, |c| *c == 'o' as c_char));
|
|
|
|
assert!(5u == position(p, |c| *c == 0 as c_char));
|
|
|
|
}
|
2013-11-21 17:23:21 -08:00
|
|
|
})
|
2012-06-24 20:18:18 -07:00
|
|
|
}
|
2012-04-11 15:46:51 -07:00
|
|
|
|
2013-04-16 01:08:52 +10:00
|
|
|
#[test]
|
|
|
|
fn test_buf_len() {
|
2013-11-21 17:23:21 -08:00
|
|
|
"hello".with_c_str(|p0| {
|
|
|
|
"there".with_c_str(|p1| {
|
|
|
|
"thing".with_c_str(|p2| {
|
2014-06-06 10:27:49 -07:00
|
|
|
let v = vec![p0, p1, p2, null()];
|
2013-12-18 01:49:31 +11:00
|
|
|
unsafe {
|
|
|
|
assert_eq!(buf_len(v.as_ptr()), 3u);
|
|
|
|
}
|
2013-11-21 17:23:21 -08:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2012-04-11 15:46:51 -07:00
|
|
|
}
|
2012-07-31 17:30:38 -07:00
|
|
|
|
2013-04-16 01:08:52 +10:00
|
|
|
#[test]
|
|
|
|
fn test_is_null() {
|
|
|
|
let p: *int = null();
|
|
|
|
assert!(p.is_null());
|
|
|
|
assert!(!p.is_not_null());
|
|
|
|
|
2014-02-10 16:50:42 -05:00
|
|
|
let q = unsafe { p.offset(1) };
|
2013-04-16 01:08:52 +10:00
|
|
|
assert!(!q.is_null());
|
|
|
|
assert!(q.is_not_null());
|
|
|
|
|
|
|
|
let mp: *mut int = mut_null();
|
|
|
|
assert!(mp.is_null());
|
|
|
|
assert!(!mp.is_not_null());
|
|
|
|
|
2013-08-08 22:22:52 -07:00
|
|
|
let mq = unsafe { mp.offset(1) };
|
2013-04-16 01:08:52 +10:00
|
|
|
assert!(!mq.is_null());
|
|
|
|
assert!(mq.is_not_null());
|
|
|
|
}
|
2012-11-07 16:24:29 +10:00
|
|
|
|
2013-05-19 14:08:27 +10:00
|
|
|
#[test]
|
|
|
|
fn test_to_option() {
|
2013-05-24 19:35:29 -07:00
|
|
|
unsafe {
|
|
|
|
let p: *int = null();
|
|
|
|
assert_eq!(p.to_option(), None);
|
2013-05-19 14:08:27 +10:00
|
|
|
|
2013-05-24 19:35:29 -07:00
|
|
|
let q: *int = &2;
|
|
|
|
assert_eq!(q.to_option().unwrap(), &2);
|
2013-05-19 14:08:27 +10:00
|
|
|
|
2013-05-24 19:35:29 -07:00
|
|
|
let p: *mut int = mut_null();
|
|
|
|
assert_eq!(p.to_option(), None);
|
2013-05-19 14:08:27 +10:00
|
|
|
|
2013-05-24 19:35:29 -07:00
|
|
|
let q: *mut int = &mut 2;
|
|
|
|
assert_eq!(q.to_option().unwrap(), &2);
|
|
|
|
}
|
2013-05-19 14:08:27 +10:00
|
|
|
}
|
2013-02-14 22:16:53 -08:00
|
|
|
|
2013-07-06 21:24:22 -04:00
|
|
|
#[test]
|
|
|
|
fn test_ptr_addition() {
|
|
|
|
unsafe {
|
2014-04-21 17:58:52 -04:00
|
|
|
let xs = Vec::from_elem(16, 5i);
|
2013-12-15 23:35:12 +11:00
|
|
|
let mut ptr = xs.as_ptr();
|
2013-08-08 22:22:52 -07:00
|
|
|
let end = ptr.offset(16);
|
2013-07-06 21:24:22 -04:00
|
|
|
|
|
|
|
while ptr < end {
|
|
|
|
assert_eq!(*ptr, 5);
|
2013-08-08 22:22:52 -07:00
|
|
|
ptr = ptr.offset(1);
|
2013-07-06 21:24:22 -04:00
|
|
|
}
|
|
|
|
|
2014-06-06 10:27:49 -07:00
|
|
|
let mut xs_mut = xs;
|
2013-12-15 23:35:12 +11:00
|
|
|
let mut m_ptr = xs_mut.as_mut_ptr();
|
2013-08-08 22:22:52 -07:00
|
|
|
let m_end = m_ptr.offset(16);
|
2013-07-06 21:24:22 -04:00
|
|
|
|
|
|
|
while m_ptr < m_end {
|
|
|
|
*m_ptr += 5;
|
2013-08-08 22:22:52 -07:00
|
|
|
m_ptr = m_ptr.offset(1);
|
2013-07-06 21:24:22 -04:00
|
|
|
}
|
|
|
|
|
2014-04-21 17:58:52 -04:00
|
|
|
assert!(xs_mut == Vec::from_elem(16, 10i));
|
2013-07-06 21:24:22 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_ptr_subtraction() {
|
|
|
|
unsafe {
|
2014-06-06 10:27:49 -07:00
|
|
|
let xs = vec![0,1,2,3,4,5,6,7,8,9];
|
2013-07-06 21:24:22 -04:00
|
|
|
let mut idx = 9i8;
|
2013-12-15 23:35:12 +11:00
|
|
|
let ptr = xs.as_ptr();
|
2013-07-06 21:24:22 -04:00
|
|
|
|
|
|
|
while idx >= 0i8 {
|
2013-08-08 22:22:52 -07:00
|
|
|
assert_eq!(*(ptr.offset(idx as int)), idx as int);
|
2013-07-06 21:24:22 -04:00
|
|
|
idx = idx - 1i8;
|
|
|
|
}
|
|
|
|
|
2014-06-06 10:27:49 -07:00
|
|
|
let mut xs_mut = xs;
|
2013-12-15 23:35:12 +11:00
|
|
|
let m_start = xs_mut.as_mut_ptr();
|
2013-08-08 22:22:52 -07:00
|
|
|
let mut m_ptr = m_start.offset(9);
|
2013-07-06 21:24:22 -04:00
|
|
|
|
|
|
|
while m_ptr >= m_start {
|
|
|
|
*m_ptr += *m_ptr;
|
2013-08-08 22:22:52 -07:00
|
|
|
m_ptr = m_ptr.offset(-1);
|
2013-07-06 21:24:22 -04:00
|
|
|
}
|
|
|
|
|
2014-06-06 10:27:49 -07:00
|
|
|
assert!(xs_mut == vec![0,2,4,6,8,10,12,14,16,18]);
|
2013-07-06 21:24:22 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-14 22:16:53 -08:00
|
|
|
#[test]
|
2013-04-16 01:08:52 +10:00
|
|
|
fn test_ptr_array_each_with_len() {
|
2013-02-14 22:16:53 -08:00
|
|
|
unsafe {
|
2013-07-07 13:30:48 -07:00
|
|
|
let one = "oneOne".to_c_str();
|
|
|
|
let two = "twoTwo".to_c_str();
|
|
|
|
let three = "threeThree".to_c_str();
|
2014-06-06 10:27:49 -07:00
|
|
|
let arr = vec![
|
2013-07-07 13:30:48 -07:00
|
|
|
one.with_ref(|buf| buf),
|
|
|
|
two.with_ref(|buf| buf),
|
2014-06-06 10:27:49 -07:00
|
|
|
three.with_ref(|buf| buf)
|
2013-02-14 22:16:53 -08:00
|
|
|
];
|
|
|
|
let expected_arr = [
|
|
|
|
one, two, three
|
|
|
|
];
|
2013-07-07 13:30:48 -07:00
|
|
|
|
2013-12-18 01:49:31 +11:00
|
|
|
let mut ctr = 0;
|
|
|
|
let mut iteration_count = 0;
|
|
|
|
array_each_with_len(arr.as_ptr(), arr.len(), |e| {
|
|
|
|
let actual = str::raw::from_c_str(e);
|
|
|
|
let expected = expected_arr[ctr].with_ref(|buf| {
|
|
|
|
str::raw::from_c_str(buf)
|
|
|
|
});
|
2014-05-19 23:19:56 -07:00
|
|
|
assert_eq!(actual.as_slice(), expected.as_slice());
|
2013-12-18 01:49:31 +11:00
|
|
|
ctr += 1;
|
|
|
|
iteration_count += 1;
|
2013-11-21 17:23:21 -08:00
|
|
|
});
|
2013-12-18 01:49:31 +11:00
|
|
|
assert_eq!(iteration_count, 3u);
|
2013-02-14 22:16:53 -08:00
|
|
|
}
|
|
|
|
}
|
2013-07-07 13:30:48 -07:00
|
|
|
|
2013-02-14 22:16:53 -08:00
|
|
|
#[test]
|
2013-04-16 01:08:52 +10:00
|
|
|
fn test_ptr_array_each() {
|
2013-02-14 22:16:53 -08:00
|
|
|
unsafe {
|
2013-07-07 13:30:48 -07:00
|
|
|
let one = "oneOne".to_c_str();
|
|
|
|
let two = "twoTwo".to_c_str();
|
|
|
|
let three = "threeThree".to_c_str();
|
2014-06-06 10:27:49 -07:00
|
|
|
let arr = vec![
|
2013-07-07 13:30:48 -07:00
|
|
|
one.with_ref(|buf| buf),
|
|
|
|
two.with_ref(|buf| buf),
|
|
|
|
three.with_ref(|buf| buf),
|
2013-02-14 22:16:53 -08:00
|
|
|
// fake a null terminator
|
2014-06-06 10:27:49 -07:00
|
|
|
null()
|
2013-02-14 22:16:53 -08:00
|
|
|
];
|
|
|
|
let expected_arr = [
|
|
|
|
one, two, three
|
|
|
|
];
|
2013-07-07 13:30:48 -07:00
|
|
|
|
2013-12-18 01:49:31 +11:00
|
|
|
let arr_ptr = arr.as_ptr();
|
2014-04-21 17:58:52 -04:00
|
|
|
let mut ctr = 0u;
|
|
|
|
let mut iteration_count = 0u;
|
2013-12-18 01:49:31 +11:00
|
|
|
array_each(arr_ptr, |e| {
|
|
|
|
let actual = str::raw::from_c_str(e);
|
|
|
|
let expected = expected_arr[ctr].with_ref(|buf| {
|
|
|
|
str::raw::from_c_str(buf)
|
|
|
|
});
|
2014-05-19 23:19:56 -07:00
|
|
|
assert_eq!(actual.as_slice(), expected.as_slice());
|
2013-12-18 01:49:31 +11:00
|
|
|
ctr += 1;
|
|
|
|
iteration_count += 1;
|
2013-11-21 17:23:21 -08:00
|
|
|
});
|
2013-12-18 01:49:31 +11:00
|
|
|
assert_eq!(iteration_count, 3);
|
2013-02-14 22:16:53 -08:00
|
|
|
}
|
|
|
|
}
|
2013-07-07 13:30:48 -07:00
|
|
|
|
2013-02-14 22:16:53 -08:00
|
|
|
#[test]
|
|
|
|
#[should_fail]
|
2013-04-16 01:08:52 +10:00
|
|
|
fn test_ptr_array_each_with_len_null_ptr() {
|
2013-02-14 22:16:53 -08:00
|
|
|
unsafe {
|
2013-04-16 01:08:52 +10:00
|
|
|
array_each_with_len(0 as **libc::c_char, 1, |e| {
|
2013-02-14 22:16:53 -08:00
|
|
|
str::raw::from_c_str(e);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#[test]
|
|
|
|
#[should_fail]
|
2013-04-16 01:08:52 +10:00
|
|
|
fn test_ptr_array_each_null_ptr() {
|
2013-02-14 22:16:53 -08:00
|
|
|
unsafe {
|
2013-04-16 01:08:52 +10:00
|
|
|
array_each(0 as **libc::c_char, |e| {
|
2013-02-14 22:16:53 -08:00
|
|
|
str::raw::from_c_str(e);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2013-05-24 18:05:27 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_set_memory() {
|
|
|
|
let mut xs = [0u8, ..20];
|
2013-12-15 23:35:12 +11:00
|
|
|
let ptr = xs.as_mut_ptr();
|
2013-05-24 18:05:27 -04:00
|
|
|
unsafe { set_memory(ptr, 5u8, xs.len()); }
|
2014-02-28 01:23:06 -08:00
|
|
|
assert!(xs == [5u8, ..20]);
|
2013-05-24 18:05:27 -04:00
|
|
|
}
|
2013-02-14 22:16:53 -08:00
|
|
|
}
|