forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
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#100064 - RalfJung:disaligned, r=petrochenkov
fix is_disaligned logic for nested packed structs rust-lang#83605 broke the `is_disaligned` logic by bailing out of the loop in `is_within_packed` early. This PR fixes that problem and adds suitable tests. Fixes rust-lang#99838
- Loading branch information
Showing
4 changed files
with
162 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// run-pass | ||
#![feature(bench_black_box)] | ||
use std::hint; | ||
|
||
struct U16(u16); | ||
|
||
impl Drop for U16 { | ||
fn drop(&mut self) { | ||
// Prevent LLVM from optimizing away our alignment check. | ||
assert!(hint::black_box(self as *mut U16 as usize) % 2 == 0); | ||
} | ||
} | ||
|
||
struct HasDrop; | ||
|
||
impl Drop for HasDrop { | ||
fn drop(&mut self) {} | ||
} | ||
|
||
struct Wrapper { | ||
_a: U16, | ||
b: HasDrop, | ||
} | ||
|
||
#[repr(packed)] | ||
struct Misalign(u8, Wrapper); | ||
|
||
fn main() { | ||
let m = Misalign( | ||
0, | ||
Wrapper { | ||
_a: U16(10), | ||
b: HasDrop, | ||
}, | ||
); | ||
// Put it somewhere definitely even (so the `a` field is definitely at an odd address). | ||
let m: ([u16; 0], Misalign) = ([], m); | ||
// Move out one field, so we run custom per-field drop logic below. | ||
let _x = m.1.1.b; | ||
} |
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