forked from rust-lang/rust
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#7023 - boxdot:invalid-null-usage-v2, r=camste…
…ffen Invalid null usage v2 This is continuation of rust-lang#6192 after inactivity. I plan to move paths into the compiler as diagnostic items after this is merged. fixes rust-lang#1703 changelog: none
- Loading branch information
Showing
8 changed files
with
353 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// run-rustfix | ||
|
||
fn main() { | ||
unsafe { | ||
let _slice: &[usize] = std::slice::from_raw_parts(core::ptr::NonNull::dangling().as_ptr(), 0); | ||
let _slice: &[usize] = std::slice::from_raw_parts(core::ptr::NonNull::dangling().as_ptr(), 0); | ||
|
||
let _slice: &[usize] = std::slice::from_raw_parts_mut(core::ptr::NonNull::dangling().as_ptr(), 0); | ||
|
||
std::ptr::copy::<usize>(core::ptr::NonNull::dangling().as_ptr(), std::ptr::NonNull::dangling().as_ptr(), 0); | ||
std::ptr::copy::<usize>(std::ptr::NonNull::dangling().as_ptr(), core::ptr::NonNull::dangling().as_ptr(), 0); | ||
|
||
std::ptr::copy_nonoverlapping::<usize>(core::ptr::NonNull::dangling().as_ptr(), std::ptr::NonNull::dangling().as_ptr(), 0); | ||
std::ptr::copy_nonoverlapping::<usize>(std::ptr::NonNull::dangling().as_ptr(), core::ptr::NonNull::dangling().as_ptr(), 0); | ||
|
||
struct A; // zero sized struct | ||
assert_eq!(std::mem::size_of::<A>(), 0); | ||
|
||
let _a: A = std::ptr::read(core::ptr::NonNull::dangling().as_ptr()); | ||
let _a: A = std::ptr::read(core::ptr::NonNull::dangling().as_ptr()); | ||
|
||
let _a: A = std::ptr::read_unaligned(core::ptr::NonNull::dangling().as_ptr()); | ||
let _a: A = std::ptr::read_unaligned(core::ptr::NonNull::dangling().as_ptr()); | ||
|
||
let _a: A = std::ptr::read_volatile(core::ptr::NonNull::dangling().as_ptr()); | ||
let _a: A = std::ptr::read_volatile(core::ptr::NonNull::dangling().as_ptr()); | ||
|
||
let _a: A = std::ptr::replace(core::ptr::NonNull::dangling().as_ptr(), A); | ||
|
||
let _slice: *const [usize] = std::ptr::slice_from_raw_parts(core::ptr::NonNull::dangling().as_ptr(), 0); | ||
let _slice: *const [usize] = std::ptr::slice_from_raw_parts(core::ptr::NonNull::dangling().as_ptr(), 0); | ||
|
||
let _slice: *const [usize] = std::ptr::slice_from_raw_parts_mut(core::ptr::NonNull::dangling().as_ptr(), 0); | ||
|
||
std::ptr::swap::<A>(core::ptr::NonNull::dangling().as_ptr(), &mut A); | ||
std::ptr::swap::<A>(&mut A, core::ptr::NonNull::dangling().as_ptr()); | ||
|
||
std::ptr::swap_nonoverlapping::<A>(core::ptr::NonNull::dangling().as_ptr(), &mut A, 0); | ||
std::ptr::swap_nonoverlapping::<A>(&mut A, core::ptr::NonNull::dangling().as_ptr(), 0); | ||
|
||
std::ptr::write(core::ptr::NonNull::dangling().as_ptr(), A); | ||
|
||
std::ptr::write_unaligned(core::ptr::NonNull::dangling().as_ptr(), A); | ||
|
||
std::ptr::write_volatile(core::ptr::NonNull::dangling().as_ptr(), A); | ||
|
||
std::ptr::write_bytes::<usize>(core::ptr::NonNull::dangling().as_ptr(), 42, 0); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// run-rustfix | ||
|
||
fn main() { | ||
unsafe { | ||
let _slice: &[usize] = std::slice::from_raw_parts(std::ptr::null(), 0); | ||
let _slice: &[usize] = std::slice::from_raw_parts(std::ptr::null_mut(), 0); | ||
|
||
let _slice: &[usize] = std::slice::from_raw_parts_mut(std::ptr::null_mut(), 0); | ||
|
||
std::ptr::copy::<usize>(std::ptr::null(), std::ptr::NonNull::dangling().as_ptr(), 0); | ||
std::ptr::copy::<usize>(std::ptr::NonNull::dangling().as_ptr(), std::ptr::null_mut(), 0); | ||
|
||
std::ptr::copy_nonoverlapping::<usize>(std::ptr::null(), std::ptr::NonNull::dangling().as_ptr(), 0); | ||
std::ptr::copy_nonoverlapping::<usize>(std::ptr::NonNull::dangling().as_ptr(), std::ptr::null_mut(), 0); | ||
|
||
struct A; // zero sized struct | ||
assert_eq!(std::mem::size_of::<A>(), 0); | ||
|
||
let _a: A = std::ptr::read(std::ptr::null()); | ||
let _a: A = std::ptr::read(std::ptr::null_mut()); | ||
|
||
let _a: A = std::ptr::read_unaligned(std::ptr::null()); | ||
let _a: A = std::ptr::read_unaligned(std::ptr::null_mut()); | ||
|
||
let _a: A = std::ptr::read_volatile(std::ptr::null()); | ||
let _a: A = std::ptr::read_volatile(std::ptr::null_mut()); | ||
|
||
let _a: A = std::ptr::replace(std::ptr::null_mut(), A); | ||
|
||
let _slice: *const [usize] = std::ptr::slice_from_raw_parts(std::ptr::null(), 0); | ||
let _slice: *const [usize] = std::ptr::slice_from_raw_parts(std::ptr::null_mut(), 0); | ||
|
||
let _slice: *const [usize] = std::ptr::slice_from_raw_parts_mut(std::ptr::null_mut(), 0); | ||
|
||
std::ptr::swap::<A>(std::ptr::null_mut(), &mut A); | ||
std::ptr::swap::<A>(&mut A, std::ptr::null_mut()); | ||
|
||
std::ptr::swap_nonoverlapping::<A>(std::ptr::null_mut(), &mut A, 0); | ||
std::ptr::swap_nonoverlapping::<A>(&mut A, std::ptr::null_mut(), 0); | ||
|
||
std::ptr::write(std::ptr::null_mut(), A); | ||
|
||
std::ptr::write_unaligned(std::ptr::null_mut(), A); | ||
|
||
std::ptr::write_volatile(std::ptr::null_mut(), A); | ||
|
||
std::ptr::write_bytes::<usize>(std::ptr::null_mut(), 42, 0); | ||
} | ||
} |
Oops, something went wrong.