2023-05-03 01:37:07 +00:00
// SPDX-License-Identifier: CC0-1.0
2019-02-18 12:31:30 +00:00
#![ allow(non_camel_case_types) ]
2019-02-18 14:47:11 +00:00
2019-02-18 12:31:30 +00:00
pub type c_int = i32 ;
pub type c_uchar = u8 ;
pub type c_uint = u32 ;
2020-04-29 19:13:22 +00:00
pub type size_t = usize ;
2019-06-12 14:38:30 +00:00
/// This might not match C's `c_char` exactly.
/// The way we use it makes it fine either way but this type shouldn't be used outside of the library.
2019-05-28 13:31:01 +00:00
pub type c_char = i8 ;
2019-02-18 14:47:11 +00:00
2021-09-14 13:33:02 +00:00
pub use core ::ffi ::c_void ;
2019-09-14 18:09:23 +00:00
2020-08-28 10:58:07 +00:00
/// A type that is as aligned as the biggest alignment for fundamental types in C
/// since C11 that means as aligned as `max_align_t` is.
/// the exact size/alignment is unspecified.
// 16 matches is as big as the biggest alignment in any arch that rust currently supports https://github.com/rust-lang/rust/blob/2c31b45ae878b821975c4ebd94cc1e49f6073fd0/library/std/src/sys_common/alloc.rs
#[ repr(align(16)) ]
#[ derive(Default, Copy, Clone) ]
2024-03-25 22:32:08 +00:00
#[ allow(dead_code) ] // We never access the inner data directly, only by way of a pointer.
2020-08-28 10:58:07 +00:00
pub struct AlignedType ( [ u8 ; 16 ] ) ;
impl AlignedType {
pub fn zeroed ( ) -> Self {
AlignedType ( [ 0 u8 ; 16 ] )
}
2021-12-23 19:30:43 +00:00
/// A static zeroed out AlignedType for use in static assignments of [AlignedType; _]
2022-01-05 15:56:49 +00:00
pub const ZERO : AlignedType = AlignedType ( [ 0 u8 ; 16 ] ) ;
2021-12-23 19:30:43 +00:00
}
2021-12-04 04:04:13 +00:00
2021-09-14 14:40:16 +00:00
#[ cfg(all(feature = " alloc " , not(rust_secp_no_symbol_renaming))) ]
2021-09-14 13:33:02 +00:00
pub ( crate ) const ALIGN_TO : usize = core ::mem ::align_of ::< AlignedType > ( ) ;
2020-08-28 10:58:07 +00:00
2019-09-14 18:09:23 +00:00
#[ cfg(test) ]
mod tests {
2020-08-28 10:58:07 +00:00
extern crate libc ;
2019-09-14 18:09:23 +00:00
use std ::any ::TypeId ;
2021-01-20 14:55:48 +00:00
use std ::mem ;
use std ::os ::raw ;
2021-09-14 13:31:22 +00:00
use crate ::{ types , AlignedType } ;
2019-09-14 18:09:23 +00:00
#[ test ]
fn verify_types ( ) {
assert_eq! ( TypeId ::of ::< types ::c_int > ( ) , TypeId ::of ::< raw ::c_int > ( ) ) ;
assert_eq! ( TypeId ::of ::< types ::c_uchar > ( ) , TypeId ::of ::< raw ::c_uchar > ( ) ) ;
assert_eq! ( TypeId ::of ::< types ::c_uint > ( ) , TypeId ::of ::< raw ::c_uint > ( ) ) ;
assert_eq! ( TypeId ::of ::< types ::c_char > ( ) , TypeId ::of ::< raw ::c_char > ( ) ) ;
2020-08-28 10:58:07 +00:00
assert! ( mem ::align_of ::< AlignedType > ( ) > = mem ::align_of ::< self ::libc ::max_align_t > ( ) ) ;
2019-09-14 18:09:23 +00:00
}
2019-10-21 12:15:19 +00:00
}
2020-04-29 19:15:40 +00:00
#[ doc(hidden) ]
#[ cfg(target_arch = " wasm32 " ) ]
pub fn sanity_checks_for_wasm ( ) {
2021-01-20 14:55:48 +00:00
use core ::mem ::{ align_of , size_of } ;
2020-04-29 19:15:40 +00:00
extern " C " {
pub static WASM32_INT_SIZE : c_uchar ;
pub static WASM32_INT_ALIGN : c_uchar ;
pub static WASM32_UNSIGNED_INT_SIZE : c_uchar ;
pub static WASM32_UNSIGNED_INT_ALIGN : c_uchar ;
pub static WASM32_SIZE_T_SIZE : c_uchar ;
pub static WASM32_SIZE_T_ALIGN : c_uchar ;
pub static WASM32_UNSIGNED_CHAR_SIZE : c_uchar ;
pub static WASM32_UNSIGNED_CHAR_ALIGN : c_uchar ;
pub static WASM32_PTR_SIZE : c_uchar ;
pub static WASM32_PTR_ALIGN : c_uchar ;
}
unsafe {
assert_eq! ( size_of ::< c_int > ( ) , WASM32_INT_SIZE as usize ) ;
assert_eq! ( align_of ::< c_int > ( ) , WASM32_INT_ALIGN as usize ) ;
assert_eq! ( size_of ::< c_uint > ( ) , WASM32_UNSIGNED_INT_SIZE as usize ) ;
assert_eq! ( align_of ::< c_uint > ( ) , WASM32_UNSIGNED_INT_ALIGN as usize ) ;
assert_eq! ( size_of ::< size_t > ( ) , WASM32_SIZE_T_SIZE as usize ) ;
assert_eq! ( align_of ::< size_t > ( ) , WASM32_SIZE_T_ALIGN as usize ) ;
assert_eq! ( size_of ::< c_uchar > ( ) , WASM32_UNSIGNED_CHAR_SIZE as usize ) ;
assert_eq! ( align_of ::< c_uchar > ( ) , WASM32_UNSIGNED_CHAR_ALIGN as usize ) ;
assert_eq! ( size_of ::< * const ( ) > ( ) , WASM32_PTR_SIZE as usize ) ;
assert_eq! ( align_of ::< * const ( ) > ( ) , WASM32_PTR_ALIGN as usize ) ;
}
}