blob: 3ca65609613eabe9f6f7d2cb771d73064c6deb71 [file] [log] [blame]
Michael Forster82c02d32022-05-20 21:47:33 -07001// Part of the Crubit project, under the Apache License v2.0 with LLVM
2// Exceptions. See /LICENSE for license information.
3// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4
Lukasz Anforowicz19e057d2022-10-28 12:03:23 -07005// Automatically @generated Rust bindings for the following C++ target:
Michael Forster82c02d32022-05-20 21:47:33 -07006// //rs_bindings_from_cc/test/golden:bitfields_cc
Devin Jeanpierre6ed0f602023-03-01 17:22:54 -08007// Features: experimental, supported
Lukasz Anforowicz19e057d2022-10-28 12:03:23 -07008
Devin Jeanpierre43356432023-01-13 12:39:02 -08009#![rustfmt::skip]
10#![feature(custom_inner_attributes, negative_impls, type_alias_impl_trait)]
Lukasz Anforowicz16889da2022-10-06 13:37:48 -070011#![allow(stable_features)]
Googler61afe912023-03-03 13:59:15 -080012#![no_std]
Lukasz Anforowicz4bb78a72023-03-06 14:10:37 -080013#![allow(improper_ctypes)]
Michael Forster82c02d32022-05-20 21:47:33 -070014#![allow(non_camel_case_types)]
15#![allow(non_snake_case)]
16#![allow(non_upper_case_globals)]
17#![deny(warnings)]
18
Michael Forster82c02d32022-05-20 21:47:33 -070019// Part of the Crubit project, under the Apache License v2.0 with LLVM
20// Exceptions. See /LICENSE for license information.
21// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
22
Devin Jeanpierrecd5ebf32022-07-08 05:31:55 -070023#[::ctor::recursively_pinned]
Michael Forster82c02d32022-05-20 21:47:33 -070024#[repr(C, align(4))]
25pub struct WithBitfields {
26 // f1 : 2 bits
Googlerbed0a2a2023-03-01 11:53:43 -080027 __bitfields0: [::core::mem::MaybeUninit<u8>; 1],
Michael Forster82c02d32022-05-20 21:47:33 -070028 pub f2: i32,
29 // f3 : 4 bits
30 // f4 : 8 bits
31 // : 45 bits
Googlerbed0a2a2023-03-01 11:53:43 -080032 __bitfields2: [::core::mem::MaybeUninit<u8>; 10],
Michael Forster82c02d32022-05-20 21:47:33 -070033 pub f5: i32,
34 // f6 : 23 bits
Googlerbed0a2a2023-03-01 11:53:43 -080035 __bitfields4: [::core::mem::MaybeUninit<u8>; 3],
36 pub(crate) f7: [::core::mem::MaybeUninit<u8>; 1],
Michael Forster82c02d32022-05-20 21:47:33 -070037 // f8 : 2 bits
Googlerbed0a2a2023-03-01 11:53:43 -080038 __bitfields6: [::core::mem::MaybeUninit<u8>; 1],
Michael Forster82c02d32022-05-20 21:47:33 -070039}
40forward_declare::unsafe_define!(forward_declare::symbol!("WithBitfields"), crate::WithBitfields);
41impl WithBitfields {
42 pub fn f7(&self) -> &u8 {
43 unsafe { &*(&self.f7 as *const _ as *const u8) }
44 }
45}
46
Devin Jeanpierrecd5ebf32022-07-08 05:31:55 -070047impl ::ctor::CtorNew<()> for WithBitfields {
48 type CtorType = impl ::ctor::Ctor<Output = Self>;
Devin Jeanpierre56413252022-06-02 18:48:24 -070049 #[inline(always)]
50 fn ctor_new(args: ()) -> Self::CtorType {
51 let () = args;
Devin Jeanpierre93927e82022-08-01 14:05:54 -070052 unsafe {
Googlerbed0a2a2023-03-01 11:53:43 -080053 ::ctor::FnCtor::new(
54 move |dest: ::core::pin::Pin<&mut ::core::mem::MaybeUninit<Self>>| {
55 crate::detail::__rust_thunk___ZN13WithBitfieldsC1Ev(
56 ::core::pin::Pin::into_inner_unchecked(dest),
57 );
58 },
59 )
Devin Jeanpierre93927e82022-08-01 14:05:54 -070060 }
Devin Jeanpierre56413252022-06-02 18:48:24 -070061 }
62}
Michael Forster82c02d32022-05-20 21:47:33 -070063
Felipe de A. Mello Pereira6f3cf162023-01-16 00:48:25 -080064impl<'b> ::ctor::CtorNew<&'b Self> for WithBitfields {
Devin Jeanpierre83cb2dc2022-07-15 01:50:28 -070065 type CtorType = impl ::ctor::Ctor<Output = Self> + ::ctor::Captures<'b>;
Devin Jeanpierre56413252022-06-02 18:48:24 -070066 #[inline(always)]
Felipe de A. Mello Pereira6f3cf162023-01-16 00:48:25 -080067 fn ctor_new(args: &'b Self) -> Self::CtorType {
Devin Jeanpierre56413252022-06-02 18:48:24 -070068 let __param_0 = args;
Devin Jeanpierre93927e82022-08-01 14:05:54 -070069 unsafe {
Googlerbed0a2a2023-03-01 11:53:43 -080070 ::ctor::FnCtor::new(
71 move |dest: ::core::pin::Pin<&mut ::core::mem::MaybeUninit<Self>>| {
72 crate::detail::__rust_thunk___ZN13WithBitfieldsC1ERKS_(
73 ::core::pin::Pin::into_inner_unchecked(dest),
74 __param_0,
75 );
76 },
77 )
Devin Jeanpierre93927e82022-08-01 14:05:54 -070078 }
Devin Jeanpierre56413252022-06-02 18:48:24 -070079 }
80}
Felipe de A. Mello Pereira6f3cf162023-01-16 00:48:25 -080081impl<'b> ::ctor::CtorNew<(&'b Self,)> for WithBitfields {
Devin Jeanpierre83cb2dc2022-07-15 01:50:28 -070082 type CtorType = impl ::ctor::Ctor<Output = Self> + ::ctor::Captures<'b>;
Devin Jeanpierre56413252022-06-02 18:48:24 -070083 #[inline(always)]
Felipe de A. Mello Pereira6f3cf162023-01-16 00:48:25 -080084 fn ctor_new(args: (&'b Self,)) -> Self::CtorType {
Devin Jeanpierre56413252022-06-02 18:48:24 -070085 let (arg,) = args;
Felipe de A. Mello Pereira6f3cf162023-01-16 00:48:25 -080086 <Self as ::ctor::CtorNew<&'b Self>>::ctor_new(arg)
Devin Jeanpierre56413252022-06-02 18:48:24 -070087 }
88}
Michael Forster82c02d32022-05-20 21:47:33 -070089
Felipe de A. Mello Pereira6f3cf162023-01-16 00:48:25 -080090impl<'b> ::ctor::CtorNew<::ctor::RvalueReference<'b, Self>> for WithBitfields {
Devin Jeanpierre83cb2dc2022-07-15 01:50:28 -070091 type CtorType = impl ::ctor::Ctor<Output = Self> + ::ctor::Captures<'b>;
Devin Jeanpierre56413252022-06-02 18:48:24 -070092 #[inline(always)]
Felipe de A. Mello Pereira6f3cf162023-01-16 00:48:25 -080093 fn ctor_new(args: ::ctor::RvalueReference<'b, Self>) -> Self::CtorType {
Devin Jeanpierre56413252022-06-02 18:48:24 -070094 let __param_0 = args;
Devin Jeanpierre93927e82022-08-01 14:05:54 -070095 unsafe {
Googlerbed0a2a2023-03-01 11:53:43 -080096 ::ctor::FnCtor::new(
97 move |dest: ::core::pin::Pin<&mut ::core::mem::MaybeUninit<Self>>| {
98 crate::detail::__rust_thunk___ZN13WithBitfieldsC1EOS_(
99 ::core::pin::Pin::into_inner_unchecked(dest),
100 __param_0,
101 );
102 },
103 )
Devin Jeanpierre93927e82022-08-01 14:05:54 -0700104 }
Devin Jeanpierre56413252022-06-02 18:48:24 -0700105 }
106}
Felipe de A. Mello Pereira6f3cf162023-01-16 00:48:25 -0800107impl<'b> ::ctor::CtorNew<(::ctor::RvalueReference<'b, Self>,)> for WithBitfields {
Devin Jeanpierre83cb2dc2022-07-15 01:50:28 -0700108 type CtorType = impl ::ctor::Ctor<Output = Self> + ::ctor::Captures<'b>;
Devin Jeanpierre56413252022-06-02 18:48:24 -0700109 #[inline(always)]
Felipe de A. Mello Pereira6f3cf162023-01-16 00:48:25 -0800110 fn ctor_new(args: (::ctor::RvalueReference<'b, Self>,)) -> Self::CtorType {
Devin Jeanpierre56413252022-06-02 18:48:24 -0700111 let (arg,) = args;
Felipe de A. Mello Pereira6f3cf162023-01-16 00:48:25 -0800112 <Self as ::ctor::CtorNew<::ctor::RvalueReference<'b, Self>>>::ctor_new(arg)
Devin Jeanpierre56413252022-06-02 18:48:24 -0700113 }
114}
Michael Forster82c02d32022-05-20 21:47:33 -0700115
Felipe de A. Mello Pereira5b9ad752023-01-11 01:03:23 -0800116impl<'b> ::ctor::Assign<&'b Self> for WithBitfields {
Devin Jeanpierre9ced4ef2022-06-08 12:39:10 -0700117 #[inline(always)]
Googlerbed0a2a2023-03-01 11:53:43 -0800118 fn assign<'a>(self: ::core::pin::Pin<&'a mut Self>, __param_0: &'b Self) {
Devin Jeanpierre9ced4ef2022-06-08 12:39:10 -0700119 unsafe {
120 crate::detail::__rust_thunk___ZN13WithBitfieldsaSERKS_(self, __param_0);
121 }
122 }
123}
Michael Forster82c02d32022-05-20 21:47:33 -0700124
Felipe de A. Mello Pereira6f3cf162023-01-16 00:48:25 -0800125impl<'b> ::ctor::Assign<::ctor::RvalueReference<'b, Self>> for WithBitfields {
Devin Jeanpierre9ced4ef2022-06-08 12:39:10 -0700126 #[inline(always)]
127 fn assign<'a>(
Googlerbed0a2a2023-03-01 11:53:43 -0800128 self: ::core::pin::Pin<&'a mut Self>,
Felipe de A. Mello Pereira6f3cf162023-01-16 00:48:25 -0800129 __param_0: ::ctor::RvalueReference<'b, Self>,
Devin Jeanpierre9ced4ef2022-06-08 12:39:10 -0700130 ) {
131 unsafe {
132 crate::detail::__rust_thunk___ZN13WithBitfieldsaSEOS_(self, __param_0);
133 }
134 }
135}
Michael Forster82c02d32022-05-20 21:47:33 -0700136
137// CRUBIT_RS_BINDINGS_FROM_CC_TEST_GOLDEN_BITFIELDS_H_
138
Devin Jeanpierre56413252022-06-02 18:48:24 -0700139mod detail {
140 #[allow(unused_imports)]
141 use super::*;
142 extern "C" {
143 pub(crate) fn __rust_thunk___ZN13WithBitfieldsC1Ev<'a>(
Googlerbed0a2a2023-03-01 11:53:43 -0800144 __this: &'a mut ::core::mem::MaybeUninit<crate::WithBitfields>,
Devin Jeanpierre56413252022-06-02 18:48:24 -0700145 );
146 pub(crate) fn __rust_thunk___ZN13WithBitfieldsC1ERKS_<'a, 'b>(
Googlerbed0a2a2023-03-01 11:53:43 -0800147 __this: &'a mut ::core::mem::MaybeUninit<crate::WithBitfields>,
Devin Jeanpierre56413252022-06-02 18:48:24 -0700148 __param_0: &'b crate::WithBitfields,
149 );
150 pub(crate) fn __rust_thunk___ZN13WithBitfieldsC1EOS_<'a, 'b>(
Googlerbed0a2a2023-03-01 11:53:43 -0800151 __this: &'a mut ::core::mem::MaybeUninit<crate::WithBitfields>,
Devin Jeanpierrecd5ebf32022-07-08 05:31:55 -0700152 __param_0: ::ctor::RvalueReference<'b, crate::WithBitfields>,
Devin Jeanpierre56413252022-06-02 18:48:24 -0700153 );
Devin Jeanpierre9ced4ef2022-06-08 12:39:10 -0700154 pub(crate) fn __rust_thunk___ZN13WithBitfieldsaSERKS_<'a, 'b>(
Googlerbed0a2a2023-03-01 11:53:43 -0800155 __this: ::core::pin::Pin<&'a mut crate::WithBitfields>,
Devin Jeanpierre9ced4ef2022-06-08 12:39:10 -0700156 __param_0: &'b crate::WithBitfields,
Googlerbed0a2a2023-03-01 11:53:43 -0800157 ) -> ::core::pin::Pin<&'a mut crate::WithBitfields>;
Devin Jeanpierre9ced4ef2022-06-08 12:39:10 -0700158 pub(crate) fn __rust_thunk___ZN13WithBitfieldsaSEOS_<'a, 'b>(
Googlerbed0a2a2023-03-01 11:53:43 -0800159 __this: ::core::pin::Pin<&'a mut crate::WithBitfields>,
Devin Jeanpierrecd5ebf32022-07-08 05:31:55 -0700160 __param_0: ::ctor::RvalueReference<'b, crate::WithBitfields>,
Googlerbed0a2a2023-03-01 11:53:43 -0800161 ) -> ::core::pin::Pin<&'a mut crate::WithBitfields>;
Devin Jeanpierre56413252022-06-02 18:48:24 -0700162 }
163}
164
Googlerbed0a2a2023-03-01 11:53:43 -0800165const _: () = assert!(::core::mem::size_of::<Option<&i32>>() == ::core::mem::size_of::<&i32>());
Michael Forster82c02d32022-05-20 21:47:33 -0700166
Googlerbed0a2a2023-03-01 11:53:43 -0800167const _: () = assert!(::core::mem::size_of::<crate::WithBitfields>() == 32);
168const _: () = assert!(::core::mem::align_of::<crate::WithBitfields>() == 4);
Michael Forster82c02d32022-05-20 21:47:33 -0700169const _: () = {
Lukasz Anforowiczb4d17782022-07-07 08:09:13 -0700170 static_assertions::assert_not_impl_any!(crate::WithBitfields: Copy);
Michael Forster82c02d32022-05-20 21:47:33 -0700171};
172const _: () = {
Lukasz Anforowiczb4d17782022-07-07 08:09:13 -0700173 static_assertions::assert_not_impl_any!(crate::WithBitfields: Drop);
Michael Forster82c02d32022-05-20 21:47:33 -0700174};
Lukasz Anforowiczed94b242022-09-07 11:47:58 -0700175const _: () = assert!(memoffset::offset_of!(crate::WithBitfields, f2) == 4);
176const _: () = assert!(memoffset::offset_of!(crate::WithBitfields, f5) == 20);
177const _: () = assert!(memoffset::offset_of!(crate::WithBitfields, f7) == 27);