forked from rust-lang/rust-bindgen
-
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.
Support #[repr(packed(N))] on Rust 1.33+
Fixes rust-lang#537.
- Loading branch information
Showing
9 changed files
with
222 additions
and
21 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,151 @@ | ||
/* automatically generated by rust-bindgen */ | ||
|
||
#![allow( | ||
dead_code, | ||
non_snake_case, | ||
non_camel_case_types, | ||
non_upper_case_globals | ||
)] | ||
#![cfg(feature = "nightly")] | ||
|
||
/// This should not be opaque; we can see the attributes and can pack the | ||
/// struct. | ||
#[repr(C, packed)] | ||
#[derive(Debug, Default, Copy, Clone)] | ||
pub struct AlignedToOne { | ||
pub i: ::std::os::raw::c_int, | ||
} | ||
#[test] | ||
fn bindgen_test_layout_AlignedToOne() { | ||
assert_eq!( | ||
::std::mem::size_of::<AlignedToOne>(), | ||
4usize, | ||
concat!("Size of: ", stringify!(AlignedToOne)) | ||
); | ||
assert_eq!( | ||
::std::mem::align_of::<AlignedToOne>(), | ||
1usize, | ||
concat!("Alignment of ", stringify!(AlignedToOne)) | ||
); | ||
assert_eq!( | ||
unsafe { &(*(::std::ptr::null::<AlignedToOne>())).i as *const _ as usize }, | ||
0usize, | ||
concat!( | ||
"Offset of field: ", | ||
stringify!(AlignedToOne), | ||
"::", | ||
stringify!(i) | ||
) | ||
); | ||
} | ||
/// This should be be packed because Rust 1.33 has `#[repr(packed(N))]`. | ||
#[repr(C, packed(2))] | ||
#[derive(Debug, Default, Copy, Clone)] | ||
pub struct AlignedToTwo { | ||
pub i: ::std::os::raw::c_int, | ||
} | ||
#[test] | ||
fn bindgen_test_layout_AlignedToTwo() { | ||
assert_eq!( | ||
::std::mem::size_of::<AlignedToTwo>(), | ||
4usize, | ||
concat!("Size of: ", stringify!(AlignedToTwo)) | ||
); | ||
assert_eq!( | ||
::std::mem::align_of::<AlignedToTwo>(), | ||
2usize, | ||
concat!("Alignment of ", stringify!(AlignedToTwo)) | ||
); | ||
assert_eq!( | ||
unsafe { &(*(::std::ptr::null::<AlignedToTwo>())).i as *const _ as usize }, | ||
0usize, | ||
concat!( | ||
"Offset of field: ", | ||
stringify!(AlignedToTwo), | ||
"::", | ||
stringify!(i) | ||
) | ||
); | ||
} | ||
/// This should not be opaque because although `libclang` doesn't give us the | ||
/// `#pragma pack(1)`, we can detect that alignment is 1 and add | ||
/// `#[repr(packed)]` to the struct ourselves. | ||
#[repr(C, packed)] | ||
#[derive(Debug, Default, Copy, Clone)] | ||
pub struct PackedToOne { | ||
pub x: ::std::os::raw::c_int, | ||
pub y: ::std::os::raw::c_int, | ||
} | ||
#[test] | ||
fn bindgen_test_layout_PackedToOne() { | ||
assert_eq!( | ||
::std::mem::size_of::<PackedToOne>(), | ||
8usize, | ||
concat!("Size of: ", stringify!(PackedToOne)) | ||
); | ||
assert_eq!( | ||
::std::mem::align_of::<PackedToOne>(), | ||
1usize, | ||
concat!("Alignment of ", stringify!(PackedToOne)) | ||
); | ||
assert_eq!( | ||
unsafe { &(*(::std::ptr::null::<PackedToOne>())).x as *const _ as usize }, | ||
0usize, | ||
concat!( | ||
"Offset of field: ", | ||
stringify!(PackedToOne), | ||
"::", | ||
stringify!(x) | ||
) | ||
); | ||
assert_eq!( | ||
unsafe { &(*(::std::ptr::null::<PackedToOne>())).y as *const _ as usize }, | ||
4usize, | ||
concat!( | ||
"Offset of field: ", | ||
stringify!(PackedToOne), | ||
"::", | ||
stringify!(y) | ||
) | ||
); | ||
} | ||
/// This should be be packed because Rust 1.33 has `#[repr(packed(N))]`. | ||
#[repr(C, packed(2))] | ||
#[derive(Debug, Default, Copy, Clone)] | ||
pub struct PackedToTwo { | ||
pub x: ::std::os::raw::c_int, | ||
pub y: ::std::os::raw::c_int, | ||
} | ||
#[test] | ||
fn bindgen_test_layout_PackedToTwo() { | ||
assert_eq!( | ||
::std::mem::size_of::<PackedToTwo>(), | ||
8usize, | ||
concat!("Size of: ", stringify!(PackedToTwo)) | ||
); | ||
assert_eq!( | ||
::std::mem::align_of::<PackedToTwo>(), | ||
2usize, | ||
concat!("Alignment of ", stringify!(PackedToTwo)) | ||
); | ||
assert_eq!( | ||
unsafe { &(*(::std::ptr::null::<PackedToTwo>())).x as *const _ as usize }, | ||
0usize, | ||
concat!( | ||
"Offset of field: ", | ||
stringify!(PackedToTwo), | ||
"::", | ||
stringify!(x) | ||
) | ||
); | ||
assert_eq!( | ||
unsafe { &(*(::std::ptr::null::<PackedToTwo>())).y as *const _ as usize }, | ||
4usize, | ||
concat!( | ||
"Offset of field: ", | ||
stringify!(PackedToTwo), | ||
"::", | ||
stringify!(y) | ||
) | ||
); | ||
} |
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,34 @@ | ||
// bindgen-flags: --raw-line '#![cfg(feature = "nightly")]' --rust-target 1.33 | ||
|
||
/// This should not be opaque; we can see the attributes and can pack the | ||
/// struct. | ||
struct AlignedToOne { | ||
int i; | ||
} __attribute__ ((packed,aligned(1))); | ||
|
||
/// This should be be packed because Rust 1.33 has `#[repr(packed(N))]`. | ||
struct AlignedToTwo { | ||
int i; | ||
} __attribute__ ((packed,aligned(2))); | ||
|
||
#pragma pack(1) | ||
|
||
/// This should not be opaque because although `libclang` doesn't give us the | ||
/// `#pragma pack(1)`, we can detect that alignment is 1 and add | ||
/// `#[repr(packed)]` to the struct ourselves. | ||
struct PackedToOne { | ||
int x; | ||
int y; | ||
}; | ||
|
||
#pragma pack() | ||
|
||
#pragma pack(2) | ||
|
||
/// This should be be packed because Rust 1.33 has `#[repr(packed(N))]`. | ||
struct PackedToTwo { | ||
int x; | ||
int y; | ||
}; | ||
|
||
#pragma pack() |
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