@@ -20,7 +20,7 @@ pub type uint32_t = u32;
20
20
pub type uint64_t = u64 ;
21
21
22
22
cfg_if ! {
23
- if #[ cfg( all( target_arch = "aarch64" , not( any ( target_os = "windows" , target_os = "macos" , target_os = "ios" , target_os = "tvos" , target_os = "watchos" ) ) ) ) ] {
23
+ if #[ cfg( all( target_arch = "aarch64" , not( target_os = "windows" ) ) ) ] {
24
24
// This introduces partial support for FFI with __int128 and
25
25
// equivalent types on platforms where Rust's definition is validated
26
26
// to match the standard C ABI of that platform.
@@ -59,43 +59,41 @@ cfg_if! {
59
59
/// C __uint128_t (alternate name for [__uint128][])
60
60
pub type __uint128_t = u128 ;
61
61
62
- macro_rules! static_assert_eq {
63
- ( $a: expr, $b: expr) => {
64
- const _: [ ( ) ; $a] = [ ( ) ; $b] ;
65
- } ;
66
- }
62
+ cfg_if! {
63
+ if #[ cfg( libc_underscore_const_names) ] {
64
+ macro_rules! static_assert_eq {
65
+ ( $a: expr, $b: expr) => {
66
+ const _: [ ( ) ; $a] = [ ( ) ; $b] ;
67
+ } ;
68
+ }
67
69
68
- // NOTE: if you add more platforms to here, you may need to cfg
69
- // these consts. They should always match the platform's values
70
- // for `sizeof(__int128)` and `_Alignof(__int128)`.
71
- const _SIZE_128: usize = 16 ;
72
- const _ALIGN_128: usize = 16 ;
70
+ // NOTE: if you add more platforms to here, you may need to cfg
71
+ // these consts. They should always match the platform's values
72
+ // for `sizeof(__int128)` and `_Alignof(__int128)`.
73
+ const _SIZE_128: usize = 16 ;
74
+ const _ALIGN_128: usize = 16 ;
73
75
74
- // Since Rust doesn't officially guarantee that these types
75
- // have compatible ABIs, we const assert that these values have the
76
- // known size/align of the target platform's libc. If rustc ever
77
- // tries to regress things, it will cause a compilation error.
78
- //
79
- // This isn't a bullet-proof solution because e.g. it doesn't
80
- // catch the fact that llvm and gcc disagree on how x64 __int128
81
- // is actually *passed* on the stack (clang underaligns it for
82
- // the same reason that rustc *never* properly aligns it).
83
- // FIXME: temporarily disabled because of a ctest2 bug.
84
- // static_assert_eq!(core::mem::size_of::<__int128>(), _SIZE_128);
85
- // static_assert_eq!(core::mem::align_of::<__int128>(), _ALIGN_128);
76
+ // Since Rust doesn't officially guarantee that these types
77
+ // have compatible ABIs, we const assert that these values have the
78
+ // known size/align of the target platform's libc. If rustc ever
79
+ // tries to regress things, it will cause a compilation error.
80
+ //
81
+ // This isn't a bullet-proof solution because e.g. it doesn't
82
+ // catch the fact that llvm and gcc disagree on how x64 __int128
83
+ // is actually *passed* on the stack (clang underaligns it for
84
+ // the same reason that rustc *never* properly aligns it).
85
+ static_assert_eq!( core:: mem:: size_of:: <__int128>( ) , _SIZE_128) ;
86
+ static_assert_eq!( core:: mem:: align_of:: <__int128>( ) , _ALIGN_128) ;
86
87
87
- // static_assert_eq!(core::mem::size_of::<__uint128>(), _SIZE_128);
88
- // static_assert_eq!(core::mem::align_of::<__uint128>(), _ALIGN_128);
88
+ static_assert_eq!( core:: mem:: size_of:: <__uint128>( ) , _SIZE_128) ;
89
+ static_assert_eq!( core:: mem:: align_of:: <__uint128>( ) , _ALIGN_128) ;
89
90
90
- // static_assert_eq!(core::mem::size_of::<__int128_t>(), _SIZE_128);
91
- // static_assert_eq!(core::mem::align_of::<__int128_t>(), _ALIGN_128);
91
+ static_assert_eq!( core:: mem:: size_of:: <__int128_t>( ) , _SIZE_128) ;
92
+ static_assert_eq!( core:: mem:: align_of:: <__int128_t>( ) , _ALIGN_128) ;
92
93
93
- // static_assert_eq!(core::mem::size_of::<__uint128_t>(), _SIZE_128);
94
- // static_assert_eq!(core::mem::align_of::<__uint128_t>(), _ALIGN_128);
95
- } else if #[ cfg( all( target_arch = "aarch64" , any( target_os = "macos" , target_os = "ios" , target_os = "tvos" , target_os = "watchos" ) ) ) ] {
96
- /// /// C `__int128_t`
97
- pub type __int128_t = i128 ;
98
- /// /// C `__uint128_t`
99
- pub type __uint128_t = u128 ;
94
+ static_assert_eq!( core:: mem:: size_of:: <__uint128_t>( ) , _SIZE_128) ;
95
+ static_assert_eq!( core:: mem:: align_of:: <__uint128_t>( ) , _ALIGN_128) ;
96
+ }
97
+ }
100
98
}
101
99
}
0 commit comments