Skip to content

Commit cb7cd97

Browse files
committed
promise that ptr::copy and ptr::swap are doing untyped copies
1 parent b96d1e4 commit cb7cd97

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

library/core/src/intrinsics.rs

+6
Original file line numberDiff line numberDiff line change
@@ -2043,6 +2043,9 @@ pub(crate) fn is_nonoverlapping<T>(src: *const T, dst: *const T, count: usize) -
20432043
/// `copy_nonoverlapping` is semantically equivalent to C's [`memcpy`], but
20442044
/// with the argument order swapped.
20452045
///
2046+
/// The copy is "untyped" in the sense that data may be uninitialized or otherwise violate the
2047+
/// requirements of `T`. The initialization state is preserved exactly.
2048+
///
20462049
/// [`memcpy`]: https://en.cppreference.com/w/c/string/byte/memcpy
20472050
///
20482051
/// # Safety
@@ -2148,6 +2151,9 @@ pub const unsafe fn copy_nonoverlapping<T>(src: *const T, dst: *mut T, count: us
21482151
/// order swapped. Copying takes place as if the bytes were copied from `src`
21492152
/// to a temporary array and then copied from the array to `dst`.
21502153
///
2154+
/// The copy is "untyped" in the sense that data may be uninitialized or otherwise violate the
2155+
/// requirements of `T`. The initialization state is preserved exactly.
2156+
///
21512157
/// [`memmove`]: https://en.cppreference.com/w/c/string/byte/memmove
21522158
///
21532159
/// # Safety

library/core/src/ptr/mod.rs

+8-2
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@ pub const fn slice_from_raw_parts_mut<T>(data: *mut T, len: usize) -> *mut [T] {
774774
/// Swaps the values at two mutable locations of the same type, without
775775
/// deinitializing either.
776776
///
777-
/// But for the following two exceptions, this function is semantically
777+
/// But for the following exceptions, this function is semantically
778778
/// equivalent to [`mem::swap`]:
779779
///
780780
/// * It operates on raw pointers instead of references. When references are
@@ -784,6 +784,9 @@ pub const fn slice_from_raw_parts_mut<T>(data: *mut T, len: usize) -> *mut [T] {
784784
/// overlapping region of memory from `x` will be used. This is demonstrated
785785
/// in the second example below.
786786
///
787+
/// * The operation is "untyped" in the sense that data may be uninitialized or otherwise violate
788+
/// the requirements of `T`. The initialization state is preserved exactly.
789+
///
787790
/// # Safety
788791
///
789792
/// Behavior is undefined if any of the following conditions are violated:
@@ -860,6 +863,9 @@ pub const unsafe fn swap<T>(x: *mut T, y: *mut T) {
860863
/// Swaps `count * size_of::<T>()` bytes between the two regions of memory
861864
/// beginning at `x` and `y`. The two regions must *not* overlap.
862865
///
866+
/// The operation is "untyped" in the sense that data may be uninitialized or otherwise violate the
867+
/// requirements of `T`. The initialization state is preserved exactly.
868+
///
863869
/// # Safety
864870
///
865871
/// Behavior is undefined if any of the following conditions are violated:
@@ -965,7 +971,7 @@ const unsafe fn swap_nonoverlapping_simple_untyped<T>(x: *mut T, y: *mut T, coun
965971
// SAFETY: By precondition, `i` is in-bounds because it's below `n`
966972
// and it's distinct from `x` since the ranges are non-overlapping
967973
let y = unsafe { &mut *y.add(i) };
968-
mem::swap_simple(x, y);
974+
mem::swap_simple::<MaybeUninit<T>>(x, y);
969975

970976
i += 1;
971977
}

0 commit comments

Comments
 (0)