]> git.lizzy.rs Git - rust.git/commitdiff
Documentation and naming improvements
authorScott McMurray <scottmcm@users.noreply.github.com>
Sun, 25 Mar 2018 03:37:31 +0000 (20:37 -0700)
committerScott McMurray <scottmcm@users.noreply.github.com>
Sun, 25 Mar 2018 03:37:31 +0000 (20:37 -0700)
src/libcore/ptr.rs

index cbd45bb6a39e191d2a5f91177057a7837b4175c1..3fc8421d3b04e75f24df77e7abf43e393229a5b1 100644 (file)
@@ -669,7 +669,7 @@ pub fn wrapping_offset(self, count: isize) -> *const T where T: Sized {
     /// `mem::size_of::<T>()` then the result of the division is rounded towards
     /// zero.
     ///
-    /// This function returns `None` if `T` is a zero-sized typed.
+    /// This function returns `None` if `T` is a zero-sized type.
     ///
     /// # Examples
     ///
@@ -719,7 +719,7 @@ pub fn offset_to(self, other: *const T) -> Option<isize> where T: Sized {
     /// * The distance between the pointers, **in bytes**, cannot overflow an `isize`.
     ///
     /// * The distance between the pointers, in bytes, must be an exact multiple
-    ///   of the size of `T` and `T` must not be a Zero-Sized Type ("ZST").
+    ///   of the size of `T`.
     ///
     /// * The distance being in bounds cannot rely on "wrapping around" the address space.
     ///
@@ -740,6 +740,10 @@ pub fn offset_to(self, other: *const T) -> Option<isize> where T: Sized {
     /// difficult to satisfy. The only advantage of this method is that it
     /// enables more aggressive compiler optimizations.
     ///
+    /// # Panics
+    ///
+    /// This function panics if `T` is a Zero-Sized Type ("ZST").
+    ///
     /// # Examples
     ///
     /// Basic usage:
@@ -759,12 +763,14 @@ pub fn offset_to(self, other: *const T) -> Option<isize> where T: Sized {
     /// ```
     #[unstable(feature = "ptr_offset_from", issue = "41079")]
     #[inline]
-    pub unsafe fn offset_from(self, other: *const T) -> isize where T: Sized {
+    pub unsafe fn offset_from(self, origin: *const T) -> isize where T: Sized {
         let pointee_size = mem::size_of::<T>();
         assert!(0 < pointee_size && pointee_size <= isize::max_value() as usize);
 
-        // FIXME: can this be nuw/nsw?
-        let d = isize::wrapping_sub(self as _, other as _);
+        // This is the same sequence that Clang emits for pointer subtraction.
+        // It can be neither `nsw` nor `nuw` because the input is treated as
+        // unsigned but then the output is treated as signed, so neither works.
+        let d = isize::wrapping_sub(self as _, origin as _);
         intrinsics::exact_div(d, pointee_size as _)
     }
 
@@ -775,9 +781,13 @@ pub unsafe fn offset_from(self, other: *const T) -> isize where T: Sized {
     /// `mem::size_of::<T>()` then the result of the division is rounded towards
     /// zero.
     ///
+    /// Though this method is safe for any two pointers, note that its result
+    /// will be mostly useless if the two pointers aren't into the same allocated
+    /// object, for example if they point to two different local variables.
+    ///
     /// # Panics
     ///
-    /// This function panics if `T` is a zero-sized typed.
+    /// This function panics if `T` is a zero-sized type.
     ///
     /// # Examples
     ///
@@ -800,11 +810,11 @@ pub unsafe fn offset_from(self, other: *const T) -> isize where T: Sized {
     /// ```
     #[unstable(feature = "ptr_wrapping_offset_from", issue = "41079")]
     #[inline]
-    pub fn wrapping_offset_from(self, other: *const T) -> isize where T: Sized {
+    pub fn wrapping_offset_from(self, origin: *const T) -> isize where T: Sized {
         let pointee_size = mem::size_of::<T>();
         assert!(0 < pointee_size && pointee_size <= isize::max_value() as usize);
 
-        let d = isize::wrapping_sub(self as _, other as _);
+        let d = isize::wrapping_sub(self as _, origin as _);
         d.wrapping_div(pointee_size as _)
     }
 
@@ -1424,7 +1434,7 @@ pub unsafe fn as_mut<'a>(self) -> Option<&'a mut T> {
     /// `mem::size_of::<T>()` then the result of the division is rounded towards
     /// zero.
     ///
-    /// This function returns `None` if `T` is a zero-sized typed.
+    /// This function returns `None` if `T` is a zero-sized type.
     ///
     /// # Examples
     ///
@@ -1474,7 +1484,7 @@ pub fn offset_to(self, other: *const T) -> Option<isize> where T: Sized {
     /// * The distance between the pointers, **in bytes**, cannot overflow an `isize`.
     ///
     /// * The distance between the pointers, in bytes, must be an exact multiple
-    ///   of the size of `T` and `T` must not be a Zero-Sized Type ("ZST").
+    ///   of the size of `T`.
     ///
     /// * The distance being in bounds cannot rely on "wrapping around" the address space.
     ///
@@ -1495,6 +1505,10 @@ pub fn offset_to(self, other: *const T) -> Option<isize> where T: Sized {
     /// difficult to satisfy. The only advantage of this method is that it
     /// enables more aggressive compiler optimizations.
     ///
+    /// # Panics
+    ///
+    /// This function panics if `T` is a Zero-Sized Type ("ZST").
+    ///
     /// # Examples
     ///
     /// Basic usage:
@@ -1514,8 +1528,8 @@ pub fn offset_to(self, other: *const T) -> Option<isize> where T: Sized {
     /// ```
     #[unstable(feature = "ptr_offset_from", issue = "41079")]
     #[inline]
-    pub unsafe fn offset_from(self, other: *const T) -> isize where T: Sized {
-        (self as *const T).offset_from(other)
+    pub unsafe fn offset_from(self, origin: *const T) -> isize where T: Sized {
+        (self as *const T).offset_from(origin)
     }
 
     /// Calculates the distance between two pointers. The returned value is in
@@ -1525,9 +1539,13 @@ pub unsafe fn offset_from(self, other: *const T) -> isize where T: Sized {
     /// `mem::size_of::<T>()` then the result of the division is rounded towards
     /// zero.
     ///
+    /// Though this method is safe for any two pointers, note that its result
+    /// will be mostly useless if the two pointers aren't into the same allocated
+    /// object, for example if they point to two different local variables.
+    ///
     /// # Panics
     ///
-    /// This function panics if `T` is a zero-sized typed.
+    /// This function panics if `T` is a zero-sized type.
     ///
     /// # Examples
     ///
@@ -1550,8 +1568,8 @@ pub unsafe fn offset_from(self, other: *const T) -> isize where T: Sized {
     /// ```
     #[unstable(feature = "ptr_wrapping_offset_from", issue = "41079")]
     #[inline]
-    pub fn wrapping_offset_from(self, other: *const T) -> isize where T: Sized {
-        (self as *const T).wrapping_offset_from(other)
+    pub fn wrapping_offset_from(self, origin: *const T) -> isize where T: Sized {
+        (self as *const T).wrapping_offset_from(origin)
     }
 
     /// Computes the byte offset that needs to be applied in order to