forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
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#118408 - RalfJung:aggregate-assign-uninit, r=…
…saethlin miri: add test checking that aggregate assignments reset memory to uninit Also, `write_aggregate` is really just a helper for evaluating `Aggregate` rvalues, so it should be in `step.rs`, not `place.rs`. Also factor out `Repeat` rvalues into their own function while we are at it. r? `@saethlin` Fixes rust-lang/miri#3195
- Loading branch information
Showing
4 changed files
with
114 additions
and
60 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
27 changes: 27 additions & 0 deletions
27
src/tools/miri/tests/fail/uninit-after-aggregate-assign.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 @@ | ||
#![feature(core_intrinsics)] | ||
#![feature(custom_mir)] | ||
|
||
use std::intrinsics::mir::*; | ||
use std::ptr; | ||
|
||
#[repr(C)] | ||
struct S(u8, u16); | ||
|
||
#[custom_mir(dialect = "runtime", phase = "optimized")] | ||
fn main() { | ||
mir! { | ||
let s: S; | ||
let sptr; | ||
let sptr2; | ||
let _val; | ||
{ | ||
sptr = ptr::addr_of_mut!(s); | ||
sptr2 = sptr as *mut [u8; 4]; | ||
*sptr2 = [0; 4]; | ||
*sptr = S(0, 0); // should reset the padding | ||
_val = *sptr2; // should hence be UB | ||
//~^ERROR: encountered uninitialized memory | ||
Return() | ||
} | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
src/tools/miri/tests/fail/uninit-after-aggregate-assign.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: constructing invalid value at [1]: encountered uninitialized memory, but expected an integer | ||
--> $DIR/uninit-after-aggregate-assign.rs:LL:CC | ||
| | ||
LL | _val = *sptr2; // should hence be UB | ||
| ^^^^^^^^^^^^^ constructing invalid value at [1]: encountered uninitialized memory, but expected an integer | ||
| | ||
= 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 $DIR/uninit-after-aggregate-assign.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 | ||
|