forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
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#113343 - saethlin:looser-alignment, r=RalfJung
Update the alignment checks to match rust-lang/reference#1387 Previously, we had a special case to not check `Rvalue::AddressOf` in this pass because we weren't quite sure if pointers needed to be aligned in the Place passed to it: rust-lang#112026 Since rust-lang/reference#1387 merged, this PR updates this pass to match. The behavior of the check is nearly unchanged, except we also avoid inserting a check for creating references. Most of the changes in this PR are cleanup and new tests.
- Loading branch information
Showing
10 changed files
with
142 additions
and
58 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// run-fail | ||
// ignore-wasm32-bare: No panic messages | ||
// ignore-i686-pc-windows-msvc: #112480 | ||
// compile-flags: -C debug-assertions | ||
// error-pattern: misaligned pointer dereference: address must be a multiple of 0x4 but is | ||
|
||
fn main() { | ||
let mut x = [0u32; 2]; | ||
let ptr = x.as_mut_ptr(); | ||
unsafe { | ||
let _v = *(ptr.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,29 @@ | ||
// run-pass | ||
// compile-flags: -C debug-assertions | ||
|
||
#![feature(strict_provenance, pointer_is_aligned)] | ||
|
||
#[repr(packed)] | ||
struct Misaligner { | ||
_head: u8, | ||
tail: u64, | ||
} | ||
|
||
fn main() { | ||
let memory = [Misaligner { _head: 0, tail: 0}, Misaligner { _head: 0, tail: 0}]; | ||
// Test that we can use addr_of! to get the address of a packed member which according to its | ||
// type is not aligned, but because it is a projection from a packed type is a valid place. | ||
let ptr0 = std::ptr::addr_of!(memory[0].tail); | ||
let ptr1 = std::ptr::addr_of!(memory[0].tail); | ||
// Even if ptr0 happens to be aligned by chance, ptr1 is not. | ||
assert!(!ptr0.is_aligned() || !ptr1.is_aligned()); | ||
|
||
// And also test that we can get the addr of a packed struct then do a member read from it. | ||
unsafe { | ||
let ptr = std::ptr::addr_of!(memory[0]); | ||
let _tail = (*ptr).tail; | ||
|
||
let ptr = std::ptr::addr_of!(memory[1]); | ||
let _tail = (*ptr).tail; | ||
} | ||
} |
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,16 @@ | ||
// run-pass | ||
// compile-flags: -C debug-assertions | ||
|
||
#[repr(align(8))] | ||
struct Misalignment { | ||
a: u8, | ||
} | ||
|
||
fn main() { | ||
let mem = 0u64; | ||
let ptr = &mem as *const u64 as *const Misalignment; | ||
unsafe { | ||
let ptr = ptr.byte_add(1); | ||
let _ref: &u8 = &(*ptr).a; | ||
} | ||
} |
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-pass | ||
// compile-flags: -C debug-assertions | ||
|
||
fn main() { | ||
let ptr = 1 as *const u16; | ||
unsafe { | ||
let _ = *ptr; | ||
} | ||
} |
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 @@ | ||
// run-fail | ||
// ignore-wasm32-bare: No panic messages | ||
// ignore-i686-pc-windows-msvc: #112480 | ||
// compile-flags: -C debug-assertions | ||
// error-pattern: misaligned pointer dereference: address must be a multiple of 0x4 but is | ||
|
||
fn main() { | ||
let x = [0u32; 2]; | ||
let ptr = x.as_ptr(); | ||
let mut dest = 0u32; | ||
let dest_ptr = &mut dest as *mut u32; | ||
unsafe { | ||
*dest_ptr = *(ptr.byte_add(1)); | ||
} | ||
} |