Skip to content

Commit ce86d41

Browse files
committed
Use atomic_load_unordered for first word load in misaligned case
1 parent 2d28f4d commit ce86d41

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/mem/impls.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ pub unsafe fn copy_forward(mut dest: *mut u8, mut src: *const u8, mut n: usize)
6161

6262
// Realign src
6363
let mut src_aligned = (src as usize & !WORD_MASK) as *mut usize;
64-
// XXX: Could this possibly be UB?
65-
let mut prev_word = *src_aligned;
64+
// This will read (but won't use) bytes out of bound.
65+
let mut prev_word = core::intrinsics::atomic_load_unordered(src_aligned);
6666

6767
while dest_usize < dest_end {
6868
src_aligned = src_aligned.add(1);
@@ -154,8 +154,8 @@ pub unsafe fn copy_backward(dest: *mut u8, src: *const u8, mut n: usize) {
154154

155155
// Realign src_aligned
156156
let mut src_aligned = (src as usize & !WORD_MASK) as *mut usize;
157-
// XXX: Could this possibly be UB?
158-
let mut prev_word = *src_aligned;
157+
// This will read (but won't use) bytes out of bound.
158+
let mut prev_word = core::intrinsics::atomic_load_unordered(src_aligned);
159159

160160
while dest_start < dest_usize {
161161
src_aligned = src_aligned.sub(1);

0 commit comments

Comments
 (0)