-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add -Zextra-const-ub-checks to enable more UB checking in const-eval
- Loading branch information
Showing
6 changed files
with
131 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// compile-flags: -Zextra-const-ub-checks | ||
#![feature(const_ptr_read)] | ||
|
||
use std::mem::transmute; | ||
|
||
const INVALID_BOOL: () = unsafe { | ||
let _x: bool = transmute(3u8); | ||
//~^ ERROR: evaluation of constant value failed | ||
//~| invalid value | ||
}; | ||
|
||
const INVALID_PTR_IN_INT: () = unsafe { | ||
let _x: usize = transmute(&3u8); | ||
//~^ ERROR: evaluation of constant value failed | ||
//~| invalid value | ||
}; | ||
|
||
const INVALID_SLICE_TO_USIZE_TRANSMUTE: () = unsafe { | ||
let x: &[u8] = &[0; 32]; | ||
let _x: (usize, usize) = transmute(x); | ||
//~^ ERROR: evaluation of constant value failed | ||
//~| invalid value | ||
}; | ||
|
||
const UNALIGNED_PTR: () = unsafe { | ||
let _x: &u32 = transmute(&[0u8; 4]); | ||
//~^ ERROR: evaluation of constant value failed | ||
//~| invalid value | ||
}; | ||
|
||
const UNALIGNED_READ: () = { | ||
INNER; //~ERROR any use of this value will cause an error | ||
//~| previously accepted | ||
// There is an error here but its span is in the standard library so we cannot match it... | ||
// so we have this in a *nested* const, such that the *outer* const fails to use it. | ||
const INNER: () = unsafe { | ||
let x = &[0u8; 4]; | ||
let ptr = x.as_ptr().cast::<u32>(); | ||
ptr.read(); | ||
}; | ||
}; | ||
|
||
fn main() {} |
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,71 @@ | ||
error[E0080]: evaluation of constant value failed | ||
--> $DIR/detect-extra-ub.rs:7:20 | ||
| | ||
LL | let _x: bool = transmute(3u8); | ||
| ^^^^^^^^^^^^^^ constructing invalid value: encountered 0x03, but expected a boolean | ||
|
||
error[E0080]: evaluation of constant value failed | ||
--> $DIR/detect-extra-ub.rs:13:21 | ||
| | ||
LL | let _x: usize = transmute(&3u8); | ||
| ^^^^^^^^^^^^^^^ constructing invalid value: encountered (potentially part of) a pointer, but expected plain (non-pointer) bytes | ||
|
||
error[E0080]: evaluation of constant value failed | ||
--> $DIR/detect-extra-ub.rs:20:30 | ||
| | ||
LL | let _x: (usize, usize) = transmute(x); | ||
| ^^^^^^^^^^^^ constructing invalid value at .0: encountered (potentially part of) a pointer, but expected plain (non-pointer) bytes | ||
|
||
error[E0080]: evaluation of constant value failed | ||
--> $DIR/detect-extra-ub.rs:26:20 | ||
| | ||
LL | let _x: &u32 = transmute(&[0u8; 4]); | ||
| ^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered an unaligned reference (required 4 byte alignment but found 1) | ||
|
||
error[E0080]: evaluation of constant value failed | ||
--> $SRC_DIR/core/src/ptr/mod.rs:LL:COL | ||
| | ||
LL | copy_nonoverlapping(src, tmp.as_mut_ptr(), 1); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | | ||
| accessing memory with alignment 1, but alignment 4 is required | ||
| inside `std::ptr::read::<u32>` at $SRC_DIR/core/src/ptr/mod.rs:LL:COL | ||
| | ||
::: $SRC_DIR/core/src/ptr/const_ptr.rs:LL:COL | ||
| | ||
LL | unsafe { read(self) } | ||
| ---------- inside `ptr::const_ptr::<impl *const u32>::read` at $SRC_DIR/core/src/ptr/const_ptr.rs:LL:COL | ||
| | ||
::: $DIR/detect-extra-ub.rs:39:9 | ||
| | ||
LL | ptr.read(); | ||
| ---------- inside `INNER` at $DIR/detect-extra-ub.rs:39:9 | ||
|
||
error: any use of this value will cause an error | ||
--> $DIR/detect-extra-ub.rs:32:5 | ||
| | ||
LL | const UNALIGNED_READ: () = { | ||
| ------------------------ | ||
LL | INNER; | ||
| ^^^^^ referenced constant has errors | ||
| | ||
= note: `#[deny(const_err)]` on by default | ||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! | ||
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800> | ||
|
||
error: aborting due to 6 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0080`. | ||
Future incompatibility report: Future breakage diagnostic: | ||
error: any use of this value will cause an error | ||
--> $DIR/detect-extra-ub.rs:32:5 | ||
| | ||
LL | const UNALIGNED_READ: () = { | ||
| ------------------------ | ||
LL | INNER; | ||
| ^^^^^ referenced constant has errors | ||
| | ||
= note: `#[deny(const_err)]` on by default | ||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! | ||
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800> | ||
|