forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#133681 - RalfJung:niches, r=wesleywiser
improve TagEncoding::Niche docs, sanity check, and UB checks Turns out the `niche_variants` range can actually contain the `untagged_variant`. We should report this as UB in Miri, so this PR implements that. Also rename `partially_check_layout` to `layout_sanity_check` for better consistency with how similar functions are called in other parts of the compiler. Turns out my adjustments to the transmutation logic also fix rust-lang#126267.
- Loading branch information
Showing
13 changed files
with
177 additions
and
92 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
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
27 changes: 27 additions & 0 deletions
27
src/tools/miri/tests/fail/enum-untagged-variant-invalid-encoding.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,27 @@ | ||
// Validity makes this fail at the wrong place. | ||
//@compile-flags: -Zmiri-disable-validation | ||
use std::mem; | ||
|
||
// This enum has untagged variant idx 1, with niche_variants being 0..=2 | ||
// and niche_start being 2. | ||
// That means the untagged variants is in the niche variant range! | ||
// However, using the corresponding value (2+1 = 3) is not a valid encoding of this variant. | ||
#[derive(Copy, Clone, PartialEq)] | ||
enum Foo { | ||
Var1, | ||
Var2(bool), | ||
Var3, | ||
} | ||
|
||
fn main() { | ||
unsafe { | ||
assert!(Foo::Var2(false) == mem::transmute(0u8)); | ||
assert!(Foo::Var2(true) == mem::transmute(1u8)); | ||
assert!(Foo::Var1 == mem::transmute(2u8)); | ||
assert!(Foo::Var3 == mem::transmute(4u8)); | ||
|
||
let invalid: Foo = mem::transmute(3u8); | ||
assert!(matches!(invalid, Foo::Var2(_))); | ||
//~^ ERROR: invalid tag | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
src/tools/miri/tests/fail/enum-untagged-variant-invalid-encoding.stderr
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,15 @@ | ||
error: Undefined Behavior: enum value has invalid tag: 0x03 | ||
--> tests/fail/enum-untagged-variant-invalid-encoding.rs:LL:CC | ||
| | ||
LL | assert!(matches!(invalid, Foo::Var2(_))); | ||
| ^^^^^^^ enum value has invalid tag: 0x03 | ||
| | ||
= help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior | ||
= help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information | ||
= note: BACKTRACE: | ||
= note: inside `main` at tests/fail/enum-untagged-variant-invalid-encoding.rs:LL:CC | ||
|
||
note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace | ||
|
||
error: aborting due to 1 previous error | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.