-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
201 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
//@ run-fail | ||
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=no -Zub-checks=yes | ||
//@ error-pattern: unsafe precondition(s) violated: hint::assert_unchecked must never be called when the condition is false | ||
|
||
fn main() { | ||
unsafe { | ||
std::hint::assert_unchecked(false); | ||
} | ||
} |
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,23 @@ | ||
//@ run-fail | ||
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=no -Zub-checks=yes | ||
//@ error-pattern: unsafe precondition(s) violated: ptr::copy requires | ||
//@ revisions: null_src null_dst misaligned_src misaligned_dst | ||
|
||
use std::ptr; | ||
|
||
fn main() { | ||
let src = [0u16; 3]; | ||
let mut dst = [0u16; 3]; | ||
let src = src.as_ptr(); | ||
let dst = dst.as_mut_ptr(); | ||
unsafe { | ||
#[cfg(null_src)] | ||
ptr::copy(ptr::null(), dst, 1); | ||
#[cfg(null_dst)] | ||
ptr::copy(src, ptr::null_mut(), 1); | ||
#[cfg(misaligned_src)] | ||
ptr::copy(src.byte_add(1), dst, 1); | ||
#[cfg(misaligned_dst)] | ||
ptr::copy(src, dst.byte_add(1), 1); | ||
} | ||
} |
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
12 changes: 12 additions & 0 deletions
12
tests/ui/precondition-checks/nonzero-from_mut_unchecked.rs
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,12 @@ | ||
//@ run-fail | ||
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=no -Zub-checks=yes | ||
//@ error-pattern: unsafe precondition(s) violated: NonZero::from_mut_unchecked requires | ||
|
||
#![feature(nonzero_from_mut)] | ||
|
||
fn main() { | ||
unsafe { | ||
let mut num = 0u8; | ||
std::num::NonZeroU8::from_mut_unchecked(&mut num); | ||
} | ||
} |
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,9 @@ | ||
//@ run-fail | ||
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=no -Zub-checks=yes | ||
//@ error-pattern: unsafe precondition(s) violated: NonZero::new_unchecked requires | ||
|
||
fn main() { | ||
unsafe { | ||
std::num::NonZeroU8::new_unchecked(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,18 @@ | ||
//@ run-fail | ||
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=no -Zub-checks=yes | ||
//@ error-pattern: unsafe precondition(s) violated: ptr::read requires | ||
//@ revisions: null misaligned | ||
//@ ignore-test | ||
|
||
use std::ptr; | ||
|
||
fn main() { | ||
let src = [0u16; 2]; | ||
let src = src.as_ptr(); | ||
unsafe { | ||
#[cfg(null)] | ||
ptr::read(ptr::null::<u8>()); | ||
#[cfg(misaligned)] | ||
ptr::read(src.byte_add(1)); | ||
} | ||
} |
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,17 @@ | ||
//@ run-fail | ||
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=no -Zub-checks=yes | ||
//@ error-pattern: unsafe precondition(s) violated: ptr::read_volatile requires | ||
//@ revisions: null misaligned | ||
|
||
use std::ptr; | ||
|
||
fn main() { | ||
let src = [0u16; 2]; | ||
let src = src.as_ptr(); | ||
unsafe { | ||
#[cfg(null)] | ||
ptr::read_volatile(ptr::null::<u8>()); | ||
#[cfg(misaligned)] | ||
ptr::read_volatile(src.byte_add(1)); | ||
} | ||
} |
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,17 @@ | ||
//@ run-fail | ||
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=no -Zub-checks=yes | ||
//@ error-pattern: unsafe precondition(s) violated: ptr::replace requires | ||
//@ revisions: null misaligned | ||
|
||
use std::ptr; | ||
|
||
fn main() { | ||
let mut dst = [0u16; 2]; | ||
let dst = dst.as_mut_ptr(); | ||
unsafe { | ||
#[cfg(null)] | ||
ptr::replace(ptr::null_mut::<u8>(), 1); | ||
#[cfg(misaligned)] | ||
ptr::replace(dst.byte_add(1), 1u16); | ||
} | ||
} |
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,25 @@ | ||
//@ run-fail | ||
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=no -Zub-checks=yes | ||
//@ error-pattern: unsafe precondition(s) violated: ptr::swap_nonoverlapping requires | ||
//@ revisions: null_src null_dst misaligned_src misaligned_dst overlapping | ||
|
||
use std::ptr; | ||
|
||
fn main() { | ||
let mut src = [0u16; 3]; | ||
let mut dst = [0u16; 3]; | ||
let src = src.as_mut_ptr(); | ||
let dst = dst.as_mut_ptr(); | ||
unsafe { | ||
#[cfg(null_src)] | ||
ptr::swap_nonoverlapping(ptr::null_mut(), dst, 1); | ||
#[cfg(null_dst)] | ||
ptr::swap_nonoverlapping(src, ptr::null_mut(), 1); | ||
#[cfg(misaligned_src)] | ||
ptr::swap_nonoverlapping(src.byte_add(1), dst, 1); | ||
#[cfg(misaligned_dst)] | ||
ptr::swap_nonoverlapping(src, dst.byte_add(1), 1); | ||
#[cfg(overlapping)] | ||
ptr::swap_nonoverlapping(dst, dst.add(1), 2); | ||
} | ||
} |
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,9 @@ | ||
//@ run-fail | ||
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=no -Zub-checks=yes | ||
//@ error-pattern: unsafe precondition(s) violated: hint::unreachable_unchecked must never be reached | ||
|
||
fn main() { | ||
unsafe { | ||
std::hint::unreachable_unchecked(); | ||
} | ||
} |
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,18 @@ | ||
//@ run-fail | ||
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=no -Zub-checks=yes | ||
//@ error-pattern: unsafe precondition(s) violated: ptr::write requires | ||
//@ revisions: null misaligned | ||
//@ ignore-test | ||
|
||
use std::ptr; | ||
|
||
fn main() { | ||
let mut dst = [0u16; 2]; | ||
let mut dst = dst.as_mut_ptr(); | ||
unsafe { | ||
#[cfg(null)] | ||
ptr::write(ptr::null_mut::<u8>(), 1u8); | ||
#[cfg(misaligned)] | ||
ptr::write(dst.byte_add(1), 1u16); | ||
} | ||
} |
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,18 @@ | ||
//@ run-fail | ||
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=no -Zub-checks=yes | ||
//@ error-pattern: unsafe precondition(s) violated: ptr::write requires | ||
//@ revisions: null misaligned | ||
//@ ignore-test | ||
|
||
use std::ptr; | ||
|
||
fn main() { | ||
let mut dst = [0u16; 2]; | ||
let mut dst = dst.as_mut_ptr(); | ||
unsafe { | ||
#[cfg(null)] | ||
ptr::write_bytes(ptr::null_mut::<u8>(), 1u8, 2); | ||
#[cfg(misaligned)] | ||
ptr::write_bytes(dst.byte_add(1), 1u8, 2); | ||
} | ||
} |
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,17 @@ | ||
//@ run-fail | ||
//@ compile-flags: -Copt-level=3 -Cdebug-assertions=no -Zub-checks=yes | ||
//@ error-pattern: unsafe precondition(s) violated: ptr::write_volatile requires | ||
//@ revisions: null misaligned | ||
|
||
use std::ptr; | ||
|
||
fn main() { | ||
let mut dst = [0u16; 2]; | ||
let mut dst = dst.as_mut_ptr(); | ||
unsafe { | ||
#[cfg(null)] | ||
ptr::write_volatile(ptr::null_mut::<u8>(), 1u8); | ||
#[cfg(misaligned)] | ||
ptr::write_volatile(dst.byte_add(1), 1u16); | ||
} | ||
} |