-
Notifications
You must be signed in to change notification settings - Fork 723
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1477 from emilio/zsa-align
codegen: Make zero-sized arrays affect alignment.
- Loading branch information
Showing
10 changed files
with
141 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
/* automatically generated by rust-bindgen */ | ||
|
||
#![allow( | ||
dead_code, | ||
non_snake_case, | ||
non_camel_case_types, | ||
non_upper_case_globals | ||
)] | ||
|
||
#[repr(C)] | ||
#[derive(Default)] | ||
pub struct __IncompleteArrayField<T>(::std::marker::PhantomData<T>, [T; 0]); | ||
impl<T> __IncompleteArrayField<T> { | ||
#[inline] | ||
pub fn new() -> Self { | ||
__IncompleteArrayField(::std::marker::PhantomData, []) | ||
} | ||
#[inline] | ||
pub unsafe fn as_ptr(&self) -> *const T { | ||
::std::mem::transmute(self) | ||
} | ||
#[inline] | ||
pub unsafe fn as_mut_ptr(&mut self) -> *mut T { | ||
::std::mem::transmute(self) | ||
} | ||
#[inline] | ||
pub unsafe fn as_slice(&self, len: usize) -> &[T] { | ||
::std::slice::from_raw_parts(self.as_ptr(), len) | ||
} | ||
#[inline] | ||
pub unsafe fn as_mut_slice(&mut self, len: usize) -> &mut [T] { | ||
::std::slice::from_raw_parts_mut(self.as_mut_ptr(), len) | ||
} | ||
} | ||
impl<T> ::std::fmt::Debug for __IncompleteArrayField<T> { | ||
fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { | ||
fmt.write_str("__IncompleteArrayField") | ||
} | ||
} | ||
impl<T> ::std::clone::Clone for __IncompleteArrayField<T> { | ||
#[inline] | ||
fn clone(&self) -> Self { | ||
Self::new() | ||
} | ||
} | ||
#[repr(C)] | ||
#[derive(Debug, Default)] | ||
pub struct dm_deps { | ||
pub count: ::std::os::raw::c_uint, | ||
pub filler: ::std::os::raw::c_uint, | ||
pub device: __IncompleteArrayField<::std::os::raw::c_ulonglong>, | ||
} | ||
#[test] | ||
fn bindgen_test_layout_dm_deps() { | ||
assert_eq!( | ||
::std::mem::size_of::<dm_deps>(), | ||
8usize, | ||
concat!("Size of: ", stringify!(dm_deps)) | ||
); | ||
assert_eq!( | ||
::std::mem::align_of::<dm_deps>(), | ||
8usize, | ||
concat!("Alignment of ", stringify!(dm_deps)) | ||
); | ||
assert_eq!( | ||
unsafe { &(*(::std::ptr::null::<dm_deps>())).count as *const _ as usize }, | ||
0usize, | ||
concat!( | ||
"Offset of field: ", | ||
stringify!(dm_deps), | ||
"::", | ||
stringify!(count) | ||
) | ||
); | ||
assert_eq!( | ||
unsafe { &(*(::std::ptr::null::<dm_deps>())).filler as *const _ as usize }, | ||
4usize, | ||
concat!( | ||
"Offset of field: ", | ||
stringify!(dm_deps), | ||
"::", | ||
stringify!(filler) | ||
) | ||
); | ||
assert_eq!( | ||
unsafe { &(*(::std::ptr::null::<dm_deps>())).device as *const _ as usize }, | ||
8usize, | ||
concat!( | ||
"Offset of field: ", | ||
stringify!(dm_deps), | ||
"::", | ||
stringify!(device) | ||
) | ||
); | ||
} |
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,5 @@ | ||
struct dm_deps { | ||
unsigned count; | ||
unsigned filler; | ||
unsigned long long device[0]; | ||
}; |