Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 1 | // 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 Anforowicz | 40c2eb8 | 2022-01-11 18:22:31 +0000 | [diff] [blame] | 5 | use anyhow::{anyhow, bail, ensure, Context, Result}; |
Marcel Hlopko | 884ae7f | 2021-08-18 13:58:22 +0000 | [diff] [blame] | 6 | use ffi_types::*; |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 7 | use ir::*; |
| 8 | use itertools::Itertools; |
Googler | 5ea8864 | 2021-09-29 08:05:59 +0000 | [diff] [blame] | 9 | use proc_macro2::{Ident, Literal, TokenStream}; |
Devin Jeanpierre | 92ca261 | 2022-04-06 11:35:13 -0700 | [diff] [blame] | 10 | use quote::{format_ident, quote, ToTokens}; |
Devin Jeanpierre | 9886fb4 | 2022-04-01 04:31:20 -0700 | [diff] [blame] | 11 | use std::collections::{BTreeSet, HashSet}; |
Lukasz Anforowicz | 54ff318 | 2022-05-06 07:17:58 -0700 | [diff] [blame] | 12 | use std::ffi::{OsStr, OsString}; |
Michael Forster | 82c02d3 | 2022-05-20 21:47:33 -0700 | [diff] [blame] | 13 | use std::iter::{self, Iterator}; |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 14 | use std::panic::catch_unwind; |
| 15 | use std::process; |
Lukasz Anforowicz | 54ff318 | 2022-05-06 07:17:58 -0700 | [diff] [blame] | 16 | use token_stream_printer::{rs_tokens_to_formatted_string, tokens_to_string, RustfmtConfig}; |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 17 | |
Marcel Hlopko | 45fba97 | 2021-08-23 19:52:20 +0000 | [diff] [blame] | 18 | /// FFI equivalent of `Bindings`. |
| 19 | #[repr(C)] |
| 20 | pub struct FfiBindings { |
| 21 | rs_api: FfiU8SliceBox, |
| 22 | rs_api_impl: FfiU8SliceBox, |
| 23 | } |
| 24 | |
| 25 | /// Deserializes IR from `json` and generates bindings source code. |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 26 | /// |
| 27 | /// This function panics on error. |
| 28 | /// |
Lukasz Anforowicz | dd9ae0f | 2022-02-17 15:52:53 +0000 | [diff] [blame] | 29 | /// # Safety |
| 30 | /// |
| 31 | /// Expectations: |
Lukasz Anforowicz | 54ff318 | 2022-05-06 07:17:58 -0700 | [diff] [blame] | 32 | /// * `json` should be a FfiU8Slice for a valid array of bytes with the given |
| 33 | /// size. |
Lukasz Anforowicz | dd90770 | 2022-05-06 09:24:07 -0700 | [diff] [blame] | 34 | /// * `crubit_support_path` should be a FfiU8Slice for a valid array of bytes |
| 35 | /// representing an UTF8-encoded string |
Lukasz Anforowicz | d7d68f0 | 2022-05-26 07:41:02 -0700 | [diff] [blame] | 36 | /// * `rustfmt_exe_path` and `rustfmt_config_path` should both be a |
| 37 | /// FfiU8Slice for a valid array of bytes representing an UTF8-encoded |
| 38 | /// string (without the UTF-8 requirement, it seems that Rust doesn't offer |
| 39 | /// a way to convert to OsString on Windows) |
| 40 | /// * `json`, `crubit_support_path`, `rustfmt_exe_path`, and |
| 41 | /// `rustfmt_config_path` shouldn't change during the call. |
Lukasz Anforowicz | dd9ae0f | 2022-02-17 15:52:53 +0000 | [diff] [blame] | 42 | /// |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 43 | /// Ownership: |
Michael Forster | bee8448 | 2021-10-13 08:35:38 +0000 | [diff] [blame] | 44 | /// * function doesn't take ownership of (in other words it borrows) the |
Lukasz Anforowicz | d7d68f0 | 2022-05-26 07:41:02 -0700 | [diff] [blame] | 45 | /// input params: `json`, `crubit_support_path`, `rustfmt_exe_path`, and |
| 46 | /// `rustfmt_config_path` |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 47 | /// * function passes ownership of the returned value to the caller |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 48 | #[no_mangle] |
Lukasz Anforowicz | 54ff318 | 2022-05-06 07:17:58 -0700 | [diff] [blame] | 49 | pub unsafe extern "C" fn GenerateBindingsImpl( |
| 50 | json: FfiU8Slice, |
Lukasz Anforowicz | dd90770 | 2022-05-06 09:24:07 -0700 | [diff] [blame] | 51 | crubit_support_path: FfiU8Slice, |
Lukasz Anforowicz | d7d68f0 | 2022-05-26 07:41:02 -0700 | [diff] [blame] | 52 | rustfmt_exe_path: FfiU8Slice, |
Lukasz Anforowicz | 54ff318 | 2022-05-06 07:17:58 -0700 | [diff] [blame] | 53 | rustfmt_config_path: FfiU8Slice, |
| 54 | ) -> FfiBindings { |
| 55 | let json: &[u8] = json.as_slice(); |
Lukasz Anforowicz | dd90770 | 2022-05-06 09:24:07 -0700 | [diff] [blame] | 56 | let crubit_support_path: &str = std::str::from_utf8(crubit_support_path.as_slice()).unwrap(); |
Lukasz Anforowicz | d7d68f0 | 2022-05-26 07:41:02 -0700 | [diff] [blame] | 57 | let rustfmt_exe_path: OsString = |
| 58 | std::str::from_utf8(rustfmt_exe_path.as_slice()).unwrap().into(); |
Lukasz Anforowicz | 54ff318 | 2022-05-06 07:17:58 -0700 | [diff] [blame] | 59 | let rustfmt_config_path: OsString = |
| 60 | std::str::from_utf8(rustfmt_config_path.as_slice()).unwrap().into(); |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 61 | catch_unwind(|| { |
Marcel Hlopko | 45fba97 | 2021-08-23 19:52:20 +0000 | [diff] [blame] | 62 | // It is ok to abort here. |
Marcel Hlopko | 3623489 | 2022-05-10 00:39:54 -0700 | [diff] [blame] | 63 | let Bindings { rs_api, rs_api_impl } = |
Devin Jeanpierre | 108e9c0 | 2022-06-02 07:10:09 -0700 | [diff] [blame] | 64 | generate_bindings(json, crubit_support_path, &rustfmt_exe_path, &rustfmt_config_path) |
| 65 | .unwrap(); |
Marcel Hlopko | 45fba97 | 2021-08-23 19:52:20 +0000 | [diff] [blame] | 66 | FfiBindings { |
| 67 | rs_api: FfiU8SliceBox::from_boxed_slice(rs_api.into_bytes().into_boxed_slice()), |
| 68 | rs_api_impl: FfiU8SliceBox::from_boxed_slice( |
| 69 | rs_api_impl.into_bytes().into_boxed_slice(), |
| 70 | ), |
| 71 | } |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 72 | }) |
| 73 | .unwrap_or_else(|_| process::abort()) |
| 74 | } |
| 75 | |
Marcel Hlopko | 45fba97 | 2021-08-23 19:52:20 +0000 | [diff] [blame] | 76 | /// Source code for generated bindings. |
| 77 | struct Bindings { |
| 78 | // Rust source code. |
| 79 | rs_api: String, |
| 80 | // C++ source code. |
| 81 | rs_api_impl: String, |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 82 | } |
| 83 | |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 84 | /// Source code for generated bindings, as tokens. |
| 85 | struct BindingsTokens { |
| 86 | // Rust source code. |
| 87 | rs_api: TokenStream, |
| 88 | // C++ source code. |
| 89 | rs_api_impl: TokenStream, |
| 90 | } |
| 91 | |
Lukasz Anforowicz | dd90770 | 2022-05-06 09:24:07 -0700 | [diff] [blame] | 92 | fn generate_bindings( |
| 93 | json: &[u8], |
| 94 | crubit_support_path: &str, |
Lukasz Anforowicz | d7d68f0 | 2022-05-26 07:41:02 -0700 | [diff] [blame] | 95 | rustfmt_exe_path: &OsStr, |
Lukasz Anforowicz | dd90770 | 2022-05-06 09:24:07 -0700 | [diff] [blame] | 96 | rustfmt_config_path: &OsStr, |
| 97 | ) -> Result<Bindings> { |
Marcel Hlopko | 45fba97 | 2021-08-23 19:52:20 +0000 | [diff] [blame] | 98 | let ir = deserialize_ir(json)?; |
Marcel Hlopko | ca84ff4 | 2021-12-09 14:15:14 +0000 | [diff] [blame] | 99 | |
Lukasz Anforowicz | dd90770 | 2022-05-06 09:24:07 -0700 | [diff] [blame] | 100 | let BindingsTokens { rs_api, rs_api_impl } = |
| 101 | generate_bindings_tokens(&ir, crubit_support_path)?; |
Lukasz Anforowicz | 54ff318 | 2022-05-06 07:17:58 -0700 | [diff] [blame] | 102 | let rs_api = { |
Lukasz Anforowicz | d7d68f0 | 2022-05-26 07:41:02 -0700 | [diff] [blame] | 103 | let rustfmt_config = RustfmtConfig::new(rustfmt_exe_path, rustfmt_config_path); |
Lukasz Anforowicz | 54ff318 | 2022-05-06 07:17:58 -0700 | [diff] [blame] | 104 | rs_tokens_to_formatted_string(rs_api, &rustfmt_config)? |
| 105 | }; |
| 106 | |
Marcel Hlopko | ca84ff4 | 2021-12-09 14:15:14 +0000 | [diff] [blame] | 107 | // The code is formatted with a non-default rustfmt configuration. Prevent |
Lukasz Anforowicz | 5b3f530 | 2022-02-07 01:04:47 +0000 | [diff] [blame] | 108 | // downstream workflows from reformatting with a different configuration by |
| 109 | // marking the output with `@generated`. See also |
| 110 | // https://rust-lang.github.io/rustfmt/?version=v1.4.38&search=#format_generated_files |
| 111 | // |
| 112 | // TODO(lukasza): It would be nice to include "by $argv[0]"" in the |
| 113 | // @generated comment below. OTOH, `std::env::current_exe()` in our |
| 114 | // current build environment returns a guid-like path... :-/ |
Lukasz Anforowicz | 72c4d22 | 2022-02-18 19:07:28 +0000 | [diff] [blame] | 115 | // |
| 116 | // TODO(lukasza): Try to remove `#![rustfmt:skip]` - in theory it shouldn't |
| 117 | // be needed when `@generated` comment/keyword is present... |
Lukasz Anforowicz | 5b3f530 | 2022-02-07 01:04:47 +0000 | [diff] [blame] | 118 | let rs_api = format!( |
Lukasz Anforowicz | 72c4d22 | 2022-02-18 19:07:28 +0000 | [diff] [blame] | 119 | "// Automatically @generated Rust bindings for C++ target\n\ |
| 120 | // {target}\n\ |
| 121 | #![rustfmt::skip]\n\ |
| 122 | {code}", |
Lukasz Anforowicz | 5b3f530 | 2022-02-07 01:04:47 +0000 | [diff] [blame] | 123 | target = ir.current_target().0, |
Lukasz Anforowicz | 54ff318 | 2022-05-06 07:17:58 -0700 | [diff] [blame] | 124 | code = rs_api, |
Lukasz Anforowicz | 5b3f530 | 2022-02-07 01:04:47 +0000 | [diff] [blame] | 125 | ); |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 126 | let rs_api_impl = tokens_to_string(rs_api_impl)?; |
Marcel Hlopko | ca84ff4 | 2021-12-09 14:15:14 +0000 | [diff] [blame] | 127 | |
Marcel Hlopko | 45fba97 | 2021-08-23 19:52:20 +0000 | [diff] [blame] | 128 | Ok(Bindings { rs_api, rs_api_impl }) |
| 129 | } |
| 130 | |
Devin Jeanpierre | 6d5e7cc | 2021-10-21 12:56:07 +0000 | [diff] [blame] | 131 | /// Rust source code with attached information about how to modify the parent |
| 132 | /// crate. |
Devin Jeanpierre | 273eeae | 2021-10-06 13:29:35 +0000 | [diff] [blame] | 133 | /// |
Michael Forster | bee8448 | 2021-10-13 08:35:38 +0000 | [diff] [blame] | 134 | /// For example, the snippet `vec![].into_raw_parts()` is not valid unless the |
| 135 | /// `vec_into_raw_parts` feature is enabled. So such a snippet should be |
| 136 | /// represented as: |
Devin Jeanpierre | 273eeae | 2021-10-06 13:29:35 +0000 | [diff] [blame] | 137 | /// |
| 138 | /// ``` |
| 139 | /// RsSnippet { |
Marcel Hlopko | eaae9b7 | 2022-01-21 15:54:11 +0000 | [diff] [blame] | 140 | /// features: btree_set![make_rs_ident("vec_into_raw_parts")], |
Devin Jeanpierre | 273eeae | 2021-10-06 13:29:35 +0000 | [diff] [blame] | 141 | /// tokens: quote!{vec![].into_raw_parts()}, |
| 142 | /// } |
| 143 | /// ``` |
Lukasz Anforowicz | eb19ac6 | 2022-02-05 00:10:16 +0000 | [diff] [blame] | 144 | #[derive(Clone, Debug)] |
Devin Jeanpierre | 273eeae | 2021-10-06 13:29:35 +0000 | [diff] [blame] | 145 | struct RsSnippet { |
| 146 | /// Rust feature flags used by this snippet. |
| 147 | features: BTreeSet<Ident>, |
| 148 | /// The snippet itself, as a token stream. |
| 149 | tokens: TokenStream, |
| 150 | } |
| 151 | |
| 152 | impl From<TokenStream> for RsSnippet { |
| 153 | fn from(tokens: TokenStream) -> Self { |
| 154 | RsSnippet { features: BTreeSet::new(), tokens } |
| 155 | } |
| 156 | } |
| 157 | |
Michael Forster | bee8448 | 2021-10-13 08:35:38 +0000 | [diff] [blame] | 158 | /// If we know the original C++ function is codegenned and already compatible |
| 159 | /// with `extern "C"` calling convention we skip creating/calling the C++ thunk |
| 160 | /// since we can call the original C++ directly. |
Marcel Hlopko | 3164eee | 2021-08-24 20:09:22 +0000 | [diff] [blame] | 161 | fn can_skip_cc_thunk(func: &Func) -> bool { |
Devin Jeanpierre | 96839c1 | 2021-12-14 00:27:38 +0000 | [diff] [blame] | 162 | // ## Inline functions |
| 163 | // |
Michael Forster | bee8448 | 2021-10-13 08:35:38 +0000 | [diff] [blame] | 164 | // Inline functions may not be codegenned in the C++ library since Clang doesn't |
| 165 | // know if Rust calls the function or not. Therefore in order to make inline |
| 166 | // functions callable from Rust we need to generate a C++ file that defines |
| 167 | // a thunk that delegates to the original inline function. When compiled, |
| 168 | // Clang will emit code for this thunk and Rust code will call the |
Marcel Hlopko | 3164eee | 2021-08-24 20:09:22 +0000 | [diff] [blame] | 169 | // thunk when the user wants to call the original inline function. |
| 170 | // |
Michael Forster | bee8448 | 2021-10-13 08:35:38 +0000 | [diff] [blame] | 171 | // This is not great runtime-performance-wise in regular builds (inline function |
| 172 | // will not be inlined, there will always be a function call), but it is |
| 173 | // correct. ThinLTO builds will be able to see through the thunk and inline |
| 174 | // code across the language boundary. For non-ThinLTO builds we plan to |
| 175 | // implement <internal link> which removes the runtime performance overhead. |
Devin Jeanpierre | 96839c1 | 2021-12-14 00:27:38 +0000 | [diff] [blame] | 176 | if func.is_inline { |
| 177 | return false; |
| 178 | } |
Lukasz Anforowicz | b1ff2e5 | 2022-05-16 10:54:23 -0700 | [diff] [blame] | 179 | // ## Member functions (or descendants) of class templates |
| 180 | // |
| 181 | // A thunk is required to force/guarantee template instantiation. |
| 182 | if func.is_member_or_descendant_of_class_template { |
| 183 | return false; |
| 184 | } |
Devin Jeanpierre | 96839c1 | 2021-12-14 00:27:38 +0000 | [diff] [blame] | 185 | // ## Virtual functions |
| 186 | // |
| 187 | // When calling virtual `A::Method()`, it's not necessarily the case that we'll |
| 188 | // specifically call the concrete `A::Method` impl. For example, if this is |
| 189 | // called on something whose dynamic type is some subclass `B` with an |
| 190 | // overridden `B::Method`, then we'll call that. |
| 191 | // |
| 192 | // We must reuse the C++ dynamic dispatching system. In this case, the easiest |
| 193 | // way to do it is by resorting to a C++ thunk, whose implementation will do |
| 194 | // the lookup. |
| 195 | // |
| 196 | // In terms of runtime performance, since this only occurs for virtual function |
| 197 | // calls, which are already slow, it may not be such a big deal. We can |
| 198 | // benchmark it later. :) |
| 199 | if let Some(meta) = &func.member_func_metadata { |
| 200 | if let Some(inst_meta) = &meta.instance_method_metadata { |
| 201 | if inst_meta.is_virtual { |
| 202 | return false; |
| 203 | } |
| 204 | } |
| 205 | } |
Lukasz Anforowicz | 0b6a6ac | 2022-03-22 22:32:23 +0000 | [diff] [blame] | 206 | // ## Custom calling convention requires a thunk. |
| 207 | // |
| 208 | // The thunk has the "C" calling convention, and internally can call the |
| 209 | // C++ function using any of the calling conventions supported by the C++ |
| 210 | // compiler (which might not always match the set supported by Rust - e.g., |
| 211 | // abi.rs doesn't contain "swiftcall" from |
| 212 | // clang::FunctionType::getNameForCallConv) |
| 213 | if !func.has_c_calling_convention { |
| 214 | return false; |
| 215 | } |
Devin Jeanpierre | 96839c1 | 2021-12-14 00:27:38 +0000 | [diff] [blame] | 216 | |
| 217 | true |
Marcel Hlopko | 3164eee | 2021-08-24 20:09:22 +0000 | [diff] [blame] | 218 | } |
| 219 | |
Googler | d03d05b | 2022-01-07 10:10:57 +0000 | [diff] [blame] | 220 | /// Uniquely identifies a generated Rust function. |
Lukasz Anforowicz | eb19ac6 | 2022-02-05 00:10:16 +0000 | [diff] [blame] | 221 | #[derive(Clone, Debug, PartialEq, Eq, Hash)] |
Googler | d03d05b | 2022-01-07 10:10:57 +0000 | [diff] [blame] | 222 | struct FunctionId { |
| 223 | // If the function is on a trait impl, contains the name of the Self type for |
| 224 | // which the trait is being implemented. |
| 225 | self_type: Option<syn::Path>, |
| 226 | // Fully qualified path of the function. For functions in impl blocks, this |
| 227 | // includes the name of the type or trait on which the function is being |
| 228 | // implemented, e.g. `Default::default`. |
| 229 | function_path: syn::Path, |
| 230 | } |
| 231 | |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 232 | /// Returns the name of `func` in C++ syntax. |
Googler | d03d05b | 2022-01-07 10:10:57 +0000 | [diff] [blame] | 233 | fn cxx_function_name(func: &Func, ir: &IR) -> Result<String> { |
| 234 | let record: Option<&str> = func |
| 235 | .member_func_metadata |
| 236 | .as_ref() |
| 237 | .map(|meta| meta.find_record(ir)) |
| 238 | .transpose()? |
Lukasz Anforowicz | 4c3a2cc | 2022-03-11 00:24:49 +0000 | [diff] [blame] | 239 | .map(|r| &*r.cc_name); |
Googler | d03d05b | 2022-01-07 10:10:57 +0000 | [diff] [blame] | 240 | |
| 241 | let func_name = match &func.name { |
| 242 | UnqualifiedIdentifier::Identifier(id) => id.identifier.clone(), |
Lukasz Anforowicz | 9c663ca | 2022-02-09 01:33:31 +0000 | [diff] [blame] | 243 | UnqualifiedIdentifier::Operator(op) => op.cc_name(), |
Googler | d03d05b | 2022-01-07 10:10:57 +0000 | [diff] [blame] | 244 | UnqualifiedIdentifier::Destructor => { |
| 245 | format!("~{}", record.expect("destructor must be associated with a record")) |
| 246 | } |
| 247 | UnqualifiedIdentifier::Constructor => { |
Lukasz Anforowicz | eb19ac6 | 2022-02-05 00:10:16 +0000 | [diff] [blame] | 248 | record.expect("constructor must be associated with a record").to_string() |
Googler | d03d05b | 2022-01-07 10:10:57 +0000 | [diff] [blame] | 249 | } |
| 250 | }; |
| 251 | |
| 252 | if let Some(record_name) = record { |
| 253 | Ok(format!("{}::{}", record_name, func_name)) |
| 254 | } else { |
| 255 | Ok(func_name) |
| 256 | } |
| 257 | } |
| 258 | |
Lukasz Anforowicz | eb19ac6 | 2022-02-05 00:10:16 +0000 | [diff] [blame] | 259 | fn make_unsupported_fn(func: &Func, ir: &IR, message: impl ToString) -> Result<UnsupportedItem> { |
| 260 | Ok(UnsupportedItem { |
| 261 | name: cxx_function_name(func, ir)?, |
| 262 | message: message.to_string(), |
| 263 | source_loc: func.source_loc.clone(), |
Rosica Dejanovska | d638cf5 | 2022-03-23 15:45:01 +0000 | [diff] [blame] | 264 | id: func.id, |
Lukasz Anforowicz | eb19ac6 | 2022-02-05 00:10:16 +0000 | [diff] [blame] | 265 | }) |
| 266 | } |
| 267 | |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 268 | /// The name of a one-function trait, with extra entries for |
| 269 | /// specially-understood traits and families of traits. |
Devin Jeanpierre | 103cbb5 | 2022-04-06 12:55:16 -0700 | [diff] [blame] | 270 | enum TraitName<'ir> { |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 271 | /// The constructor trait for !Unpin types, with a list of parameter types. |
| 272 | /// For example, `CtorNew(vec![])` is the default constructor. |
| 273 | CtorNew(Vec<RsTypeKind<'ir>>), |
Devin Jeanpierre | e77fa7e | 2022-06-02 14:05:58 -0700 | [diff] [blame] | 274 | /// An Unpin constructor trait, e.g. From or Clone, with a list of parameter |
| 275 | /// types. |
| 276 | UnpinConstructor { name: TokenStream, params: Vec<RsTypeKind<'ir>> }, |
Devin Jeanpierre | 9c34da6 | 2022-03-31 04:57:16 -0700 | [diff] [blame] | 277 | /// Any other trait, e.g. Eq. |
Devin Jeanpierre | e77fa7e | 2022-06-02 14:05:58 -0700 | [diff] [blame] | 278 | Other { name: TokenStream, params: Vec<RsTypeKind<'ir>>, is_unsafe_fn: bool }, |
Devin Jeanpierre | 9c34da6 | 2022-03-31 04:57:16 -0700 | [diff] [blame] | 279 | } |
Devin Jeanpierre | e77fa7e | 2022-06-02 14:05:58 -0700 | [diff] [blame] | 280 | |
| 281 | impl<'ir> TraitName<'ir> { |
| 282 | /// Returns the generic parameters in this trait name. |
| 283 | fn params(&self) -> impl Iterator<Item = &RsTypeKind<'ir>> { |
| 284 | match self { |
| 285 | Self::CtorNew(params) |
| 286 | | Self::UnpinConstructor { params, .. } |
| 287 | | Self::Other { params, .. } => params.iter(), |
| 288 | } |
| 289 | } |
| 290 | |
| 291 | /// Returns the lifetimes used in this trait name. |
| 292 | pub fn lifetimes(&self) -> impl Iterator<Item = LifetimeId> + '_ { |
| 293 | self.params().flat_map(|p| p.lifetimes()) |
| 294 | } |
| 295 | } |
| 296 | |
Devin Jeanpierre | 103cbb5 | 2022-04-06 12:55:16 -0700 | [diff] [blame] | 297 | impl<'ir> ToTokens for TraitName<'ir> { |
Devin Jeanpierre | 9c34da6 | 2022-03-31 04:57:16 -0700 | [diff] [blame] | 298 | fn to_tokens(&self, tokens: &mut TokenStream) { |
| 299 | match self { |
Devin Jeanpierre | e77fa7e | 2022-06-02 14:05:58 -0700 | [diff] [blame] | 300 | Self::UnpinConstructor { name, params } | Self::Other { name, params, .. } => { |
| 301 | let params = format_generic_params(params); |
| 302 | quote! {#name #params}.to_tokens(tokens) |
| 303 | } |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 304 | Self::CtorNew(arg_types) => { |
| 305 | let arg_types = format_tuple_except_singleton(arg_types); |
| 306 | quote! { ctor::CtorNew < #arg_types > }.to_tokens(tokens) |
| 307 | } |
Devin Jeanpierre | 9c34da6 | 2022-03-31 04:57:16 -0700 | [diff] [blame] | 308 | } |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | /// The kind of the `impl` block the function needs to be generated in. |
Devin Jeanpierre | 103cbb5 | 2022-04-06 12:55:16 -0700 | [diff] [blame] | 313 | enum ImplKind<'ir> { |
Devin Jeanpierre | 9c34da6 | 2022-03-31 04:57:16 -0700 | [diff] [blame] | 314 | /// Used for free functions for which we don't want the `impl` block. |
| 315 | None { is_unsafe: bool }, |
| 316 | /// Used for inherent methods for which we need an `impl SomeStruct { ... }` |
| 317 | /// block. |
| 318 | Struct { |
| 319 | /// For example, `SomeStruct`. Retrieved from |
| 320 | /// `func.member_func_metadata`. |
| 321 | record_name: Ident, |
| 322 | is_unsafe: bool, |
| 323 | /// Whether to format the first parameter as "self" (e.g. `__this: |
| 324 | /// &mut T` -> `&mut self`) |
| 325 | format_first_param_as_self: bool, |
| 326 | }, |
| 327 | /// Used for trait methods for which we need an `impl TraitName for |
| 328 | /// SomeStruct { ... }` block. |
| 329 | Trait { |
| 330 | /// For example, `SomeStruct`. |
| 331 | /// Note that `record_name` might *not* be from |
| 332 | /// `func.member_func_metadata`. |
| 333 | record_name: Ident, |
| 334 | /// For example, `quote!{ From<i32> }`. |
Devin Jeanpierre | 103cbb5 | 2022-04-06 12:55:16 -0700 | [diff] [blame] | 335 | trait_name: TraitName<'ir>, |
Devin Jeanpierre | 9c34da6 | 2022-03-31 04:57:16 -0700 | [diff] [blame] | 336 | |
Devin Jeanpierre | 9c34da6 | 2022-03-31 04:57:16 -0700 | [diff] [blame] | 337 | /// The generic params of trait `impl` (e.g. `<'b>`). These start |
| 338 | /// empty and only later are mutated into the correct value. |
| 339 | trait_generic_params: TokenStream, |
| 340 | /// Whether to format the first parameter as "self" (e.g. `__this: |
| 341 | /// &mut T` -> `&mut self`) |
| 342 | format_first_param_as_self: bool, |
| 343 | }, |
| 344 | } |
Devin Jeanpierre | 103cbb5 | 2022-04-06 12:55:16 -0700 | [diff] [blame] | 345 | impl<'ir> ImplKind<'ir> { |
Devin Jeanpierre | 9c34da6 | 2022-03-31 04:57:16 -0700 | [diff] [blame] | 346 | fn new_trait( |
Devin Jeanpierre | 103cbb5 | 2022-04-06 12:55:16 -0700 | [diff] [blame] | 347 | trait_name: TraitName<'ir>, |
Devin Jeanpierre | 9c34da6 | 2022-03-31 04:57:16 -0700 | [diff] [blame] | 348 | record_name: Ident, |
| 349 | format_first_param_as_self: bool, |
| 350 | ) -> Self { |
| 351 | ImplKind::Trait { |
| 352 | trait_name, |
| 353 | record_name, |
Devin Jeanpierre | 9c34da6 | 2022-03-31 04:57:16 -0700 | [diff] [blame] | 354 | trait_generic_params: quote! {}, |
| 355 | format_first_param_as_self, |
| 356 | } |
| 357 | } |
| 358 | fn format_first_param_as_self(&self) -> bool { |
| 359 | matches!( |
| 360 | self, |
| 361 | Self::Trait { format_first_param_as_self: true, .. } |
| 362 | | Self::Struct { format_first_param_as_self: true, .. } |
| 363 | ) |
| 364 | } |
| 365 | /// Returns whether the function is defined as `unsafe fn ...`. |
| 366 | fn is_unsafe(&self) -> bool { |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 367 | matches!( |
| 368 | self, |
| 369 | Self::None { is_unsafe: true, .. } |
| 370 | | Self::Struct { is_unsafe: true, .. } |
| 371 | | Self::Trait { trait_name: TraitName::Other { is_unsafe_fn: true, .. }, .. } |
| 372 | ) |
Devin Jeanpierre | 9c34da6 | 2022-03-31 04:57:16 -0700 | [diff] [blame] | 373 | } |
| 374 | } |
| 375 | |
| 376 | /// Returns the shape of the generated Rust API for a given function definition. |
Devin Jeanpierre | d7b4810 | 2022-03-31 04:15:03 -0700 | [diff] [blame] | 377 | /// |
Devin Jeanpierre | 9c34da6 | 2022-03-31 04:57:16 -0700 | [diff] [blame] | 378 | /// Returns: |
Devin Jeanpierre | d7b4810 | 2022-03-31 04:15:03 -0700 | [diff] [blame] | 379 | /// |
| 380 | /// * `Err(_)`: something went wrong importing this function. |
| 381 | /// * `Ok(None)`: the function imported as "nothing". (For example, a defaulted |
| 382 | /// destructor might be mapped to no `Drop` impl at all.) |
Devin Jeanpierre | 9c34da6 | 2022-03-31 04:57:16 -0700 | [diff] [blame] | 383 | /// * `Ok((func_name, impl_kind))`: The function name and ImplKind. |
Devin Jeanpierre | 103cbb5 | 2022-04-06 12:55:16 -0700 | [diff] [blame] | 384 | fn api_func_shape<'ir>( |
Devin Jeanpierre | 9c34da6 | 2022-03-31 04:57:16 -0700 | [diff] [blame] | 385 | func: &Func, |
| 386 | ir: &IR, |
Devin Jeanpierre | 22f9149 | 2022-04-06 13:01:23 -0700 | [diff] [blame] | 387 | param_types: &[RsTypeKind<'ir>], |
Devin Jeanpierre | 103cbb5 | 2022-04-06 12:55:16 -0700 | [diff] [blame] | 388 | ) -> Result<Option<(Ident, ImplKind<'ir>)>> { |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 389 | let maybe_record: Option<&Record> = |
Lukasz Anforowicz | 13cf749 | 2021-12-22 15:29:52 +0000 | [diff] [blame] | 390 | func.member_func_metadata.as_ref().map(|meta| meta.find_record(ir)).transpose()?; |
Devin Jeanpierre | 22f9149 | 2022-04-06 13:01:23 -0700 | [diff] [blame] | 391 | let has_pointer_params = param_types.iter().any(|p| matches!(p, RsTypeKind::Pointer { .. })); |
Devin Jeanpierre | 9c34da6 | 2022-03-31 04:57:16 -0700 | [diff] [blame] | 392 | let impl_kind: ImplKind; |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 393 | let func_name: syn::Ident; |
Googler | d03d05b | 2022-01-07 10:10:57 +0000 | [diff] [blame] | 394 | match &func.name { |
Lukasz Anforowicz | 9c663ca | 2022-02-09 01:33:31 +0000 | [diff] [blame] | 395 | UnqualifiedIdentifier::Operator(op) if op.name == "==" => { |
Devin Jeanpierre | 8dd193a | 2022-06-03 10:57:21 -0700 | [diff] [blame] | 396 | assert_eq!( |
| 397 | param_types.len(), |
| 398 | 2, |
| 399 | "Unexpected number of parameters in operator==: {func:?}" |
| 400 | ); |
Devin Jeanpierre | 22f9149 | 2022-04-06 13:01:23 -0700 | [diff] [blame] | 401 | match (¶m_types[0], ¶m_types[1]) { |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 402 | ( |
Lukasz Anforowicz | eb19ac6 | 2022-02-05 00:10:16 +0000 | [diff] [blame] | 403 | RsTypeKind::Reference { referent: lhs, mutability: Mutability::Const, .. }, |
| 404 | RsTypeKind::Reference { referent: rhs, mutability: Mutability::Const, .. }, |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 405 | ) => match **lhs { |
Devin Jeanpierre | fec5bfe | 2022-04-05 10:59:10 -0700 | [diff] [blame] | 406 | RsTypeKind::Record { record: lhs_record, .. } => { |
Lukasz Anforowicz | 4c3a2cc | 2022-03-11 00:24:49 +0000 | [diff] [blame] | 407 | let lhs: Ident = make_rs_ident(&lhs_record.rs_name); |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 408 | func_name = make_rs_ident("eq"); |
Devin Jeanpierre | d9a6e6c | 2022-03-29 02:55:41 -0700 | [diff] [blame] | 409 | impl_kind = ImplKind::new_trait( |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 410 | TraitName::Other { |
Devin Jeanpierre | e77fa7e | 2022-06-02 14:05:58 -0700 | [diff] [blame] | 411 | name: quote! {PartialEq}, |
| 412 | params: vec![(**rhs).clone()], |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 413 | is_unsafe_fn: false, |
| 414 | }, |
Devin Jeanpierre | d9a6e6c | 2022-03-29 02:55:41 -0700 | [diff] [blame] | 415 | lhs, |
| 416 | /* format_first_param_as_self= */ true, |
| 417 | ); |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 418 | } |
Marcel Hlopko | 14ee3c8 | 2022-02-09 09:46:23 +0000 | [diff] [blame] | 419 | _ => { |
Devin Jeanpierre | d7b4810 | 2022-03-31 04:15:03 -0700 | [diff] [blame] | 420 | bail!("operator== where lhs doesn't refer to a record",); |
Marcel Hlopko | 14ee3c8 | 2022-02-09 09:46:23 +0000 | [diff] [blame] | 421 | } |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 422 | }, |
Marcel Hlopko | 14ee3c8 | 2022-02-09 09:46:23 +0000 | [diff] [blame] | 423 | _ => { |
Devin Jeanpierre | d7b4810 | 2022-03-31 04:15:03 -0700 | [diff] [blame] | 424 | bail!("operator== where operands are not const references",); |
Marcel Hlopko | 14ee3c8 | 2022-02-09 09:46:23 +0000 | [diff] [blame] | 425 | } |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 426 | }; |
| 427 | } |
Devin Jeanpierre | 9ced4ef | 2022-06-08 12:39:10 -0700 | [diff] [blame^] | 428 | UnqualifiedIdentifier::Operator(op) if op.name == "=" => { |
| 429 | assert_eq!( |
| 430 | param_types.len(), |
| 431 | 2, |
| 432 | "Unexpected number of parameters in operator=: {func:?}" |
| 433 | ); |
| 434 | let record = |
| 435 | maybe_record.ok_or_else(|| anyhow!("operator= must be a member function."))?; |
| 436 | if record.is_unpin() { |
| 437 | bail!("operator= for Unpin types is not yet supported."); |
| 438 | } |
| 439 | let rhs = ¶m_types[1]; |
| 440 | impl_kind = ImplKind::new_trait( |
| 441 | TraitName::Other { |
| 442 | name: quote! {::ctor::Assign}, |
| 443 | params: vec![rhs.clone()], |
| 444 | is_unsafe_fn: false, |
| 445 | }, |
| 446 | make_rs_ident(&record.rs_name), |
| 447 | /* format_first_param_as_self= */ true, |
| 448 | ); |
| 449 | func_name = make_rs_ident("assign"); |
| 450 | } |
Lukasz Anforowicz | 9c663ca | 2022-02-09 01:33:31 +0000 | [diff] [blame] | 451 | UnqualifiedIdentifier::Operator(_) => { |
Devin Jeanpierre | d7b4810 | 2022-03-31 04:15:03 -0700 | [diff] [blame] | 452 | bail!("Bindings for this kind of operator are not supported"); |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 453 | } |
Devin Jeanpierre | f2ec871 | 2021-10-13 20:47:16 +0000 | [diff] [blame] | 454 | UnqualifiedIdentifier::Identifier(id) => { |
Marcel Hlopko | eaae9b7 | 2022-01-21 15:54:11 +0000 | [diff] [blame] | 455 | func_name = make_rs_ident(&id.identifier); |
Lukasz Anforowicz | f956462 | 2022-01-28 14:31:04 +0000 | [diff] [blame] | 456 | match maybe_record { |
| 457 | None => { |
Devin Jeanpierre | 7c3d8ed | 2022-03-29 03:02:04 -0700 | [diff] [blame] | 458 | impl_kind = ImplKind::None { is_unsafe: has_pointer_params }; |
Lukasz Anforowicz | f956462 | 2022-01-28 14:31:04 +0000 | [diff] [blame] | 459 | } |
| 460 | Some(record) => { |
Devin Jeanpierre | d9a6e6c | 2022-03-29 02:55:41 -0700 | [diff] [blame] | 461 | let format_first_param_as_self = if func.is_instance_method() { |
Devin Jeanpierre | 22f9149 | 2022-04-06 13:01:23 -0700 | [diff] [blame] | 462 | let first_param = param_types.first().ok_or_else(|| { |
Lukasz Anforowicz | f956462 | 2022-01-28 14:31:04 +0000 | [diff] [blame] | 463 | anyhow!("Missing `__this` parameter in an instance method: {:?}", func) |
| 464 | })?; |
Devin Jeanpierre | d9a6e6c | 2022-03-29 02:55:41 -0700 | [diff] [blame] | 465 | first_param.is_ref_to(record) |
Lukasz Anforowicz | f956462 | 2022-01-28 14:31:04 +0000 | [diff] [blame] | 466 | } else { |
Devin Jeanpierre | d9a6e6c | 2022-03-29 02:55:41 -0700 | [diff] [blame] | 467 | false |
| 468 | }; |
Devin Jeanpierre | 6784e5e | 2022-03-29 02:59:01 -0700 | [diff] [blame] | 469 | impl_kind = ImplKind::Struct { |
| 470 | record_name: make_rs_ident(&record.rs_name), |
| 471 | format_first_param_as_self, |
Devin Jeanpierre | 7c3d8ed | 2022-03-29 03:02:04 -0700 | [diff] [blame] | 472 | is_unsafe: has_pointer_params, |
Devin Jeanpierre | 6784e5e | 2022-03-29 02:59:01 -0700 | [diff] [blame] | 473 | }; |
Lukasz Anforowicz | f956462 | 2022-01-28 14:31:04 +0000 | [diff] [blame] | 474 | } |
| 475 | }; |
Michael Forster | ed64202 | 2021-10-04 09:48:25 +0000 | [diff] [blame] | 476 | } |
Devin Jeanpierre | 91de701 | 2021-10-21 12:53:51 +0000 | [diff] [blame] | 477 | UnqualifiedIdentifier::Destructor => { |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 478 | // Note: to avoid double-destruction of the fields, they are all wrapped in |
| 479 | // ManuallyDrop in this case. See `generate_record`. |
| 480 | let record = |
| 481 | maybe_record.ok_or_else(|| anyhow!("Destructors must be member functions."))?; |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 482 | if !should_implement_drop(record) { |
Devin Jeanpierre | d7b4810 | 2022-03-31 04:15:03 -0700 | [diff] [blame] | 483 | return Ok(None); |
Devin Jeanpierre | 91de701 | 2021-10-21 12:53:51 +0000 | [diff] [blame] | 484 | } |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 485 | if record.is_unpin() { |
| 486 | impl_kind = ImplKind::new_trait( |
Devin Jeanpierre | e77fa7e | 2022-06-02 14:05:58 -0700 | [diff] [blame] | 487 | TraitName::Other { name: quote! {Drop}, params: vec![], is_unsafe_fn: false }, |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 488 | make_rs_ident(&record.rs_name), |
| 489 | /* format_first_param_as_self= */ true, |
| 490 | ); |
| 491 | func_name = make_rs_ident("drop"); |
| 492 | } else { |
| 493 | impl_kind = ImplKind::new_trait( |
Devin Jeanpierre | e77fa7e | 2022-06-02 14:05:58 -0700 | [diff] [blame] | 494 | TraitName::Other { |
| 495 | name: quote! {::ctor::PinnedDrop}, |
| 496 | params: vec![], |
| 497 | is_unsafe_fn: true, |
| 498 | }, |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 499 | make_rs_ident(&record.rs_name), |
| 500 | /* format_first_param_as_self= */ true, |
| 501 | ); |
| 502 | func_name = make_rs_ident("pinned_drop"); |
| 503 | } |
Devin Jeanpierre | 91de701 | 2021-10-21 12:53:51 +0000 | [diff] [blame] | 504 | } |
Lukasz Anforowicz | 13cf749 | 2021-12-22 15:29:52 +0000 | [diff] [blame] | 505 | UnqualifiedIdentifier::Constructor => { |
Lukasz Anforowicz | 71716b7 | 2022-01-26 17:05:05 +0000 | [diff] [blame] | 506 | let member_func_metadata = func |
| 507 | .member_func_metadata |
| 508 | .as_ref() |
| 509 | .ok_or_else(|| anyhow!("Constructors must be member functions."))?; |
| 510 | let record = maybe_record |
| 511 | .ok_or_else(|| anyhow!("Constructors must be associated with a record."))?; |
| 512 | let instance_method_metadata = |
| 513 | member_func_metadata |
| 514 | .instance_method_metadata |
| 515 | .as_ref() |
| 516 | .ok_or_else(|| anyhow!("Constructors must be instance methods."))?; |
Devin Jeanpierre | 7c3d8ed | 2022-03-29 03:02:04 -0700 | [diff] [blame] | 517 | if has_pointer_params { |
Lukasz Anforowicz | 55673c9 | 2022-01-27 19:37:26 +0000 | [diff] [blame] | 518 | // TODO(b/216648347): Allow this outside of traits (e.g. after supporting |
| 519 | // translating C++ constructors into static methods in Rust). |
Devin Jeanpierre | d7b4810 | 2022-03-31 04:15:03 -0700 | [diff] [blame] | 520 | bail!( |
Lukasz Anforowicz | eb19ac6 | 2022-02-05 00:10:16 +0000 | [diff] [blame] | 521 | "Unsafe constructors (e.g. with no elided or explicit lifetimes) \ |
| 522 | are intentionally not supported", |
| 523 | ); |
Lukasz Anforowicz | 55673c9 | 2022-01-27 19:37:26 +0000 | [diff] [blame] | 524 | } |
| 525 | |
Devin Jeanpierre | 6784e5e | 2022-03-29 02:59:01 -0700 | [diff] [blame] | 526 | let record_name = make_rs_ident(&record.rs_name); |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 527 | if !record.is_unpin() { |
| 528 | func_name = make_rs_ident("ctor_new"); |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 529 | |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 530 | match param_types { |
| 531 | [] => bail!("Missing `__this` parameter in a constructor: {:?}", func), |
| 532 | [_this, params @ ..] => { |
Devin Jeanpierre | e77fa7e | 2022-06-02 14:05:58 -0700 | [diff] [blame] | 533 | impl_kind = ImplKind::new_trait( |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 534 | TraitName::CtorNew(params.iter().cloned().collect()), |
Devin Jeanpierre | 1b8f4a1 | 2022-03-22 21:29:42 +0000 | [diff] [blame] | 535 | record_name, |
Devin Jeanpierre | d9a6e6c | 2022-03-29 02:55:41 -0700 | [diff] [blame] | 536 | /* format_first_param_as_self= */ false, |
Devin Jeanpierre | 1b8f4a1 | 2022-03-22 21:29:42 +0000 | [diff] [blame] | 537 | ); |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 538 | } |
Lukasz Anforowicz | 73326af | 2022-01-05 01:13:10 +0000 | [diff] [blame] | 539 | } |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 540 | } else { |
| 541 | match func.params.len() { |
| 542 | 0 => bail!("Missing `__this` parameter in a constructor: {:?}", func), |
| 543 | 1 => { |
| 544 | impl_kind = ImplKind::new_trait( |
Devin Jeanpierre | e77fa7e | 2022-06-02 14:05:58 -0700 | [diff] [blame] | 545 | TraitName::UnpinConstructor { name: quote! {Default}, params: vec![] }, |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 546 | record_name, |
Devin Jeanpierre | d9a6e6c | 2022-03-29 02:55:41 -0700 | [diff] [blame] | 547 | /* format_first_param_as_self= */ false, |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 548 | ); |
| 549 | func_name = make_rs_ident("default"); |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 550 | } |
| 551 | 2 => { |
Devin Jeanpierre | 22f9149 | 2022-04-06 13:01:23 -0700 | [diff] [blame] | 552 | if param_types[1].is_shared_ref_to(record) { |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 553 | // Copy constructor |
| 554 | if should_derive_clone(record) { |
Devin Jeanpierre | d7b4810 | 2022-03-31 04:15:03 -0700 | [diff] [blame] | 555 | return Ok(None); |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 556 | } else { |
| 557 | impl_kind = ImplKind::new_trait( |
Devin Jeanpierre | e77fa7e | 2022-06-02 14:05:58 -0700 | [diff] [blame] | 558 | TraitName::UnpinConstructor { |
| 559 | name: quote! {Clone}, |
| 560 | params: vec![], |
| 561 | }, |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 562 | record_name, |
Devin Jeanpierre | d9a6e6c | 2022-03-29 02:55:41 -0700 | [diff] [blame] | 563 | /* format_first_param_as_self= */ true, |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 564 | ); |
| 565 | func_name = make_rs_ident("clone"); |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 566 | } |
| 567 | } else if !instance_method_metadata.is_explicit_ctor { |
Devin Jeanpierre | 22f9149 | 2022-04-06 13:01:23 -0700 | [diff] [blame] | 568 | let param_type = ¶m_types[1]; |
Devin Jeanpierre | e77fa7e | 2022-06-02 14:05:58 -0700 | [diff] [blame] | 569 | impl_kind = ImplKind::new_trait( |
| 570 | TraitName::UnpinConstructor { |
| 571 | name: quote! {From}, |
| 572 | params: vec![param_type.clone()], |
| 573 | }, |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 574 | record_name, |
Devin Jeanpierre | d9a6e6c | 2022-03-29 02:55:41 -0700 | [diff] [blame] | 575 | /* format_first_param_as_self= */ false, |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 576 | ); |
| 577 | func_name = make_rs_ident("from"); |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 578 | } else { |
Devin Jeanpierre | d7b4810 | 2022-03-31 04:15:03 -0700 | [diff] [blame] | 579 | bail!("Not yet supported type of constructor parameter",); |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 580 | } |
| 581 | } |
| 582 | _ => { |
| 583 | // TODO(b/216648347): Support bindings for other constructors. |
Devin Jeanpierre | d7b4810 | 2022-03-31 04:15:03 -0700 | [diff] [blame] | 584 | bail!("More than 1 constructor parameter is not supported yet",); |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 585 | } |
Lukasz Anforowicz | 73326af | 2022-01-05 01:13:10 +0000 | [diff] [blame] | 586 | } |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 587 | } |
| 588 | } |
| 589 | } |
Devin Jeanpierre | 9c34da6 | 2022-03-31 04:57:16 -0700 | [diff] [blame] | 590 | Ok(Some((func_name, impl_kind))) |
| 591 | } |
| 592 | |
| 593 | /// Generates Rust source code for a given `Func`. |
| 594 | /// |
| 595 | /// Returns: |
| 596 | /// |
| 597 | /// * `Err(_)`: couldn't import the function, emit an `UnsupportedItem`. |
| 598 | /// * `Ok(None)`: the function imported as "nothing". (For example, a defaulted |
| 599 | /// destructor might be mapped to no `Drop` impl at all.) |
| 600 | /// * `Ok((rs_api, rs_thunk, function_id))`: The Rust function definition, |
| 601 | /// thunk FFI definition, and function ID. |
| 602 | fn generate_func(func: &Func, ir: &IR) -> Result<Option<(RsSnippet, RsSnippet, FunctionId)>> { |
Devin Jeanpierre | 22f9149 | 2022-04-06 13:01:23 -0700 | [diff] [blame] | 603 | let param_types = func |
Devin Jeanpierre | 9c34da6 | 2022-03-31 04:57:16 -0700 | [diff] [blame] | 604 | .params |
| 605 | .iter() |
| 606 | .map(|p| { |
| 607 | RsTypeKind::new(&p.type_.rs_type, ir).with_context(|| { |
| 608 | format!("Failed to process type of parameter {:?} on {:?}", p, func) |
| 609 | }) |
| 610 | }) |
| 611 | .collect::<Result<Vec<_>>>()?; |
| 612 | |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 613 | let (func_name, mut impl_kind) = if let Some(values) = api_func_shape(func, ir, ¶m_types)? { |
| 614 | values |
| 615 | } else { |
| 616 | return Ok(None); |
| 617 | }; |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 618 | |
Devin Jeanpierre | d9cecff | 2022-03-29 02:53:58 -0700 | [diff] [blame] | 619 | let return_type_fragment = RsTypeKind::new(&func.return_type.rs_type, ir) |
Devin Jeanpierre | 8c6ff6d | 2022-04-06 12:57:14 -0700 | [diff] [blame] | 620 | .with_context(|| format!("Failed to format return type for {:?}", func))? |
| 621 | .format_as_return_type_fragment(); |
Devin Jeanpierre | d9cecff | 2022-03-29 02:53:58 -0700 | [diff] [blame] | 622 | let param_idents = |
| 623 | func.params.iter().map(|p| make_rs_ident(&p.identifier.identifier)).collect_vec(); |
Devin Jeanpierre | 3eb5bbd | 2022-04-06 12:56:19 -0700 | [diff] [blame] | 624 | |
Devin Jeanpierre | 22f9149 | 2022-04-06 13:01:23 -0700 | [diff] [blame] | 625 | let thunk = generate_func_thunk(func, ¶m_idents, ¶m_types, &return_type_fragment)?; |
Devin Jeanpierre | d9cecff | 2022-03-29 02:53:58 -0700 | [diff] [blame] | 626 | |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 627 | let api_func_def = { |
Devin Jeanpierre | 3eb5bbd | 2022-04-06 12:56:19 -0700 | [diff] [blame] | 628 | let mut return_type_fragment = return_type_fragment; |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 629 | let mut thunk_args = param_idents.iter().map(|id| quote! { #id}).collect_vec(); |
| 630 | let mut api_params = param_idents |
| 631 | .iter() |
| 632 | .zip(param_types.iter()) |
| 633 | .map(|(ident, type_)| quote! { #ident : #type_ }) |
| 634 | .collect_vec(); |
Lukasz Anforowicz | 9555127 | 2022-01-20 00:02:24 +0000 | [diff] [blame] | 635 | let mut lifetimes = func.lifetime_params.iter().collect_vec(); |
Devin Jeanpierre | 22f9149 | 2022-04-06 13:01:23 -0700 | [diff] [blame] | 636 | let mut maybe_first_api_param = param_types.get(0); |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 637 | |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 638 | if let ImplKind::Trait { |
Devin Jeanpierre | e77fa7e | 2022-06-02 14:05:58 -0700 | [diff] [blame] | 639 | trait_name: trait_name @ (TraitName::UnpinConstructor { .. } | TraitName::CtorNew(..)), |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 640 | .. |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 641 | } = &impl_kind |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 642 | { |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 643 | return_type_fragment = quote! { -> Self }; |
| 644 | |
Lukasz Anforowicz | f956462 | 2022-01-28 14:31:04 +0000 | [diff] [blame] | 645 | // Drop `__this` parameter from the public Rust API. Presence of |
| 646 | // element #0 is indirectly verified by a `Constructor`-related |
| 647 | // `match` branch a little bit above. |
| 648 | api_params.remove(0); |
| 649 | thunk_args.remove(0); |
Lukasz Anforowicz | 9555127 | 2022-01-20 00:02:24 +0000 | [diff] [blame] | 650 | |
Lukasz Anforowicz | 326c4e4 | 2022-01-27 14:43:00 +0000 | [diff] [blame] | 651 | // Remove the lifetime associated with `__this`. |
Devin Jeanpierre | 1b8f4a1 | 2022-03-22 21:29:42 +0000 | [diff] [blame] | 652 | ensure!( |
| 653 | func.return_type.rs_type.is_unit_type(), |
| 654 | "Unexpectedly non-void return type of a constructor: {:?}", |
| 655 | func |
| 656 | ); |
Lukasz Anforowicz | f7bdd39 | 2022-01-21 00:33:39 +0000 | [diff] [blame] | 657 | let maybe_first_lifetime = func.params[0].type_.rs_type.lifetime_args.first(); |
Lukasz Anforowicz | 55673c9 | 2022-01-27 19:37:26 +0000 | [diff] [blame] | 658 | let no_longer_needed_lifetime_id = maybe_first_lifetime |
| 659 | .ok_or_else(|| anyhow!("Missing lifetime on `__this` parameter: {:?}", func))?; |
| 660 | lifetimes.retain(|l| l.id != *no_longer_needed_lifetime_id); |
Devin Jeanpierre | 22f9149 | 2022-04-06 13:01:23 -0700 | [diff] [blame] | 661 | if let Some(type_still_dependent_on_removed_lifetime) = param_types |
Lukasz Anforowicz | 55673c9 | 2022-01-27 19:37:26 +0000 | [diff] [blame] | 662 | .iter() |
| 663 | .skip(1) // Skipping `__this` |
Lukasz Anforowicz | 90bdb96 | 2022-02-14 21:07:45 +0000 | [diff] [blame] | 664 | .flat_map(|t| t.lifetimes()) |
| 665 | .find(|lifetime_id| *lifetime_id == *no_longer_needed_lifetime_id) |
Lukasz Anforowicz | 55673c9 | 2022-01-27 19:37:26 +0000 | [diff] [blame] | 666 | { |
| 667 | bail!( |
| 668 | "The lifetime of `__this` is unexpectedly also used by another \ |
| 669 | parameter {:?} in function {:?}", |
| 670 | type_still_dependent_on_removed_lifetime, |
| 671 | func.name |
| 672 | ); |
Lukasz Anforowicz | 9555127 | 2022-01-20 00:02:24 +0000 | [diff] [blame] | 673 | } |
| 674 | |
| 675 | // Rebind `maybe_first_api_param` to the next param after `__this`. |
Devin Jeanpierre | 22f9149 | 2022-04-06 13:01:23 -0700 | [diff] [blame] | 676 | maybe_first_api_param = param_types.get(1); |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 677 | |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 678 | if let TraitName::CtorNew(args_type) = trait_name { |
| 679 | // CtorNew has no self param, so this should never be used -- and we should fail |
| 680 | // if it is. |
| 681 | maybe_first_api_param = None; |
| 682 | |
| 683 | return_type_fragment = quote! { -> Self::CtorType }; |
| 684 | let args_type = format_tuple_except_singleton(args_type); |
| 685 | api_params = vec![quote! {args: #args_type}]; |
| 686 | } |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 687 | } |
| 688 | |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 689 | // Change `__this: &'a SomeStruct` into `&'a self` if needed. |
Devin Jeanpierre | d9a6e6c | 2022-03-29 02:55:41 -0700 | [diff] [blame] | 690 | if impl_kind.format_first_param_as_self() { |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 691 | let first_api_param = maybe_first_api_param |
| 692 | .ok_or_else(|| anyhow!("No parameter to format as 'self': {:?}", func))?; |
Devin Jeanpierre | 8a4fa20 | 2022-06-08 12:33:11 -0700 | [diff] [blame] | 693 | let self_decl = first_api_param.format_as_self_param()?; |
Lukasz Anforowicz | f956462 | 2022-01-28 14:31:04 +0000 | [diff] [blame] | 694 | // Presence of element #0 is verified by `ok_or_else` on |
| 695 | // `maybe_first_api_param` above. |
| 696 | api_params[0] = self_decl; |
| 697 | thunk_args[0] = quote! { self }; |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 698 | } |
| 699 | |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 700 | // TODO(b/200067242): the Pin-wrapping code doesn't know to wrap &mut |
| 701 | // MaybeUninit<T> in Pin if T is !Unpin. It should understand |
| 702 | // 'structural pinning', so that we do not need into_inner_unchecked() |
| 703 | // here. |
Devin Jeanpierre | 3eb5bbd | 2022-04-06 12:56:19 -0700 | [diff] [blame] | 704 | let thunk_ident = thunk_ident(func); |
Devin Jeanpierre | 7bddfdb | 2022-03-14 11:04:40 +0000 | [diff] [blame] | 705 | let func_body = match &impl_kind { |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 706 | ImplKind::Trait { trait_name: TraitName::CtorNew(..), .. } => { |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 707 | let thunk_vars = format_tuple_except_singleton(&thunk_args); |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 708 | // TODO(b/226447239): check for copy here and instead use copies in that case? |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 709 | quote! { |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 710 | let #thunk_vars = args; |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 711 | ctor::FnCtor::new(move |dest: crate::rust_std::pin::Pin<&mut crate::rust_std::mem::MaybeUninit<Self>>| { |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 712 | unsafe { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 713 | crate::detail::#thunk_ident(crate::rust_std::pin::Pin::into_inner_unchecked(dest) #( , #thunk_args )*); |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 714 | } |
| 715 | }) |
| 716 | } |
| 717 | } |
Devin Jeanpierre | e77fa7e | 2022-06-02 14:05:58 -0700 | [diff] [blame] | 718 | ImplKind::Trait { trait_name: TraitName::UnpinConstructor { .. }, .. } => { |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 719 | // SAFETY: A user-defined constructor is not guaranteed to |
| 720 | // initialize all the fields. To make the `assume_init()` call |
| 721 | // below safe, the memory is zero-initialized first. This is a |
| 722 | // bit safer, because zero-initialized memory represents a valid |
| 723 | // value for the currently supported field types (this may |
| 724 | // change once the bindings generator starts supporting |
| 725 | // reference fields). TODO(b/213243309): Double-check if |
| 726 | // zero-initialization is desirable here. |
| 727 | quote! { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 728 | let mut tmp = crate::rust_std::mem::MaybeUninit::<Self>::zeroed(); |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 729 | unsafe { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 730 | crate::detail::#thunk_ident( &mut tmp #( , #thunk_args )* ); |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 731 | tmp.assume_init() |
Lukasz Anforowicz | 13cf749 | 2021-12-22 15:29:52 +0000 | [diff] [blame] | 732 | } |
Lukasz Anforowicz | 13cf749 | 2021-12-22 15:29:52 +0000 | [diff] [blame] | 733 | } |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 734 | } |
Devin Jeanpierre | 7bddfdb | 2022-03-14 11:04:40 +0000 | [diff] [blame] | 735 | _ => { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 736 | let mut body = quote! { crate::detail::#thunk_ident( #( #thunk_args ),* ) }; |
Devin Jeanpierre | 9ced4ef | 2022-06-08 12:39:10 -0700 | [diff] [blame^] | 737 | // Somewhat hacky: discard the return value for operator=. |
| 738 | if let UnqualifiedIdentifier::Operator(op) = &func.name { |
| 739 | if op.name == "=" { |
| 740 | body = quote! { #body; }; |
| 741 | return_type_fragment = quote! {}; |
| 742 | } |
| 743 | } |
Devin Jeanpierre | 7bddfdb | 2022-03-14 11:04:40 +0000 | [diff] [blame] | 744 | // Only need to wrap everything in an `unsafe { ... }` block if |
| 745 | // the *whole* api function is safe. |
Devin Jeanpierre | 7c3d8ed | 2022-03-29 03:02:04 -0700 | [diff] [blame] | 746 | if !impl_kind.is_unsafe() { |
Devin Jeanpierre | 7bddfdb | 2022-03-14 11:04:40 +0000 | [diff] [blame] | 747 | body = quote! { unsafe { #body } }; |
| 748 | } |
| 749 | body |
| 750 | } |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 751 | }; |
| 752 | |
Devin Jeanpierre | 7c3d8ed | 2022-03-29 03:02:04 -0700 | [diff] [blame] | 753 | let pub_ = match impl_kind { |
| 754 | ImplKind::None { .. } | ImplKind::Struct { .. } => quote! { pub }, |
| 755 | ImplKind::Trait { .. } => quote! {}, |
| 756 | }; |
| 757 | let unsafe_ = if impl_kind.is_unsafe() { |
| 758 | quote! { unsafe } |
| 759 | } else { |
| 760 | quote! {} |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 761 | }; |
| 762 | |
Lukasz Anforowicz | 5e62378 | 2022-03-14 16:52:23 +0000 | [diff] [blame] | 763 | let fn_generic_params: TokenStream; |
Devin Jeanpierre | e77fa7e | 2022-06-02 14:05:58 -0700 | [diff] [blame] | 764 | if let ImplKind::Trait { trait_name, trait_generic_params, .. } = &mut impl_kind { |
| 765 | let trait_lifetimes: HashSet<LifetimeId> = trait_name.lifetimes().collect(); |
| 766 | fn_generic_params = format_generic_params( |
| 767 | lifetimes.iter().filter(|lifetime| !trait_lifetimes.contains(&lifetime.id)), |
| 768 | ); |
| 769 | *trait_generic_params = format_generic_params( |
| 770 | lifetimes.iter().filter(|lifetime| trait_lifetimes.contains(&lifetime.id)), |
| 771 | ); |
Lukasz Anforowicz | 5e62378 | 2022-03-14 16:52:23 +0000 | [diff] [blame] | 772 | } else { |
| 773 | fn_generic_params = format_generic_params(lifetimes); |
| 774 | } |
Lukasz Anforowicz | 9555127 | 2022-01-20 00:02:24 +0000 | [diff] [blame] | 775 | |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 776 | quote! { |
| 777 | #[inline(always)] |
Lukasz Anforowicz | 5e62378 | 2022-03-14 16:52:23 +0000 | [diff] [blame] | 778 | #pub_ #unsafe_ fn #func_name #fn_generic_params( |
| 779 | #( #api_params ),* ) #return_type_fragment { |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 780 | #func_body |
| 781 | } |
Lukasz Anforowicz | 13cf749 | 2021-12-22 15:29:52 +0000 | [diff] [blame] | 782 | } |
Michael Forster | ed64202 | 2021-10-04 09:48:25 +0000 | [diff] [blame] | 783 | }; |
| 784 | |
Devin Jeanpierre | d9cecff | 2022-03-29 02:53:58 -0700 | [diff] [blame] | 785 | let doc_comment = generate_doc_comment(&func.doc_comment); |
| 786 | let mut features = BTreeSet::new(); |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 787 | let api_func: TokenStream; |
| 788 | let function_id: FunctionId; |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 789 | match impl_kind { |
Devin Jeanpierre | 7c3d8ed | 2022-03-29 03:02:04 -0700 | [diff] [blame] | 790 | ImplKind::None { .. } => { |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 791 | api_func = quote! { #doc_comment #api_func_def }; |
| 792 | function_id = FunctionId { self_type: None, function_path: func_name.into() }; |
| 793 | } |
Devin Jeanpierre | 6784e5e | 2022-03-29 02:59:01 -0700 | [diff] [blame] | 794 | ImplKind::Struct { record_name, .. } => { |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 795 | api_func = quote! { impl #record_name { #doc_comment #api_func_def } }; |
| 796 | function_id = FunctionId { |
| 797 | self_type: None, |
| 798 | function_path: syn::parse2(quote! { #record_name :: #func_name })?, |
| 799 | }; |
| 800 | } |
Lukasz Anforowicz | 5e62378 | 2022-03-14 16:52:23 +0000 | [diff] [blame] | 801 | ImplKind::Trait { trait_name, record_name, trait_generic_params, .. } => { |
Devin Jeanpierre | 46d515c | 2022-05-03 02:36:54 -0700 | [diff] [blame] | 802 | let extra_body; |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 803 | let extra_items; |
Devin Jeanpierre | 46d515c | 2022-05-03 02:36:54 -0700 | [diff] [blame] | 804 | match &trait_name { |
| 805 | TraitName::CtorNew(params) => { |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 806 | // This feature seems destined for stabilization, and makes the code |
| 807 | // simpler. |
| 808 | features.insert(make_rs_ident("type_alias_impl_trait")); |
Devin Jeanpierre | 46d515c | 2022-05-03 02:36:54 -0700 | [diff] [blame] | 809 | extra_body = quote! {type CtorType = impl ctor::Ctor<Output = Self>;}; |
| 810 | |
| 811 | if let [single_param] = params.as_slice() { |
| 812 | extra_items = quote! { |
| 813 | impl #trait_generic_params ctor::CtorNew<(#single_param,)> for #record_name { |
| 814 | #extra_body |
| 815 | |
| 816 | #[inline (always)] |
| 817 | fn ctor_new(args: (#single_param,)) -> Self::CtorType { |
| 818 | let (arg,) = args; |
| 819 | <Self as ctor::CtorNew<#single_param>>::ctor_new(arg) |
| 820 | } |
| 821 | } |
| 822 | } |
| 823 | } else { |
| 824 | extra_items = quote! {} |
| 825 | } |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 826 | } |
| 827 | _ => { |
Devin Jeanpierre | 46d515c | 2022-05-03 02:36:54 -0700 | [diff] [blame] | 828 | extra_body = quote! {}; |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 829 | extra_items = quote! {}; |
| 830 | } |
| 831 | }; |
Lukasz Anforowicz | 5e62378 | 2022-03-14 16:52:23 +0000 | [diff] [blame] | 832 | api_func = quote! { |
| 833 | #doc_comment |
| 834 | impl #trait_generic_params #trait_name for #record_name { |
Devin Jeanpierre | 46d515c | 2022-05-03 02:36:54 -0700 | [diff] [blame] | 835 | #extra_body |
Lukasz Anforowicz | 5e62378 | 2022-03-14 16:52:23 +0000 | [diff] [blame] | 836 | #api_func_def |
| 837 | } |
Devin Jeanpierre | 46d515c | 2022-05-03 02:36:54 -0700 | [diff] [blame] | 838 | #extra_items |
Lukasz Anforowicz | 5e62378 | 2022-03-14 16:52:23 +0000 | [diff] [blame] | 839 | }; |
Lukasz Anforowicz | ab65e29 | 2022-01-14 23:04:21 +0000 | [diff] [blame] | 840 | function_id = FunctionId { |
| 841 | self_type: Some(record_name.into()), |
| 842 | function_path: syn::parse2(quote! { #trait_name :: #func_name })?, |
| 843 | }; |
| 844 | } |
| 845 | } |
| 846 | |
Devin Jeanpierre | 3eb5bbd | 2022-04-06 12:56:19 -0700 | [diff] [blame] | 847 | Ok(Some((RsSnippet { features, tokens: api_func }, thunk.into(), function_id))) |
| 848 | } |
Devin Jeanpierre | 7e9a1de | 2021-12-03 08:04:22 +0000 | [diff] [blame] | 849 | |
Devin Jeanpierre | 3eb5bbd | 2022-04-06 12:56:19 -0700 | [diff] [blame] | 850 | fn generate_func_thunk( |
| 851 | func: &Func, |
| 852 | param_idents: &[Ident], |
Devin Jeanpierre | 22f9149 | 2022-04-06 13:01:23 -0700 | [diff] [blame] | 853 | param_types: &[RsTypeKind], |
Devin Jeanpierre | 3eb5bbd | 2022-04-06 12:56:19 -0700 | [diff] [blame] | 854 | return_type_fragment: &TokenStream, |
| 855 | ) -> Result<TokenStream> { |
| 856 | let thunk_attr = if can_skip_cc_thunk(func) { |
| 857 | let mangled_name = &func.mangled_name; |
| 858 | quote! {#[link_name = #mangled_name]} |
| 859 | } else { |
| 860 | quote! {} |
Michael Forster | ed64202 | 2021-10-04 09:48:25 +0000 | [diff] [blame] | 861 | }; |
| 862 | |
Devin Jeanpierre | 3eb5bbd | 2022-04-06 12:56:19 -0700 | [diff] [blame] | 863 | // For constructors, inject MaybeUninit into the type of `__this_` parameter. |
Devin Jeanpierre | 22f9149 | 2022-04-06 13:01:23 -0700 | [diff] [blame] | 864 | let mut param_types = param_types.into_iter(); |
Devin Jeanpierre | 3eb5bbd | 2022-04-06 12:56:19 -0700 | [diff] [blame] | 865 | let mut self_param = None; |
| 866 | if func.name == UnqualifiedIdentifier::Constructor { |
Devin Jeanpierre | 22f9149 | 2022-04-06 13:01:23 -0700 | [diff] [blame] | 867 | let first_param = param_types |
Devin Jeanpierre | 3eb5bbd | 2022-04-06 12:56:19 -0700 | [diff] [blame] | 868 | .next() |
| 869 | .ok_or_else(|| anyhow!("Constructors should have at least one parameter (__this)"))?; |
| 870 | self_param = Some(first_param.format_mut_ref_as_uninitialized().with_context(|| { |
| 871 | format!( |
| 872 | "Failed to format `__this` param for a constructor thunk: {:?}", |
| 873 | func.params.get(0) |
| 874 | ) |
| 875 | })?); |
Devin Jeanpierre | 3eb5bbd | 2022-04-06 12:56:19 -0700 | [diff] [blame] | 876 | } |
| 877 | |
| 878 | let thunk_ident = thunk_ident(func); |
Devin Jeanpierre | a68fdbc | 2022-05-27 04:16:36 -0700 | [diff] [blame] | 879 | let lifetimes = func.lifetime_params.iter(); |
Devin Jeanpierre | 3eb5bbd | 2022-04-06 12:56:19 -0700 | [diff] [blame] | 880 | let generic_params = format_generic_params(lifetimes); |
Devin Jeanpierre | 22f9149 | 2022-04-06 13:01:23 -0700 | [diff] [blame] | 881 | let param_types = self_param.into_iter().chain(param_types.map(|t| quote! {#t})); |
Devin Jeanpierre | 3eb5bbd | 2022-04-06 12:56:19 -0700 | [diff] [blame] | 882 | |
| 883 | Ok(quote! { |
| 884 | #thunk_attr |
| 885 | pub(crate) fn #thunk_ident #generic_params( #( #param_idents: #param_types ),* |
| 886 | ) #return_type_fragment ; |
| 887 | }) |
Michael Forster | ed64202 | 2021-10-04 09:48:25 +0000 | [diff] [blame] | 888 | } |
| 889 | |
Michael Forster | cc5941a | 2021-10-07 07:12:24 +0000 | [diff] [blame] | 890 | fn generate_doc_comment(comment: &Option<String>) -> TokenStream { |
| 891 | match comment { |
Michael Forster | 028800b | 2021-10-05 12:39:59 +0000 | [diff] [blame] | 892 | Some(text) => { |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 893 | // token_stream_printer (and rustfmt) don't put a space between /// and the doc |
| 894 | // comment, let's add it here so our comments are pretty. |
Lukasz Anforowicz | dd9ae0f | 2022-02-17 15:52:53 +0000 | [diff] [blame] | 895 | let doc = format!(" {}", text.replace('\n', "\n ")); |
Michael Forster | 028800b | 2021-10-05 12:39:59 +0000 | [diff] [blame] | 896 | quote! {#[doc=#doc]} |
| 897 | } |
| 898 | None => quote! {}, |
Michael Forster | cc5941a | 2021-10-07 07:12:24 +0000 | [diff] [blame] | 899 | } |
| 900 | } |
Lukasz Anforowicz | daff040 | 2021-12-23 00:37:50 +0000 | [diff] [blame] | 901 | |
Devin Jeanpierre | 92ca261 | 2022-04-06 11:35:13 -0700 | [diff] [blame] | 902 | fn format_generic_params<T: ToTokens>(params: impl IntoIterator<Item = T>) -> TokenStream { |
Lukasz Anforowicz | daff040 | 2021-12-23 00:37:50 +0000 | [diff] [blame] | 903 | let mut params = params.into_iter().peekable(); |
| 904 | if params.peek().is_none() { |
| 905 | quote! {} |
| 906 | } else { |
| 907 | quote! { < #( #params ),* > } |
| 908 | } |
| 909 | } |
| 910 | |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 911 | /// Formats singletons as themselves, and collections of n!=1 items as a tuple. |
| 912 | /// |
| 913 | /// In other words, this formats a collection of things as if via `#(#items),*`, |
| 914 | /// but without lint warnings. |
| 915 | /// |
| 916 | /// For example: |
| 917 | /// |
| 918 | /// * [] => () |
| 919 | /// * [x] => x // equivalent to (x), but lint-free. |
| 920 | /// * [x, y] => (x, y) |
| 921 | fn format_tuple_except_singleton<T: ToTokens>(items: &[T]) -> TokenStream { |
| 922 | match items { |
| 923 | [singleton] => quote! {#singleton}, |
| 924 | items => quote! {(#(#items),*)}, |
| 925 | } |
| 926 | } |
| 927 | |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 928 | fn should_implement_drop(record: &Record) -> bool { |
Lukasz Anforowicz | ff7df4a | 2022-06-02 14:27:45 -0700 | [diff] [blame] | 929 | match record.destructor { |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 930 | // TODO(b/202258760): Only omit destructor if `Copy` is specified. |
Lukasz Anforowicz | ff7df4a | 2022-06-02 14:27:45 -0700 | [diff] [blame] | 931 | SpecialMemberFunc::Trivial => false, |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 932 | |
| 933 | // TODO(b/212690698): Avoid calling into the C++ destructor (e.g. let |
| 934 | // Rust drive `drop`-ing) to avoid (somewhat unergonomic) ManuallyDrop |
| 935 | // if we can ask Rust to preserve C++ field destruction order in |
| 936 | // NontrivialMembers case. |
Lukasz Anforowicz | ff7df4a | 2022-06-02 14:27:45 -0700 | [diff] [blame] | 937 | SpecialMemberFunc::NontrivialMembers => true, |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 938 | |
| 939 | // The `impl Drop` for NontrivialUserDefined needs to call into the |
| 940 | // user-defined destructor on C++ side. |
Lukasz Anforowicz | ff7df4a | 2022-06-02 14:27:45 -0700 | [diff] [blame] | 941 | SpecialMemberFunc::NontrivialUserDefined => true, |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 942 | |
| 943 | // TODO(b/213516512): Today the IR doesn't contain Func entries for |
| 944 | // deleted functions/destructors/etc. But, maybe we should generate |
| 945 | // `impl Drop` in this case? With `unreachable!`? With |
| 946 | // `std::mem::forget`? |
Lukasz Anforowicz | ff7df4a | 2022-06-02 14:27:45 -0700 | [diff] [blame] | 947 | SpecialMemberFunc::Unavailable => false, |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 948 | } |
| 949 | } |
| 950 | |
| 951 | /// Returns whether fields of type `ty` need to be wrapped in `ManuallyDrop<T>` |
| 952 | /// to prevent the fields from being destructed twice (once by the C++ |
| 953 | /// destructor calkled from the `impl Drop` of the struct and once by `drop` on |
| 954 | /// the Rust side). |
| 955 | /// |
| 956 | /// A type is safe to destroy twice if it implements `Copy`. Fields of such |
| 957 | /// don't need to be wrapped in `ManuallyDrop<T>` even if the struct |
| 958 | /// containing the fields provides an `impl Drop` that calles into a C++ |
| 959 | /// destructor (in addition to dropping the fields on the Rust side). |
| 960 | /// |
| 961 | /// Note that it is not enough to just be `!needs_drop<T>()`: Rust only |
| 962 | /// guarantees that it is safe to use-after-destroy for `Copy` types. See |
| 963 | /// e.g. the documentation for |
| 964 | /// [`drop_in_place`](https://doc.rust-lang.org/std/ptr/fn.drop_in_place.html): |
| 965 | /// |
| 966 | /// > if `T` is not `Copy`, using the pointed-to value after calling |
| 967 | /// > `drop_in_place` can cause undefined behavior |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 968 | /// |
Devin Jeanpierre | fec5bfe | 2022-04-05 10:59:10 -0700 | [diff] [blame] | 969 | /// For non-Copy union fields, failing to use `ManuallyDrop<T>` would |
| 970 | /// additionally cause a compile-time error until https://github.com/rust-lang/rust/issues/55149 is stabilized. |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 971 | fn needs_manually_drop(ty: &ir::RsType, ir: &IR) -> Result<bool> { |
| 972 | let ty_implements_copy = RsTypeKind::new(ty, ir)?.implements_copy(); |
| 973 | Ok(!ty_implements_copy) |
| 974 | } |
| 975 | |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 976 | /// Returns the namespace qualifier for the given item. |
| 977 | fn generate_namespace_qualifier(item_id: ItemId, ir: &IR) -> Result<impl Iterator<Item = Ident>> { |
| 978 | let mut namespaces = vec![]; |
| 979 | let item: &Item = ir.find_decl(item_id)?; |
| 980 | let mut enclosing_namespace_id = item.enclosing_namespace_id(); |
| 981 | while let Some(parent_id) = enclosing_namespace_id { |
| 982 | let namespace_item = ir.find_decl(parent_id)?; |
| 983 | match namespace_item { |
| 984 | Item::Namespace(ns) => { |
| 985 | namespaces.push(make_rs_ident(&ns.name.identifier)); |
| 986 | enclosing_namespace_id = ns.enclosing_namespace_id; |
| 987 | } |
| 988 | _ => { |
| 989 | bail!("Expected namespace"); |
| 990 | } |
| 991 | } |
| 992 | } |
| 993 | Ok(namespaces.into_iter().rev()) |
| 994 | } |
| 995 | |
Devin Jeanpierre | c0543eb | 2022-04-20 16:00:34 -0700 | [diff] [blame] | 996 | /// Generates Rust source code for a given incomplete record declaration. |
| 997 | fn generate_incomplete_record(incomplete_record: &IncompleteRecord) -> Result<TokenStream> { |
| 998 | let ident = make_rs_ident(&incomplete_record.cc_name); |
| 999 | let name = &incomplete_record.cc_name; |
| 1000 | Ok(quote! { |
| 1001 | forward_declare::forward_declare!( |
| 1002 | pub #ident __SPACE__ = __SPACE__ forward_declare::symbol!(#name) |
| 1003 | ); |
| 1004 | }) |
| 1005 | } |
| 1006 | |
Lukasz Anforowicz | 0dbcf0e | 2022-05-17 06:46:24 -0700 | [diff] [blame] | 1007 | fn make_rs_field_ident(field: &Field, field_index: usize) -> Ident { |
| 1008 | match field.identifier.as_ref() { |
| 1009 | None => make_rs_ident(&format!("__unnamed_field{}", field_index)), |
| 1010 | Some(Identifier { identifier }) => make_rs_ident(identifier), |
| 1011 | } |
| 1012 | } |
| 1013 | |
Lukasz Anforowicz | fea0db9 | 2022-05-17 17:28:04 -0700 | [diff] [blame] | 1014 | /// Gets the type of `field` for layout purposes. |
| 1015 | /// |
| 1016 | /// Note that `get_field_rs_type_for_layout` may return Err (for |
| 1017 | /// `is_no_unique_address` fields) even if `field.type_` is Ok. |
| 1018 | fn get_field_rs_type_for_layout(field: &Field) -> Result<&RsType, &str> { |
| 1019 | // [[no_unique_address]] fields are replaced by a type-less, unaligned block of |
| 1020 | // memory which fills space up to the next field. |
Lukasz Anforowicz | 5765bb8 | 2022-05-17 17:21:06 -0700 | [diff] [blame] | 1021 | // See: docs/struct_layout |
Lukasz Anforowicz | fea0db9 | 2022-05-17 17:28:04 -0700 | [diff] [blame] | 1022 | if field.is_no_unique_address { |
| 1023 | return Err("`[[no_unique_address]]` attribute was present."); |
| 1024 | } |
| 1025 | |
| 1026 | field.type_.as_ref().map(|t| &t.rs_type).map_err(String::as_str) |
Lukasz Anforowicz | 5765bb8 | 2022-05-17 17:21:06 -0700 | [diff] [blame] | 1027 | } |
| 1028 | |
Michael Forster | 82c02d3 | 2022-05-20 21:47:33 -0700 | [diff] [blame] | 1029 | /// Returns the type of a type-less, unaligned block of memory that can hold a |
| 1030 | /// specified number of bits, rounded up to the next multiple of 8. |
| 1031 | fn bit_padding(padding_size_in_bits: usize) -> TokenStream { |
| 1032 | let padding_size = Literal::usize_unsuffixed((padding_size_in_bits + 7) / 8); |
| 1033 | quote! { [crate::rust_std::mem::MaybeUninit<u8>; #padding_size] } |
| 1034 | } |
| 1035 | |
Michael Forster | bee8448 | 2021-10-13 08:35:38 +0000 | [diff] [blame] | 1036 | /// Generates Rust source code for a given `Record` and associated assertions as |
| 1037 | /// a tuple. |
Rosica Dejanovska | b2bd59e | 2022-04-11 09:02:03 -0700 | [diff] [blame] | 1038 | fn generate_record( |
| 1039 | record: &Record, |
| 1040 | ir: &IR, |
| 1041 | overloaded_funcs: &HashSet<FunctionId>, |
| 1042 | ) -> Result<GeneratedItem> { |
Lukasz Anforowicz | 4c3a2cc | 2022-03-11 00:24:49 +0000 | [diff] [blame] | 1043 | let ident = make_rs_ident(&record.rs_name); |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 1044 | let namespace_qualifier = generate_namespace_qualifier(record.id, ir)?; |
| 1045 | let qualified_ident = { |
| 1046 | quote! { crate:: #(#namespace_qualifier::)* #ident } |
| 1047 | }; |
Michael Forster | cc5941a | 2021-10-07 07:12:24 +0000 | [diff] [blame] | 1048 | let doc_comment = generate_doc_comment(&record.doc_comment); |
Lukasz Anforowicz | fed64e6 | 2022-03-22 22:39:04 +0000 | [diff] [blame] | 1049 | |
| 1050 | let mut field_copy_trait_assertions: Vec<TokenStream> = vec![]; |
Michael Forster | 82c02d3 | 2022-05-20 21:47:33 -0700 | [diff] [blame] | 1051 | |
| 1052 | let fields_with_bounds = (record.fields.iter()) |
| 1053 | .map(|field| { |
| 1054 | ( |
| 1055 | // We don't represent bitfields directly in Rust. We drop the field itself here |
| 1056 | // and only retain the offset information. Adjacent bitfields then get merged in |
| 1057 | // the next step. |
| 1058 | if field.is_bitfield { None } else { Some(field) }, |
| 1059 | field.offset, |
| 1060 | // We retain the end offset of fields only if we have a matching Rust type |
| 1061 | // to represent them. Otherwise we'll fill up all the space to the next field. |
| 1062 | // See: docs/struct_layout |
Marcel Hlopko | f05621b | 2022-05-25 00:26:06 -0700 | [diff] [blame] | 1063 | match get_field_rs_type_for_layout(field) { |
| 1064 | // Regular field |
| 1065 | Ok(_rs_type) => Some(field.offset + field.size), |
| 1066 | // Opaque field |
| 1067 | Err(_error) => { |
| 1068 | if record.is_union { |
| 1069 | Some(field.size) |
| 1070 | } else { |
| 1071 | None |
| 1072 | } |
| 1073 | } |
| 1074 | }, |
Michael Forster | 82c02d3 | 2022-05-20 21:47:33 -0700 | [diff] [blame] | 1075 | vec![format!( |
| 1076 | "{} : {} bits", |
| 1077 | field.identifier.as_ref().map(|i| i.identifier.clone()).unwrap_or("".into()), |
| 1078 | field.size |
| 1079 | )], |
| 1080 | ) |
| 1081 | }) |
| 1082 | // Merge consecutive bitfields. This is necessary, because they may share storage in the |
| 1083 | // same byte. |
| 1084 | .coalesce(|first, second| match (first, second) { |
| 1085 | ((None, offset, _, desc1), (None, _, end, desc2)) => { |
| 1086 | Ok((None, offset, end, [desc1, desc2].concat())) |
| 1087 | } |
| 1088 | pair => Err(pair), |
| 1089 | }); |
| 1090 | |
| 1091 | // Pair up fields with the preceeding and following fields (if any): |
| 1092 | // - the end offset of the previous field determines if we need to insert |
| 1093 | // padding. |
| 1094 | // - the start offset of the next field may be need to grow the current field to |
| 1095 | // there. |
| 1096 | // This uses two separate `map` invocations on purpose to limit available state. |
| 1097 | let field_definitions = iter::once(None) |
| 1098 | .chain(fields_with_bounds.clone().map(Some)) |
| 1099 | .chain(iter::once(None)) |
| 1100 | .tuple_windows() |
| 1101 | .map(|(prev, cur, next)| { |
| 1102 | let (field, offset, end, desc) = cur.unwrap(); |
| 1103 | let prev_end = prev.as_ref().map(|(_, _, e, _)| *e).flatten().unwrap_or(offset); |
| 1104 | let next_offset = next.map(|(_, o, _, _)| o); |
| 1105 | let end = end.or(next_offset).unwrap_or(record.size * 8); |
| 1106 | |
| 1107 | if let Some((Some(prev_field), _, Some(prev_end), _)) = prev { |
| 1108 | assert!( |
| 1109 | record.is_union || prev_end <= offset, |
| 1110 | "Unexpected offset+size for field {:?} in record {}", |
| 1111 | prev_field, |
| 1112 | record.cc_name |
| 1113 | ); |
| 1114 | } |
| 1115 | |
| 1116 | (field, prev_end, offset, end, desc) |
| 1117 | }) |
Devin Jeanpierre | b69bcae | 2022-02-03 09:45:50 +0000 | [diff] [blame] | 1118 | .enumerate() |
Michael Forster | 82c02d3 | 2022-05-20 21:47:33 -0700 | [diff] [blame] | 1119 | .map(|(field_index, (field, prev_end, offset, end, desc))| { |
| 1120 | // `is_opaque_blob` and bitfield representations are always |
| 1121 | // unaligned, even though the actual C++ field might be aligned. |
| 1122 | // To put the current field at the right offset, we might need to |
| 1123 | // insert some extra padding. |
| 1124 | // |
| 1125 | // No padding should be needed if the type of the current field is |
| 1126 | // known (i.e. if the current field is correctly aligned based on |
| 1127 | // its original type). |
| 1128 | // |
| 1129 | // We also don't need padding if we're in a union. |
| 1130 | let padding_size_in_bits = if record.is_union |
| 1131 | || (field.is_some() && get_field_rs_type_for_layout(field.unwrap()).is_ok()) |
| 1132 | { |
| 1133 | 0 |
| 1134 | } else { |
| 1135 | let padding_start = (prev_end + 7) / 8 * 8; // round up to byte boundary |
| 1136 | offset - padding_start |
| 1137 | }; |
| 1138 | |
| 1139 | let padding = if padding_size_in_bits == 0 { |
| 1140 | quote! {} |
| 1141 | } else { |
| 1142 | let padding_name = make_rs_ident(&format!("__padding{}", field_index)); |
| 1143 | let padding_type = bit_padding(padding_size_in_bits); |
| 1144 | quote! { #padding_name: #padding_type, } |
| 1145 | }; |
| 1146 | |
| 1147 | // Bitfields get represented by private padding to ensure overall |
| 1148 | // struct layout is compatible. |
| 1149 | if field.is_none() { |
| 1150 | let name = make_rs_ident(&format!("__bitfields{}", field_index)); |
| 1151 | let bitfield_padding = bit_padding(end - offset); |
| 1152 | return Ok(quote! { |
| 1153 | __NEWLINE__ #( __COMMENT__ #desc )* |
| 1154 | #padding #name: #bitfield_padding |
| 1155 | }); |
| 1156 | } |
| 1157 | let field = field.unwrap(); |
| 1158 | |
Lukasz Anforowicz | 0dbcf0e | 2022-05-17 06:46:24 -0700 | [diff] [blame] | 1159 | let ident = make_rs_field_ident(field, field_index); |
Lukasz Anforowicz | fea0db9 | 2022-05-17 17:28:04 -0700 | [diff] [blame] | 1160 | let doc_comment = match field.type_.as_ref() { |
| 1161 | Ok(_) => generate_doc_comment(&field.doc_comment), |
| 1162 | Err(msg) => { |
| 1163 | let supplemental_text = |
| 1164 | format!("Reason for representing this field as a blob of bytes:\n{}", msg); |
| 1165 | let new_text = match field.doc_comment.as_ref() { |
| 1166 | None => supplemental_text, |
| 1167 | Some(old_text) => format!("{}\n\n{}", old_text, supplemental_text), |
| 1168 | }; |
| 1169 | generate_doc_comment(&Some(new_text)) |
| 1170 | } |
| 1171 | }; |
| 1172 | let access = if field.access == AccessSpecifier::Public |
| 1173 | && get_field_rs_type_for_layout(field).is_ok() |
| 1174 | { |
Lukasz Anforowicz | 0dbcf0e | 2022-05-17 06:46:24 -0700 | [diff] [blame] | 1175 | quote! { pub } |
| 1176 | } else { |
Rosica Dejanovska | 6676ad8 | 2022-06-07 14:28:59 -0700 | [diff] [blame] | 1177 | quote! { pub(crate) } |
Lukasz Anforowicz | 0dbcf0e | 2022-05-17 06:46:24 -0700 | [diff] [blame] | 1178 | }; |
| 1179 | |
Lukasz Anforowicz | fea0db9 | 2022-05-17 17:28:04 -0700 | [diff] [blame] | 1180 | let field_type = match get_field_rs_type_for_layout(field) { |
Michael Forster | 82c02d3 | 2022-05-20 21:47:33 -0700 | [diff] [blame] | 1181 | Err(_) => bit_padding(end - field.offset), |
Lukasz Anforowicz | fea0db9 | 2022-05-17 17:28:04 -0700 | [diff] [blame] | 1182 | Ok(rs_type) => { |
| 1183 | let mut formatted = format_rs_type(&rs_type, ir).with_context(|| { |
Lukasz Anforowicz | 0dbcf0e | 2022-05-17 06:46:24 -0700 | [diff] [blame] | 1184 | format!( |
| 1185 | "Failed to format type for field {:?} on record {:?}", |
| 1186 | field, record |
| 1187 | ) |
| 1188 | })?; |
Lukasz Anforowicz | fea0db9 | 2022-05-17 17:28:04 -0700 | [diff] [blame] | 1189 | if should_implement_drop(record) || record.is_union { |
| 1190 | if needs_manually_drop(rs_type, ir)? { |
| 1191 | // TODO(b/212690698): Avoid (somewhat unergonomic) ManuallyDrop |
| 1192 | // if we can ask Rust to preserve field destruction order if the |
Lukasz Anforowicz | ff7df4a | 2022-06-02 14:27:45 -0700 | [diff] [blame] | 1193 | // destructor is the SpecialMemberFunc::NontrivialMembers |
Lukasz Anforowicz | fea0db9 | 2022-05-17 17:28:04 -0700 | [diff] [blame] | 1194 | // case. |
| 1195 | formatted = quote! { crate::rust_std::mem::ManuallyDrop<#formatted> } |
| 1196 | } else { |
| 1197 | field_copy_trait_assertions.push(quote! { |
| 1198 | const _: () = { |
| 1199 | static_assertions::assert_impl_all!(#formatted: Copy); |
| 1200 | }; |
| 1201 | }); |
| 1202 | } |
| 1203 | }; |
| 1204 | formatted |
| 1205 | } |
Lukasz Anforowicz | 6d55363 | 2022-01-06 21:36:14 +0000 | [diff] [blame] | 1206 | }; |
Lukasz Anforowicz | 0dbcf0e | 2022-05-17 06:46:24 -0700 | [diff] [blame] | 1207 | |
Lukasz Anforowicz | 5765bb8 | 2022-05-17 17:21:06 -0700 | [diff] [blame] | 1208 | Ok(quote! { #padding #doc_comment #access #ident: #field_type }) |
Devin Jeanpierre | 7e9a1de | 2021-12-03 08:04:22 +0000 | [diff] [blame] | 1209 | }) |
Devin Jeanpierre | 09c6f45 | 2021-09-29 07:34:24 +0000 | [diff] [blame] | 1210 | .collect::<Result<Vec<_>>>()?; |
Lukasz Anforowicz | fed64e6 | 2022-03-22 22:39:04 +0000 | [diff] [blame] | 1211 | |
Lukasz Anforowicz | dc37d6d | 2022-05-17 08:20:13 -0700 | [diff] [blame] | 1212 | let size = Literal::usize_unsuffixed(record.size); |
| 1213 | let alignment = Literal::usize_unsuffixed(record.alignment); |
Marcel Hlopko | fa9a395 | 2022-05-10 01:34:13 -0700 | [diff] [blame] | 1214 | let field_offset_assertions = if record.is_union { |
| 1215 | // TODO(https://github.com/Gilnaa/memoffset/issues/66): generate assertions for unions once |
| 1216 | // offsetof supports them. |
| 1217 | vec![] |
| 1218 | } else { |
Michael Forster | 82c02d3 | 2022-05-20 21:47:33 -0700 | [diff] [blame] | 1219 | fields_with_bounds |
Devin Jeanpierre | a2be2a2 | 2022-05-18 18:59:05 -0700 | [diff] [blame] | 1220 | .enumerate() |
Michael Forster | 82c02d3 | 2022-05-20 21:47:33 -0700 | [diff] [blame] | 1221 | .map(|(field_index, (field, _, _, _))| { |
| 1222 | if let Some(field) = field { |
| 1223 | let field_ident = make_rs_field_ident(field, field_index); |
Lukasz Anforowicz | 30360ba | 2022-05-23 12:15:12 -0700 | [diff] [blame] | 1224 | |
| 1225 | // The assertion below reinforces that the division by 8 on the next line is |
| 1226 | // justified (because the bitfields have been coallesced / filtered out |
| 1227 | // earlier). |
| 1228 | assert_eq!(field.offset % 8, 0); |
| 1229 | let expected_offset = Literal::usize_unsuffixed(field.offset / 8); |
| 1230 | |
Michael Forster | 82c02d3 | 2022-05-20 21:47:33 -0700 | [diff] [blame] | 1231 | let actual_offset_expr = quote! { |
Lukasz Anforowicz | 30360ba | 2022-05-23 12:15:12 -0700 | [diff] [blame] | 1232 | memoffset_unstable_const::offset_of!(#qualified_ident, #field_ident) |
Michael Forster | 82c02d3 | 2022-05-20 21:47:33 -0700 | [diff] [blame] | 1233 | }; |
| 1234 | quote! { |
| 1235 | const _: () = assert!(#actual_offset_expr == #expected_offset); |
| 1236 | } |
| 1237 | } else { |
| 1238 | quote! {} |
Devin Jeanpierre | a2be2a2 | 2022-05-18 18:59:05 -0700 | [diff] [blame] | 1239 | } |
| 1240 | }) |
| 1241 | .collect_vec() |
Marcel Hlopko | fa9a395 | 2022-05-10 01:34:13 -0700 | [diff] [blame] | 1242 | }; |
Lukasz Anforowicz | fed64e6 | 2022-03-22 22:39:04 +0000 | [diff] [blame] | 1243 | // TODO(b/212696226): Generate `assert_impl_all!` or `assert_not_impl_all!` |
| 1244 | // assertions about the `Copy` trait - this trait should be implemented |
| 1245 | // iff `should_implement_drop(record)` is false. |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 1246 | let mut record_features = BTreeSet::new(); |
| 1247 | let mut assertion_features = BTreeSet::new(); |
Devin Jeanpierre | 273eeae | 2021-10-06 13:29:35 +0000 | [diff] [blame] | 1248 | |
| 1249 | // TODO(mboehme): For the time being, we're using unstable features to |
| 1250 | // be able to use offset_of!() in static assertions. This is fine for a |
| 1251 | // prototype, but longer-term we want to either get those features |
| 1252 | // stabilized or find an alternative. For more details, see |
| 1253 | // b/200120034#comment15 |
Marcel Hlopko | eaae9b7 | 2022-01-21 15:54:11 +0000 | [diff] [blame] | 1254 | assertion_features.insert(make_rs_ident("const_ptr_offset_from")); |
Devin Jeanpierre | 2ed14ec | 2021-10-06 11:32:19 +0000 | [diff] [blame] | 1255 | |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 1256 | let derives = generate_derives(record); |
Devin Jeanpierre | 9227d2c | 2021-10-06 12:26:05 +0000 | [diff] [blame] | 1257 | let derives = if derives.is_empty() { |
| 1258 | quote! {} |
| 1259 | } else { |
| 1260 | quote! {#[derive( #(#derives),* )]} |
| 1261 | }; |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 1262 | let record_kind = if record.is_union { |
| 1263 | quote! { union } |
| 1264 | } else { |
| 1265 | quote! { struct } |
| 1266 | }; |
Devin Jeanpierre | 190b90a | 2022-05-24 06:00:34 -0700 | [diff] [blame] | 1267 | |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 1268 | let recursively_pinned_attribute = if record.is_unpin() { |
Lukasz Anforowicz | dd9ae0f | 2022-02-17 15:52:53 +0000 | [diff] [blame] | 1269 | quote! {} |
Devin Jeanpierre | ea700d3 | 2021-10-06 11:33:56 +0000 | [diff] [blame] | 1270 | } else { |
Michael Forster | bee8448 | 2021-10-13 08:35:38 +0000 | [diff] [blame] | 1271 | // negative_impls are necessary for universal initialization due to Rust's |
| 1272 | // coherence rules: PhantomPinned isn't enough to prove to Rust that a |
| 1273 | // blanket impl that requires Unpin doesn't apply. See http://<internal link>=h.f6jp8ifzgt3n |
Marcel Hlopko | eaae9b7 | 2022-01-21 15:54:11 +0000 | [diff] [blame] | 1274 | record_features.insert(make_rs_ident("negative_impls")); |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 1275 | if should_implement_drop(record) { |
| 1276 | quote! {#[ctor::recursively_pinned(PinnedDrop)]} |
| 1277 | } else { |
| 1278 | quote! {#[ctor::recursively_pinned]} |
Lukasz Anforowicz | dd9ae0f | 2022-02-17 15:52:53 +0000 | [diff] [blame] | 1279 | } |
| 1280 | }; |
Devin Jeanpierre | 273eeae | 2021-10-06 13:29:35 +0000 | [diff] [blame] | 1281 | |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 1282 | let mut repr_attributes = vec![quote! {C}]; |
| 1283 | if record.override_alignment && record.alignment > 1 { |
| 1284 | let alignment = Literal::usize_unsuffixed(record.alignment); |
| 1285 | repr_attributes.push(quote! {align(#alignment)}); |
| 1286 | } |
| 1287 | |
Devin Jeanpierre | 1221c2a | 2022-05-05 22:36:22 -0700 | [diff] [blame] | 1288 | // Adjust the struct to also include base class subobjects, vtables, etc. |
| 1289 | let head_padding = if let Some(first_field) = record.fields.first() { |
| 1290 | first_field.offset / 8 |
| 1291 | } else { |
| 1292 | record.size |
| 1293 | }; |
Devin Jeanpierre | a2be2a2 | 2022-05-18 18:59:05 -0700 | [diff] [blame] | 1294 | // Prevent direct initialization for non-aggregate structs. |
| 1295 | // |
| 1296 | // Technically, any implicit-lifetime type is going to be fine to initialize |
| 1297 | // using direct initialization of the fields, even if it is not an aggregate, |
| 1298 | // because this is "just" setting memory to the appropriate values, and |
| 1299 | // implicit-lifetime types can automatically begin their lifetime without |
| 1300 | // running a constructor at all. |
| 1301 | // |
| 1302 | // However, not all types used in interop are implicit-lifetime. For example, |
| 1303 | // while any `Unpin` C++ value is, some `!Unpin` structs (e.g. `std::list`) |
| 1304 | // will not be. So for consistency, we apply the same rule for both |
| 1305 | // implicit-lifetime and non-implicit-lifetime types: the C++ rule, that the |
| 1306 | // type must be an *aggregate* type. |
| 1307 | // |
| 1308 | // TODO(b/232969667): Protect unions from direct initialization, too. |
| 1309 | let allow_direct_init = record.is_aggregate || record.is_union; |
| 1310 | let head_padding = if head_padding > 0 || !allow_direct_init { |
Devin Jeanpierre | 1221c2a | 2022-05-05 22:36:22 -0700 | [diff] [blame] | 1311 | let n = proc_macro2::Literal::usize_unsuffixed(head_padding); |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 1312 | quote! { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 1313 | __non_field_data: [crate::rust_std::mem::MaybeUninit<u8>; #n], |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 1314 | } |
| 1315 | } else { |
| 1316 | quote! {} |
| 1317 | }; |
| 1318 | |
Devin Jeanpierre | 2745013 | 2022-04-11 13:52:01 -0700 | [diff] [blame] | 1319 | // TODO(b/227442773): After namespace support is added, use the fully-namespaced |
| 1320 | // name. |
| 1321 | let incomplete_symbol = &record.cc_name; |
| 1322 | let incomplete_definition = quote! { |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 1323 | forward_declare::unsafe_define!(forward_declare::symbol!(#incomplete_symbol), #qualified_ident); |
Devin Jeanpierre | 2745013 | 2022-04-11 13:52:01 -0700 | [diff] [blame] | 1324 | }; |
| 1325 | |
Devin Jeanpierre | 58181ac | 2022-02-14 21:30:05 +0000 | [diff] [blame] | 1326 | let no_unique_address_accessors = cc_struct_no_unique_address_impl(record, ir)?; |
Devin Jeanpierre | 8763a8e | 2022-04-26 15:45:13 -0700 | [diff] [blame] | 1327 | let mut record_generated_items = record |
Rosica Dejanovska | b2bd59e | 2022-04-11 09:02:03 -0700 | [diff] [blame] | 1328 | .child_item_ids |
| 1329 | .iter() |
| 1330 | .map(|id| { |
| 1331 | let item = ir.find_decl(*id)?; |
| 1332 | generate_item(item, ir, overloaded_funcs) |
| 1333 | }) |
| 1334 | .collect::<Result<Vec<_>>>()?; |
| 1335 | |
Devin Jeanpierre | 8763a8e | 2022-04-26 15:45:13 -0700 | [diff] [blame] | 1336 | record_generated_items.push(cc_struct_upcast_impl(record, ir)?); |
| 1337 | |
Rosica Dejanovska | b2bd59e | 2022-04-11 09:02:03 -0700 | [diff] [blame] | 1338 | let mut items = vec![]; |
| 1339 | let mut thunks_from_record_items = vec![]; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 1340 | let mut thunk_impls_from_record_items = vec![]; |
Rosica Dejanovska | b2bd59e | 2022-04-11 09:02:03 -0700 | [diff] [blame] | 1341 | let mut assertions_from_record_items = vec![]; |
| 1342 | |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 1343 | for generated in record_generated_items { |
| 1344 | items.push(generated.item); |
Rosica Dejanovska | b2bd59e | 2022-04-11 09:02:03 -0700 | [diff] [blame] | 1345 | if !generated.thunks.is_empty() { |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 1346 | thunks_from_record_items.push(generated.thunks); |
Rosica Dejanovska | b2bd59e | 2022-04-11 09:02:03 -0700 | [diff] [blame] | 1347 | } |
| 1348 | if !generated.assertions.is_empty() { |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 1349 | assertions_from_record_items.push(generated.assertions); |
| 1350 | } |
| 1351 | if !generated.thunk_impls.is_empty() { |
| 1352 | thunk_impls_from_record_items.push(generated.thunk_impls); |
Rosica Dejanovska | b2bd59e | 2022-04-11 09:02:03 -0700 | [diff] [blame] | 1353 | } |
| 1354 | record_features.extend(generated.features.clone()); |
| 1355 | } |
| 1356 | |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 1357 | let record_tokens = quote! { |
Michael Forster | 028800b | 2021-10-05 12:39:59 +0000 | [diff] [blame] | 1358 | #doc_comment |
Devin Jeanpierre | 9227d2c | 2021-10-06 12:26:05 +0000 | [diff] [blame] | 1359 | #derives |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 1360 | #recursively_pinned_attribute |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 1361 | #[repr(#( #repr_attributes ),*)] |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 1362 | pub #record_kind #ident { |
Devin Jeanpierre | 1221c2a | 2022-05-05 22:36:22 -0700 | [diff] [blame] | 1363 | #head_padding |
Lukasz Anforowicz | 0dbcf0e | 2022-05-17 06:46:24 -0700 | [diff] [blame] | 1364 | #( #field_definitions, )* |
Marcel Hlopko | b4b2874 | 2021-09-15 12:45:20 +0000 | [diff] [blame] | 1365 | } |
Googler | ec648ff | 2021-09-23 07:19:53 +0000 | [diff] [blame] | 1366 | |
Devin Jeanpierre | 2745013 | 2022-04-11 13:52:01 -0700 | [diff] [blame] | 1367 | #incomplete_definition |
| 1368 | |
Devin Jeanpierre | 58181ac | 2022-02-14 21:30:05 +0000 | [diff] [blame] | 1369 | #no_unique_address_accessors |
| 1370 | |
Rosica Dejanovska | b2bd59e | 2022-04-11 09:02:03 -0700 | [diff] [blame] | 1371 | __NEWLINE__ __NEWLINE__ |
| 1372 | #( #items __NEWLINE__ __NEWLINE__)* |
Devin Jeanpierre | 273eeae | 2021-10-06 13:29:35 +0000 | [diff] [blame] | 1373 | }; |
| 1374 | |
Lukasz Anforowicz | 95938f8 | 2022-03-24 13:51:54 +0000 | [diff] [blame] | 1375 | let record_trait_assertions = { |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 1376 | let record_type_name = RsTypeKind::new_record(record, ir)?.to_token_stream(); |
Lukasz Anforowicz | 95938f8 | 2022-03-24 13:51:54 +0000 | [diff] [blame] | 1377 | let mut assertions: Vec<TokenStream> = vec![]; |
| 1378 | let mut add_assertion = |assert_impl_macro: TokenStream, trait_name: TokenStream| { |
| 1379 | assertions.push(quote! { |
Lukasz Anforowicz | 768bba3 | 2022-04-11 14:06:13 -0700 | [diff] [blame] | 1380 | const _: () = { static_assertions::#assert_impl_macro (#record_type_name: #trait_name); }; |
Lukasz Anforowicz | 95938f8 | 2022-03-24 13:51:54 +0000 | [diff] [blame] | 1381 | }); |
| 1382 | }; |
| 1383 | if should_derive_clone(record) { |
| 1384 | add_assertion(quote! { assert_impl_all! }, quote! { Clone }); |
| 1385 | } else { |
| 1386 | // Can't `assert_not_impl_all!` here, because `Clone` may be |
| 1387 | // implemented rather than derived. |
| 1388 | } |
| 1389 | let mut add_conditional_assertion = |should_impl_trait: bool, trait_name: TokenStream| { |
| 1390 | let assert_impl_macro = if should_impl_trait { |
| 1391 | quote! { assert_impl_all! } |
| 1392 | } else { |
| 1393 | quote! { assert_not_impl_all! } |
| 1394 | }; |
| 1395 | add_assertion(assert_impl_macro, trait_name); |
| 1396 | }; |
| 1397 | add_conditional_assertion(should_derive_copy(record), quote! { Copy }); |
| 1398 | add_conditional_assertion(should_implement_drop(record), quote! { Drop }); |
| 1399 | assertions |
| 1400 | }; |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 1401 | let assertion_tokens = quote! { |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 1402 | const _: () = assert!(rust_std::mem::size_of::<#qualified_ident>() == #size); |
| 1403 | const _: () = assert!(rust_std::mem::align_of::<#qualified_ident>() == #alignment); |
Lukasz Anforowicz | 95938f8 | 2022-03-24 13:51:54 +0000 | [diff] [blame] | 1404 | #( #record_trait_assertions )* |
Lukasz Anforowicz | fed64e6 | 2022-03-22 22:39:04 +0000 | [diff] [blame] | 1405 | #( #field_offset_assertions )* |
| 1406 | #( #field_copy_trait_assertions )* |
Rosica Dejanovska | b2bd59e | 2022-04-11 09:02:03 -0700 | [diff] [blame] | 1407 | #( #assertions_from_record_items )* |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 1408 | }; |
| 1409 | |
Rosica Dejanovska | b2bd59e | 2022-04-11 09:02:03 -0700 | [diff] [blame] | 1410 | let thunk_tokens = quote! { |
| 1411 | #( #thunks_from_record_items )* |
| 1412 | }; |
| 1413 | |
| 1414 | Ok(GeneratedItem { |
| 1415 | item: record_tokens, |
| 1416 | features: record_features.union(&assertion_features).cloned().collect(), |
| 1417 | assertions: assertion_tokens, |
| 1418 | thunks: thunk_tokens, |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 1419 | thunk_impls: quote! {#(#thunk_impls_from_record_items __NEWLINE__ __NEWLINE__)*}, |
Rosica Dejanovska | b2bd59e | 2022-04-11 09:02:03 -0700 | [diff] [blame] | 1420 | has_record: true, |
| 1421 | }) |
Marcel Hlopko | b4b2874 | 2021-09-15 12:45:20 +0000 | [diff] [blame] | 1422 | } |
| 1423 | |
Lukasz Anforowicz | 2e41bb6 | 2022-01-11 18:23:07 +0000 | [diff] [blame] | 1424 | fn should_derive_clone(record: &Record) -> bool { |
Lukasz Anforowicz | 2469a5e | 2022-06-02 09:44:51 -0700 | [diff] [blame] | 1425 | if record.is_union { |
| 1426 | // `union`s (unlike `struct`s) should only derive `Clone` if they are `Copy`. |
| 1427 | should_derive_copy(record) |
| 1428 | } else { |
Devin Jeanpierre | 8a4fa20 | 2022-06-08 12:33:11 -0700 | [diff] [blame] | 1429 | record.is_unpin() && record.copy_constructor == SpecialMemberFunc::Trivial |
Lukasz Anforowicz | 2469a5e | 2022-06-02 09:44:51 -0700 | [diff] [blame] | 1430 | } |
Lukasz Anforowicz | 2e41bb6 | 2022-01-11 18:23:07 +0000 | [diff] [blame] | 1431 | } |
| 1432 | |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 1433 | fn should_derive_copy(record: &Record) -> bool { |
| 1434 | // TODO(b/202258760): Make `Copy` inclusion configurable. |
Lukasz Anforowicz | 2469a5e | 2022-06-02 09:44:51 -0700 | [diff] [blame] | 1435 | record.is_unpin() |
Lukasz Anforowicz | ff7df4a | 2022-06-02 14:27:45 -0700 | [diff] [blame] | 1436 | && record.copy_constructor == SpecialMemberFunc::Trivial |
| 1437 | && record.destructor == ir::SpecialMemberFunc::Trivial |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 1438 | } |
| 1439 | |
| 1440 | fn generate_derives(record: &Record) -> Vec<Ident> { |
| 1441 | let mut derives = vec![]; |
Lukasz Anforowicz | 2e41bb6 | 2022-01-11 18:23:07 +0000 | [diff] [blame] | 1442 | if should_derive_clone(record) { |
Marcel Hlopko | eaae9b7 | 2022-01-21 15:54:11 +0000 | [diff] [blame] | 1443 | derives.push(make_rs_ident("Clone")); |
Devin Jeanpierre | 2ed14ec | 2021-10-06 11:32:19 +0000 | [diff] [blame] | 1444 | } |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 1445 | if should_derive_copy(record) { |
Marcel Hlopko | eaae9b7 | 2022-01-21 15:54:11 +0000 | [diff] [blame] | 1446 | derives.push(make_rs_ident("Copy")); |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 1447 | } |
| 1448 | derives |
Devin Jeanpierre | 2ed14ec | 2021-10-06 11:32:19 +0000 | [diff] [blame] | 1449 | } |
| 1450 | |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 1451 | fn generate_enum(enum_: &Enum, ir: &IR) -> Result<TokenStream> { |
| 1452 | let name = make_rs_ident(&enum_.identifier.identifier); |
Devin Jeanpierre | 9886fb4 | 2022-04-01 04:31:20 -0700 | [diff] [blame] | 1453 | let underlying_type = format_rs_type(&enum_.underlying_type.rs_type, ir)?; |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 1454 | let enumerator_names = |
| 1455 | enum_.enumerators.iter().map(|enumerator| make_rs_ident(&enumerator.identifier.identifier)); |
| 1456 | let enumerator_values = enum_.enumerators.iter().map(|enumerator| enumerator.value); |
| 1457 | Ok(quote! { |
| 1458 | #[repr(transparent)] |
| 1459 | #[derive(Debug, PartialEq, Eq, Copy, Clone, Hash, PartialOrd, Ord)] |
| 1460 | pub struct #name(#underlying_type); |
| 1461 | impl #name { |
| 1462 | #(pub const #enumerator_names: #name = #name(#enumerator_values);)* |
| 1463 | } |
| 1464 | impl From<#underlying_type> for #name { |
| 1465 | fn from(value: #underlying_type) -> #name { |
Marcel Hlopko | 872b41a | 2022-05-10 01:49:33 -0700 | [diff] [blame] | 1466 | #name(value) |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 1467 | } |
| 1468 | } |
| 1469 | impl From<#name> for #underlying_type { |
| 1470 | fn from(value: #name) -> #underlying_type { |
Marcel Hlopko | 872b41a | 2022-05-10 01:49:33 -0700 | [diff] [blame] | 1471 | value.0 |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 1472 | } |
| 1473 | } |
| 1474 | }) |
| 1475 | } |
| 1476 | |
Googler | 6a0a525 | 2022-01-11 14:08:09 +0000 | [diff] [blame] | 1477 | fn generate_type_alias(type_alias: &TypeAlias, ir: &IR) -> Result<TokenStream> { |
Marcel Hlopko | eaae9b7 | 2022-01-21 15:54:11 +0000 | [diff] [blame] | 1478 | let ident = make_rs_ident(&type_alias.identifier.identifier); |
Lukasz Anforowicz | c503af4 | 2022-03-04 23:18:15 +0000 | [diff] [blame] | 1479 | let doc_comment = generate_doc_comment(&type_alias.doc_comment); |
Devin Jeanpierre | 9886fb4 | 2022-04-01 04:31:20 -0700 | [diff] [blame] | 1480 | let underlying_type = format_rs_type(&type_alias.underlying_type.rs_type, ir) |
Googler | 6a0a525 | 2022-01-11 14:08:09 +0000 | [diff] [blame] | 1481 | .with_context(|| format!("Failed to format underlying type for {:?}", type_alias))?; |
Lukasz Anforowicz | c503af4 | 2022-03-04 23:18:15 +0000 | [diff] [blame] | 1482 | Ok(quote! { |
| 1483 | #doc_comment |
| 1484 | pub type #ident = #underlying_type; |
| 1485 | }) |
Googler | 6a0a525 | 2022-01-11 14:08:09 +0000 | [diff] [blame] | 1486 | } |
| 1487 | |
Michael Forster | 523dbd4 | 2021-10-12 11:05:44 +0000 | [diff] [blame] | 1488 | /// Generates Rust source code for a given `UnsupportedItem`. |
| 1489 | fn generate_unsupported(item: &UnsupportedItem) -> Result<TokenStream> { |
Googler | 48a74dd | 2021-10-25 07:31:53 +0000 | [diff] [blame] | 1490 | let location = if item.source_loc.filename.is_empty() { |
| 1491 | "<unknown location>".to_string() |
| 1492 | } else { |
| 1493 | // TODO(forster): The "google3" prefix should probably come from a command line |
| 1494 | // argument. |
| 1495 | // TODO(forster): Consider linking to the symbol instead of to the line number |
| 1496 | // to avoid wrong links while generated files have not caught up. |
| 1497 | format!("google3/{};l={}", &item.source_loc.filename, &item.source_loc.line) |
| 1498 | }; |
Michael Forster | 6a184ad | 2021-10-12 13:04:05 +0000 | [diff] [blame] | 1499 | let message = format!( |
Googler | 48a74dd | 2021-10-25 07:31:53 +0000 | [diff] [blame] | 1500 | "{}\nError while generating bindings for item '{}':\n{}", |
| 1501 | &location, &item.name, &item.message |
Michael Forster | 6a184ad | 2021-10-12 13:04:05 +0000 | [diff] [blame] | 1502 | ); |
Michael Forster | 523dbd4 | 2021-10-12 11:05:44 +0000 | [diff] [blame] | 1503 | Ok(quote! { __COMMENT__ #message }) |
| 1504 | } |
| 1505 | |
Michael Forster | f1dce42 | 2021-10-13 09:50:16 +0000 | [diff] [blame] | 1506 | /// Generates Rust source code for a given `Comment`. |
| 1507 | fn generate_comment(comment: &Comment) -> Result<TokenStream> { |
| 1508 | let text = &comment.text; |
| 1509 | Ok(quote! { __COMMENT__ #text }) |
| 1510 | } |
| 1511 | |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 1512 | fn generate_namespace( |
| 1513 | namespace: &Namespace, |
| 1514 | ir: &IR, |
| 1515 | overloaded_funcs: &HashSet<FunctionId>, |
| 1516 | ) -> Result<GeneratedItem> { |
| 1517 | let mut items = vec![]; |
| 1518 | let mut thunks = vec![]; |
| 1519 | let mut assertions = vec![]; |
| 1520 | let mut has_record = false; |
| 1521 | let mut features = BTreeSet::new(); |
| 1522 | |
| 1523 | for item_id in namespace.child_item_ids.iter() { |
| 1524 | let item = ir.find_decl(*item_id)?; |
| 1525 | let generated = generate_item(item, ir, &overloaded_funcs)?; |
| 1526 | items.push(generated.item); |
| 1527 | if !generated.thunks.is_empty() { |
| 1528 | thunks.push(generated.thunks); |
| 1529 | } |
| 1530 | if !generated.assertions.is_empty() { |
| 1531 | assertions.push(generated.assertions); |
| 1532 | } |
| 1533 | features.extend(generated.features); |
| 1534 | has_record = has_record || generated.has_record; |
| 1535 | } |
| 1536 | |
Rosica Dejanovska | 93aeafb | 2022-06-01 07:05:31 -0700 | [diff] [blame] | 1537 | let reopened_namespace_idx = ir.get_reopened_namespace_idx(namespace.id)?; |
| 1538 | let should_skip_index = |
| 1539 | ir.is_last_reopened_namespace(namespace.id, namespace.canonical_namespace_id)?; |
| 1540 | |
| 1541 | let name = if should_skip_index { |
| 1542 | make_rs_ident(&namespace.name.identifier) |
| 1543 | } else { |
| 1544 | make_rs_ident(&format!("{}_{}", &namespace.name.identifier, reopened_namespace_idx)) |
| 1545 | }; |
| 1546 | |
| 1547 | let use_stmt_for_previous_namespace = if reopened_namespace_idx == 0 { |
| 1548 | quote! {} |
| 1549 | } else { |
| 1550 | let previous_namespace_ident = make_rs_ident(&format!( |
| 1551 | "{}_{}", |
| 1552 | &namespace.name.identifier, |
| 1553 | reopened_namespace_idx - 1 |
| 1554 | )); |
| 1555 | quote! { pub use super::#previous_namespace_ident::*; __NEWLINE__ __NEWLINE__ } |
| 1556 | }; |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 1557 | |
Rosica Dejanovska | 5d9faaf | 2022-05-11 04:30:04 -0700 | [diff] [blame] | 1558 | let thunks_tokens = quote! { |
| 1559 | #( #thunks )* |
| 1560 | }; |
| 1561 | |
| 1562 | let assertions_tokens = quote! { |
| 1563 | #( #assertions )* |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 1564 | }; |
| 1565 | |
| 1566 | let namespace_tokens = quote! { |
| 1567 | pub mod #name { |
Rosica Dejanovska | 93aeafb | 2022-06-01 07:05:31 -0700 | [diff] [blame] | 1568 | #use_stmt_for_previous_namespace |
| 1569 | |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 1570 | #( #items __NEWLINE__ __NEWLINE__ )* |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 1571 | } |
| 1572 | }; |
| 1573 | |
| 1574 | Ok(GeneratedItem { |
| 1575 | item: namespace_tokens, |
| 1576 | features: features, |
| 1577 | has_record: has_record, |
Rosica Dejanovska | 5d9faaf | 2022-05-11 04:30:04 -0700 | [diff] [blame] | 1578 | thunks: thunks_tokens, |
| 1579 | assertions: assertions_tokens, |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 1580 | ..Default::default() |
| 1581 | }) |
| 1582 | } |
| 1583 | |
Rosica Dejanovska | 8da8f79 | 2022-03-29 02:02:22 -0700 | [diff] [blame] | 1584 | #[derive(Clone, Debug, Default)] |
| 1585 | struct GeneratedItem { |
| 1586 | item: TokenStream, |
| 1587 | thunks: TokenStream, |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 1588 | // C++ source code for helper functions. |
| 1589 | thunk_impls: TokenStream, |
Rosica Dejanovska | 8da8f79 | 2022-03-29 02:02:22 -0700 | [diff] [blame] | 1590 | assertions: TokenStream, |
| 1591 | features: BTreeSet<Ident>, |
| 1592 | has_record: bool, |
| 1593 | } |
| 1594 | |
| 1595 | fn generate_item( |
| 1596 | item: &Item, |
| 1597 | ir: &IR, |
| 1598 | overloaded_funcs: &HashSet<FunctionId>, |
| 1599 | ) -> Result<GeneratedItem> { |
| 1600 | let generated_item = match item { |
Devin Jeanpierre | d7b4810 | 2022-03-31 04:15:03 -0700 | [diff] [blame] | 1601 | Item::Func(func) => match generate_func(func, ir) { |
| 1602 | Err(e) => GeneratedItem { |
| 1603 | item: generate_unsupported(&make_unsupported_fn(func, ir, format!("{e}"))?)?, |
| 1604 | ..Default::default() |
| 1605 | }, |
| 1606 | Ok(None) => GeneratedItem::default(), |
| 1607 | Ok(Some((api_func, thunk, function_id))) => { |
Rosica Dejanovska | 8da8f79 | 2022-03-29 02:02:22 -0700 | [diff] [blame] | 1608 | if overloaded_funcs.contains(&function_id) { |
| 1609 | GeneratedItem { |
| 1610 | item: generate_unsupported(&make_unsupported_fn( |
| 1611 | func, |
| 1612 | ir, |
| 1613 | "Cannot generate bindings for overloaded function", |
| 1614 | )?)?, |
| 1615 | ..Default::default() |
| 1616 | } |
| 1617 | } else { |
| 1618 | GeneratedItem { |
| 1619 | item: api_func.tokens, |
| 1620 | thunks: thunk.tokens, |
| 1621 | features: api_func.features.union(&thunk.features).cloned().collect(), |
| 1622 | ..Default::default() |
| 1623 | } |
| 1624 | } |
| 1625 | } |
| 1626 | }, |
Devin Jeanpierre | c0543eb | 2022-04-20 16:00:34 -0700 | [diff] [blame] | 1627 | Item::IncompleteRecord(incomplete_record) => { |
| 1628 | if !ir.is_current_target(&incomplete_record.owning_target) |
| 1629 | && !ir.is_stdlib_target(&incomplete_record.owning_target) |
| 1630 | { |
Devin Jeanpierre | 090a987 | 2022-04-26 15:19:46 -0700 | [diff] [blame] | 1631 | GeneratedItem::default() |
Devin Jeanpierre | c0543eb | 2022-04-20 16:00:34 -0700 | [diff] [blame] | 1632 | } else { |
| 1633 | GeneratedItem { |
| 1634 | item: generate_incomplete_record(incomplete_record)?, |
| 1635 | ..Default::default() |
| 1636 | } |
| 1637 | } |
| 1638 | } |
Rosica Dejanovska | 8da8f79 | 2022-03-29 02:02:22 -0700 | [diff] [blame] | 1639 | Item::Record(record) => { |
| 1640 | if !ir.is_current_target(&record.owning_target) |
| 1641 | && !ir.is_stdlib_target(&record.owning_target) |
| 1642 | { |
Devin Jeanpierre | 090a987 | 2022-04-26 15:19:46 -0700 | [diff] [blame] | 1643 | GeneratedItem::default() |
Rosica Dejanovska | 8da8f79 | 2022-03-29 02:02:22 -0700 | [diff] [blame] | 1644 | } else { |
Rosica Dejanovska | b2bd59e | 2022-04-11 09:02:03 -0700 | [diff] [blame] | 1645 | generate_record(record, ir, overloaded_funcs)? |
Rosica Dejanovska | 8da8f79 | 2022-03-29 02:02:22 -0700 | [diff] [blame] | 1646 | } |
| 1647 | } |
| 1648 | Item::Enum(enum_) => { |
| 1649 | if !ir.is_current_target(&enum_.owning_target) |
| 1650 | && !ir.is_stdlib_target(&enum_.owning_target) |
| 1651 | { |
Devin Jeanpierre | 090a987 | 2022-04-26 15:19:46 -0700 | [diff] [blame] | 1652 | GeneratedItem::default() |
Rosica Dejanovska | 8da8f79 | 2022-03-29 02:02:22 -0700 | [diff] [blame] | 1653 | } else { |
| 1654 | GeneratedItem { item: generate_enum(enum_, ir)?, ..Default::default() } |
| 1655 | } |
| 1656 | } |
| 1657 | Item::TypeAlias(type_alias) => { |
| 1658 | if !ir.is_current_target(&type_alias.owning_target) |
| 1659 | && !ir.is_stdlib_target(&type_alias.owning_target) |
| 1660 | { |
Devin Jeanpierre | 090a987 | 2022-04-26 15:19:46 -0700 | [diff] [blame] | 1661 | GeneratedItem::default() |
Rosica Dejanovska | 8da8f79 | 2022-03-29 02:02:22 -0700 | [diff] [blame] | 1662 | } else { |
| 1663 | GeneratedItem { item: generate_type_alias(type_alias, ir)?, ..Default::default() } |
| 1664 | } |
| 1665 | } |
| 1666 | Item::UnsupportedItem(unsupported) => { |
| 1667 | GeneratedItem { item: generate_unsupported(unsupported)?, ..Default::default() } |
| 1668 | } |
| 1669 | Item::Comment(comment) => { |
| 1670 | GeneratedItem { item: generate_comment(comment)?, ..Default::default() } |
| 1671 | } |
Devin Jeanpierre | c0543eb | 2022-04-20 16:00:34 -0700 | [diff] [blame] | 1672 | Item::Namespace(namespace) => generate_namespace(namespace, ir, overloaded_funcs)?, |
Rosica Dejanovska | 8da8f79 | 2022-03-29 02:02:22 -0700 | [diff] [blame] | 1673 | }; |
| 1674 | |
| 1675 | Ok(generated_item) |
| 1676 | } |
| 1677 | |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 1678 | // Returns the Rust code implementing bindings, plus any auxiliary C++ code |
| 1679 | // needed to support it. |
Lukasz Anforowicz | dd90770 | 2022-05-06 09:24:07 -0700 | [diff] [blame] | 1680 | fn generate_bindings_tokens(ir: &IR, crubit_support_path: &str) -> Result<BindingsTokens> { |
Michael Forster | ed64202 | 2021-10-04 09:48:25 +0000 | [diff] [blame] | 1681 | let mut items = vec![]; |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 1682 | let mut thunks = vec![]; |
Lukasz Anforowicz | dd90770 | 2022-05-06 09:24:07 -0700 | [diff] [blame] | 1683 | let mut thunk_impls = vec![generate_rs_api_impl(ir, crubit_support_path)?]; |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 1684 | let mut assertions = vec![]; |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 1685 | |
Googler | 454f265 | 2021-12-06 12:53:12 +0000 | [diff] [blame] | 1686 | // We import nullable pointers as an Option<&T> and assume that at the ABI |
| 1687 | // level, None is represented as a zero pointer value whereas Some is |
| 1688 | // represented as as non-zero pointer value. This seems like a pretty safe |
| 1689 | // assumption to make, but to provide some safeguard, assert that |
| 1690 | // `Option<&i32>` and `&i32` have the same size. |
| 1691 | assertions.push(quote! { |
Rosica Dejanovska | accf00b | 2022-04-01 13:28:04 -0700 | [diff] [blame] | 1692 | const _: () = assert!(rust_std::mem::size_of::<Option<&i32>>() == rust_std::mem::size_of::<&i32>()); |
Googler | 454f265 | 2021-12-06 12:53:12 +0000 | [diff] [blame] | 1693 | }); |
| 1694 | |
Michael Forster | bee8448 | 2021-10-13 08:35:38 +0000 | [diff] [blame] | 1695 | // TODO(jeanpierreda): Delete has_record, either in favor of using RsSnippet, or not |
| 1696 | // having uses. See https://chat.google.com/room/AAAAnQmj8Qs/6QbkSvWcfhA |
Devin Jeanpierre | ea700d3 | 2021-10-06 11:33:56 +0000 | [diff] [blame] | 1697 | let mut has_record = false; |
Devin Jeanpierre | 273eeae | 2021-10-06 13:29:35 +0000 | [diff] [blame] | 1698 | let mut features = BTreeSet::new(); |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 1699 | |
Lukasz Anforowicz | 72c4d22 | 2022-02-18 19:07:28 +0000 | [diff] [blame] | 1700 | // For #![rustfmt::skip]. |
| 1701 | features.insert(make_rs_ident("custom_inner_attributes")); |
| 1702 | |
Googler | d03d05b | 2022-01-07 10:10:57 +0000 | [diff] [blame] | 1703 | // Identify all functions having overloads that we can't import (yet). |
| 1704 | // TODO(b/213280424): Implement support for overloaded functions. |
| 1705 | let mut seen_funcs = HashSet::new(); |
| 1706 | let mut overloaded_funcs = HashSet::new(); |
| 1707 | for func in ir.functions() { |
Devin Jeanpierre | d7b4810 | 2022-03-31 04:15:03 -0700 | [diff] [blame] | 1708 | if let Ok(Some((.., function_id))) = generate_func(func, ir) { |
Googler | d03d05b | 2022-01-07 10:10:57 +0000 | [diff] [blame] | 1709 | if !seen_funcs.insert(function_id.clone()) { |
| 1710 | overloaded_funcs.insert(function_id); |
| 1711 | } |
| 1712 | } |
| 1713 | } |
| 1714 | |
Rosica Dejanovska | b2bd59e | 2022-04-11 09:02:03 -0700 | [diff] [blame] | 1715 | for top_level_item_id in ir.top_level_item_ids() { |
| 1716 | let item = ir.find_decl(*top_level_item_id)?; |
Rosica Dejanovska | 8da8f79 | 2022-03-29 02:02:22 -0700 | [diff] [blame] | 1717 | let generated = generate_item(item, ir, &overloaded_funcs)?; |
| 1718 | items.push(generated.item); |
Devin Jeanpierre | b5ba140 | 2022-03-29 07:29:24 -0700 | [diff] [blame] | 1719 | if !generated.thunks.is_empty() { |
Rosica Dejanovska | 8da8f79 | 2022-03-29 02:02:22 -0700 | [diff] [blame] | 1720 | thunks.push(generated.thunks); |
Michael Forster | ed64202 | 2021-10-04 09:48:25 +0000 | [diff] [blame] | 1721 | } |
Devin Jeanpierre | b5ba140 | 2022-03-29 07:29:24 -0700 | [diff] [blame] | 1722 | if !generated.assertions.is_empty() { |
Rosica Dejanovska | 8da8f79 | 2022-03-29 02:02:22 -0700 | [diff] [blame] | 1723 | assertions.push(generated.assertions); |
| 1724 | } |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 1725 | if !generated.thunk_impls.is_empty() { |
| 1726 | thunk_impls.push(generated.thunk_impls); |
| 1727 | } |
Rosica Dejanovska | 8da8f79 | 2022-03-29 02:02:22 -0700 | [diff] [blame] | 1728 | features.extend(generated.features); |
| 1729 | has_record = has_record || generated.has_record; |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 1730 | } |
| 1731 | |
Marcel Hlopko | b4b2874 | 2021-09-15 12:45:20 +0000 | [diff] [blame] | 1732 | let mod_detail = if thunks.is_empty() { |
| 1733 | quote! {} |
| 1734 | } else { |
| 1735 | quote! { |
| 1736 | mod detail { |
Googler | 5564714 | 2022-01-11 12:37:39 +0000 | [diff] [blame] | 1737 | #[allow(unused_imports)] |
Devin Jeanpierre | d4dde0e | 2021-10-13 20:48:25 +0000 | [diff] [blame] | 1738 | use super::*; |
Marcel Hlopko | b4b2874 | 2021-09-15 12:45:20 +0000 | [diff] [blame] | 1739 | extern "C" { |
| 1740 | #( #thunks )* |
| 1741 | } |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 1742 | } |
| 1743 | } |
| 1744 | }; |
| 1745 | |
Rosica Dejanovska | accf00b | 2022-04-01 13:28:04 -0700 | [diff] [blame] | 1746 | // TODO(b/227790881): Replace usage of rust_std with ::std once the issue |
| 1747 | // is fixed. |
Devin Jeanpierre | ea700d3 | 2021-10-06 11:33:56 +0000 | [diff] [blame] | 1748 | let imports = if has_record { |
Googler | ec648ff | 2021-09-23 07:19:53 +0000 | [diff] [blame] | 1749 | quote! { |
Rosica Dejanovska | bbed201 | 2022-04-05 04:06:30 -0700 | [diff] [blame] | 1750 | use ::std as rust_std; |
Googler | ec648ff | 2021-09-23 07:19:53 +0000 | [diff] [blame] | 1751 | } |
Michael Forster | ed64202 | 2021-10-04 09:48:25 +0000 | [diff] [blame] | 1752 | } else { |
Rosica Dejanovska | accf00b | 2022-04-01 13:28:04 -0700 | [diff] [blame] | 1753 | quote! { |
Rosica Dejanovska | bbed201 | 2022-04-05 04:06:30 -0700 | [diff] [blame] | 1754 | use ::std as rust_std; |
Rosica Dejanovska | accf00b | 2022-04-01 13:28:04 -0700 | [diff] [blame] | 1755 | } |
Googler | ec648ff | 2021-09-23 07:19:53 +0000 | [diff] [blame] | 1756 | }; |
| 1757 | |
Devin Jeanpierre | 273eeae | 2021-10-06 13:29:35 +0000 | [diff] [blame] | 1758 | let features = if features.is_empty() { |
| 1759 | quote! {} |
| 1760 | } else { |
| 1761 | quote! { |
| 1762 | #![feature( #(#features),* )] |
| 1763 | } |
| 1764 | }; |
| 1765 | |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 1766 | Ok(BindingsTokens { |
| 1767 | rs_api: quote! { |
| 1768 | #features __NEWLINE__ |
| 1769 | #![allow(non_camel_case_types)] __NEWLINE__ |
Lukasz Anforowicz | 945919c | 2022-05-12 13:08:47 -0700 | [diff] [blame] | 1770 | #![allow(non_snake_case)] __NEWLINE__ |
Lukasz Anforowicz | cc26263 | 2022-05-12 15:07:43 -0700 | [diff] [blame] | 1771 | #![allow(non_upper_case_globals)] __NEWLINE__ |
| 1772 | #![deny(warnings)] __NEWLINE__ __NEWLINE__ |
Googler | 5564714 | 2022-01-11 12:37:39 +0000 | [diff] [blame] | 1773 | |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 1774 | #imports __NEWLINE__ __NEWLINE__ |
Googler | ec648ff | 2021-09-23 07:19:53 +0000 | [diff] [blame] | 1775 | |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 1776 | #( #items __NEWLINE__ __NEWLINE__ )* |
Marcel Hlopko | b4b2874 | 2021-09-15 12:45:20 +0000 | [diff] [blame] | 1777 | |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 1778 | #mod_detail __NEWLINE__ __NEWLINE__ |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 1779 | |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 1780 | #( #assertions __NEWLINE__ __NEWLINE__ )* |
| 1781 | }, |
| 1782 | rs_api_impl: quote! {#(#thunk_impls __NEWLINE__ __NEWLINE__ )*}, |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 1783 | }) |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 1784 | } |
| 1785 | |
Marcel Hlopko | eaae9b7 | 2022-01-21 15:54:11 +0000 | [diff] [blame] | 1786 | /// Makes an 'Ident' to be used in the Rust source code. Escapes Rust keywords. |
| 1787 | fn make_rs_ident(ident: &str) -> Ident { |
| 1788 | // TODO(https://github.com/dtolnay/syn/pull/1098): Remove the hardcoded list once syn recognizes |
| 1789 | // 2018 and 2021 keywords. |
| 1790 | if ["async", "await", "try", "dyn"].contains(&ident) { |
| 1791 | return format_ident!("r#{}", ident); |
| 1792 | } |
| 1793 | match syn::parse_str::<syn::Ident>(ident) { |
| 1794 | Ok(_) => format_ident!("{}", ident), |
| 1795 | Err(_) => format_ident!("r#{}", ident), |
| 1796 | } |
| 1797 | } |
| 1798 | |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 1799 | /// Formats a C++ identifier. Does not escape C++ keywords. |
| 1800 | fn format_cc_ident(ident: &str) -> TokenStream { |
| 1801 | ident.parse().unwrap() |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 1802 | } |
| 1803 | |
Devin Jeanpierre | fec5bfe | 2022-04-05 10:59:10 -0700 | [diff] [blame] | 1804 | /// Returns Some(crate_ident) if this is an imported crate. |
| 1805 | fn rs_imported_crate_name(owning_target: &BazelLabel, ir: &IR) -> Option<Ident> { |
Googler | 6a0a525 | 2022-01-11 14:08:09 +0000 | [diff] [blame] | 1806 | if ir.is_current_target(owning_target) || ir.is_stdlib_target(owning_target) { |
Devin Jeanpierre | fec5bfe | 2022-04-05 10:59:10 -0700 | [diff] [blame] | 1807 | None |
Googler | 6a0a525 | 2022-01-11 14:08:09 +0000 | [diff] [blame] | 1808 | } else { |
Devin Jeanpierre | 084ebbd | 2022-04-01 04:32:46 -0700 | [diff] [blame] | 1809 | let owning_crate_name = owning_target.target_name(); |
Marcel Hlopko | d906b89 | 2022-01-27 08:52:36 +0000 | [diff] [blame] | 1810 | // TODO(b/216587072): Remove this hacky escaping and use the import! macro once |
| 1811 | // available |
Lukasz Anforowicz | dd9ae0f | 2022-02-17 15:52:53 +0000 | [diff] [blame] | 1812 | let escaped_owning_crate_name = owning_crate_name.replace('-', "_"); |
Marcel Hlopko | d906b89 | 2022-01-27 08:52:36 +0000 | [diff] [blame] | 1813 | let owning_crate = make_rs_ident(&escaped_owning_crate_name); |
Devin Jeanpierre | fec5bfe | 2022-04-05 10:59:10 -0700 | [diff] [blame] | 1814 | Some(owning_crate) |
Googler | 6a0a525 | 2022-01-11 14:08:09 +0000 | [diff] [blame] | 1815 | } |
| 1816 | } |
| 1817 | |
Devin Jeanpierre | 103cbb5 | 2022-04-06 12:55:16 -0700 | [diff] [blame] | 1818 | #[derive(Copy, Clone, Debug, Eq, PartialEq)] |
Lukasz Anforowicz | 40c2eb8 | 2022-01-11 18:22:31 +0000 | [diff] [blame] | 1819 | enum Mutability { |
| 1820 | Const, |
| 1821 | Mut, |
| 1822 | } |
| 1823 | |
| 1824 | impl Mutability { |
| 1825 | fn format_for_pointer(&self) -> TokenStream { |
| 1826 | match self { |
| 1827 | Mutability::Mut => quote! {mut}, |
| 1828 | Mutability::Const => quote! {const}, |
| 1829 | } |
| 1830 | } |
| 1831 | |
| 1832 | fn format_for_reference(&self) -> TokenStream { |
| 1833 | match self { |
| 1834 | Mutability::Mut => quote! {mut}, |
| 1835 | Mutability::Const => quote! {}, |
| 1836 | } |
| 1837 | } |
| 1838 | } |
| 1839 | |
| 1840 | // TODO(b/213947473): Instead of having a separate RsTypeKind here, consider |
| 1841 | // changing ir::RsType into a similar `enum`, with fields that contain |
Rosica Dejanovska | d638cf5 | 2022-03-23 15:45:01 +0000 | [diff] [blame] | 1842 | // references (e.g. &'ir Record`) instead of ItemIds. |
Devin Jeanpierre | 103cbb5 | 2022-04-06 12:55:16 -0700 | [diff] [blame] | 1843 | #[derive(Clone, Debug)] |
Lukasz Anforowicz | 40c2eb8 | 2022-01-11 18:22:31 +0000 | [diff] [blame] | 1844 | enum RsTypeKind<'ir> { |
Devin Jeanpierre | fec5bfe | 2022-04-05 10:59:10 -0700 | [diff] [blame] | 1845 | Pointer { |
| 1846 | pointee: Box<RsTypeKind<'ir>>, |
| 1847 | mutability: Mutability, |
| 1848 | }, |
| 1849 | Reference { |
| 1850 | referent: Box<RsTypeKind<'ir>>, |
| 1851 | mutability: Mutability, |
Marcel Hlopko | af682a0 | 2022-04-08 07:27:14 -0700 | [diff] [blame] | 1852 | lifetime: LifetimeName, |
Devin Jeanpierre | fec5bfe | 2022-04-05 10:59:10 -0700 | [diff] [blame] | 1853 | }, |
| 1854 | RvalueReference { |
| 1855 | referent: Box<RsTypeKind<'ir>>, |
| 1856 | mutability: Mutability, |
Marcel Hlopko | af682a0 | 2022-04-08 07:27:14 -0700 | [diff] [blame] | 1857 | lifetime: LifetimeName, |
Devin Jeanpierre | fec5bfe | 2022-04-05 10:59:10 -0700 | [diff] [blame] | 1858 | }, |
| 1859 | FuncPtr { |
| 1860 | abi: &'ir str, |
| 1861 | return_type: Box<RsTypeKind<'ir>>, |
| 1862 | param_types: Vec<RsTypeKind<'ir>>, |
| 1863 | }, |
Devin Jeanpierre | c0543eb | 2022-04-20 16:00:34 -0700 | [diff] [blame] | 1864 | /// An incomplete record type. |
| 1865 | IncompleteRecord { |
| 1866 | incomplete_record: &'ir IncompleteRecord, |
| 1867 | |
| 1868 | /// The imported crate this comes from, or None if the current crate. |
| 1869 | crate_ident: Option<Ident>, |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 1870 | /// The namespace qualifier for this record. |
| 1871 | namespace_qualifier: Vec<Ident>, |
Devin Jeanpierre | c0543eb | 2022-04-20 16:00:34 -0700 | [diff] [blame] | 1872 | }, |
| 1873 | /// A complete record type. |
Devin Jeanpierre | fec5bfe | 2022-04-05 10:59:10 -0700 | [diff] [blame] | 1874 | Record { |
| 1875 | record: &'ir Record, |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 1876 | /// The namespace qualifier for this record. |
| 1877 | namespace_qualifier: Vec<Ident>, |
Devin Jeanpierre | fec5bfe | 2022-04-05 10:59:10 -0700 | [diff] [blame] | 1878 | /// The imported crate this comes from, or None if the current crate. |
| 1879 | crate_ident: Option<Ident>, |
| 1880 | }, |
| 1881 | TypeAlias { |
| 1882 | type_alias: &'ir TypeAlias, |
| 1883 | underlying_type: Box<RsTypeKind<'ir>>, |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 1884 | /// The namespace qualifier for this alias. |
| 1885 | namespace_qualifier: Vec<Ident>, |
Devin Jeanpierre | fec5bfe | 2022-04-05 10:59:10 -0700 | [diff] [blame] | 1886 | /// The imported crate this comes from, or None if the current crate. |
| 1887 | crate_ident: Option<Ident>, |
| 1888 | }, |
Lukasz Anforowicz | 40c2eb8 | 2022-01-11 18:22:31 +0000 | [diff] [blame] | 1889 | Unit, |
Devin Jeanpierre | fec5bfe | 2022-04-05 10:59:10 -0700 | [diff] [blame] | 1890 | Other { |
| 1891 | name: &'ir str, |
| 1892 | type_args: Vec<RsTypeKind<'ir>>, |
| 1893 | }, |
Lukasz Anforowicz | 40c2eb8 | 2022-01-11 18:22:31 +0000 | [diff] [blame] | 1894 | } |
| 1895 | |
| 1896 | impl<'ir> RsTypeKind<'ir> { |
| 1897 | pub fn new(ty: &'ir ir::RsType, ir: &'ir IR) -> Result<Self> { |
| 1898 | // The lambdas deduplicate code needed by multiple `match` branches. |
| 1899 | let get_type_args = || -> Result<Vec<RsTypeKind<'ir>>> { |
| 1900 | ty.type_args.iter().map(|type_arg| RsTypeKind::<'ir>::new(type_arg, ir)).collect() |
| 1901 | }; |
| 1902 | let get_pointee = || -> Result<Box<RsTypeKind<'ir>>> { |
| 1903 | if ty.type_args.len() != 1 { |
| 1904 | bail!("Missing pointee/referent type (need exactly 1 type argument): {:?}", ty); |
| 1905 | } |
| 1906 | Ok(Box::new(get_type_args()?.remove(0))) |
| 1907 | }; |
Marcel Hlopko | af682a0 | 2022-04-08 07:27:14 -0700 | [diff] [blame] | 1908 | let get_lifetime = || -> Result<LifetimeName> { |
Lukasz Anforowicz | 40c2eb8 | 2022-01-11 18:22:31 +0000 | [diff] [blame] | 1909 | if ty.lifetime_args.len() != 1 { |
| 1910 | bail!("Missing reference lifetime (need exactly 1 lifetime argument): {:?}", ty); |
| 1911 | } |
Devin Jeanpierre | d2b7a8f | 2022-04-01 04:37:16 -0700 | [diff] [blame] | 1912 | let lifetime_id = ty.lifetime_args[0]; |
| 1913 | ir.get_lifetime(lifetime_id) |
| 1914 | .ok_or_else(|| anyhow!("no known lifetime with id {lifetime_id:?}")) |
| 1915 | .cloned() |
Lukasz Anforowicz | 40c2eb8 | 2022-01-11 18:22:31 +0000 | [diff] [blame] | 1916 | }; |
| 1917 | |
| 1918 | let result = match ty.name.as_deref() { |
| 1919 | None => { |
| 1920 | ensure!( |
| 1921 | ty.type_args.is_empty(), |
| 1922 | "Type arguments on records nor type aliases are not yet supported: {:?}", |
| 1923 | ty |
| 1924 | ); |
| 1925 | match ir.item_for_type(ty)? { |
Devin Jeanpierre | c0543eb | 2022-04-20 16:00:34 -0700 | [diff] [blame] | 1926 | Item::IncompleteRecord(incomplete_record) => RsTypeKind::IncompleteRecord { |
| 1927 | incomplete_record, |
Marcel Hlopko | 3623489 | 2022-05-10 00:39:54 -0700 | [diff] [blame] | 1928 | namespace_qualifier: generate_namespace_qualifier( |
| 1929 | incomplete_record.id, |
| 1930 | ir, |
| 1931 | )? |
| 1932 | .collect_vec(), |
Devin Jeanpierre | c0543eb | 2022-04-20 16:00:34 -0700 | [diff] [blame] | 1933 | crate_ident: rs_imported_crate_name(&incomplete_record.owning_target, ir), |
| 1934 | }, |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 1935 | Item::Record(record) => RsTypeKind::new_record(record, ir)?, |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 1936 | Item::TypeAlias(type_alias) => RsTypeKind::TypeAlias { |
| 1937 | type_alias, |
Marcel Hlopko | 3623489 | 2022-05-10 00:39:54 -0700 | [diff] [blame] | 1938 | namespace_qualifier: generate_namespace_qualifier(type_alias.id, ir)? |
| 1939 | .collect_vec(), |
Devin Jeanpierre | fec5bfe | 2022-04-05 10:59:10 -0700 | [diff] [blame] | 1940 | crate_ident: rs_imported_crate_name(&type_alias.owning_target, ir), |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 1941 | underlying_type: Box::new(RsTypeKind::new( |
| 1942 | &type_alias.underlying_type.rs_type, |
| 1943 | ir, |
| 1944 | )?), |
| 1945 | }, |
Lukasz Anforowicz | 40c2eb8 | 2022-01-11 18:22:31 +0000 | [diff] [blame] | 1946 | other_item => bail!("Item does not define a type: {:?}", other_item), |
| 1947 | } |
| 1948 | } |
| 1949 | Some(name) => match name { |
| 1950 | "()" => { |
| 1951 | if !ty.type_args.is_empty() { |
| 1952 | bail!("Unit type must not have type arguments: {:?}", ty); |
| 1953 | } |
| 1954 | RsTypeKind::Unit |
| 1955 | } |
| 1956 | "*mut" => { |
| 1957 | RsTypeKind::Pointer { pointee: get_pointee()?, mutability: Mutability::Mut } |
| 1958 | } |
| 1959 | "*const" => { |
| 1960 | RsTypeKind::Pointer { pointee: get_pointee()?, mutability: Mutability::Const } |
| 1961 | } |
| 1962 | "&mut" => RsTypeKind::Reference { |
| 1963 | referent: get_pointee()?, |
| 1964 | mutability: Mutability::Mut, |
Devin Jeanpierre | d2b7a8f | 2022-04-01 04:37:16 -0700 | [diff] [blame] | 1965 | lifetime: get_lifetime()?, |
Lukasz Anforowicz | 40c2eb8 | 2022-01-11 18:22:31 +0000 | [diff] [blame] | 1966 | }, |
| 1967 | "&" => RsTypeKind::Reference { |
| 1968 | referent: get_pointee()?, |
| 1969 | mutability: Mutability::Const, |
Devin Jeanpierre | d2b7a8f | 2022-04-01 04:37:16 -0700 | [diff] [blame] | 1970 | lifetime: get_lifetime()?, |
Lukasz Anforowicz | 40c2eb8 | 2022-01-11 18:22:31 +0000 | [diff] [blame] | 1971 | }, |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 1972 | "#RvalueReference mut" => RsTypeKind::RvalueReference { |
| 1973 | referent: get_pointee()?, |
| 1974 | mutability: Mutability::Mut, |
Devin Jeanpierre | d2b7a8f | 2022-04-01 04:37:16 -0700 | [diff] [blame] | 1975 | lifetime: get_lifetime()?, |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 1976 | }, |
| 1977 | "#RvalueReference const" => RsTypeKind::RvalueReference { |
| 1978 | referent: get_pointee()?, |
| 1979 | mutability: Mutability::Const, |
Devin Jeanpierre | d2b7a8f | 2022-04-01 04:37:16 -0700 | [diff] [blame] | 1980 | lifetime: get_lifetime()?, |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 1981 | }, |
Lukasz Anforowicz | cf230fd | 2022-02-18 19:20:39 +0000 | [diff] [blame] | 1982 | name => { |
| 1983 | let mut type_args = get_type_args()?; |
| 1984 | match name.strip_prefix("#funcPtr ") { |
| 1985 | None => RsTypeKind::Other { name, type_args }, |
| 1986 | Some(abi) => { |
| 1987 | // TODO(b/217419782): Consider enforcing `'static` lifetime. |
| 1988 | ensure!(!type_args.is_empty(), "No return type in fn type: {:?}", ty); |
| 1989 | RsTypeKind::FuncPtr { |
| 1990 | abi, |
| 1991 | return_type: Box::new(type_args.remove(type_args.len() - 1)), |
| 1992 | param_types: type_args, |
| 1993 | } |
Devin Jeanpierre | 1b8f4a1 | 2022-03-22 21:29:42 +0000 | [diff] [blame] | 1994 | } |
Lukasz Anforowicz | cf230fd | 2022-02-18 19:20:39 +0000 | [diff] [blame] | 1995 | } |
Devin Jeanpierre | 1b8f4a1 | 2022-03-22 21:29:42 +0000 | [diff] [blame] | 1996 | } |
Lukasz Anforowicz | 40c2eb8 | 2022-01-11 18:22:31 +0000 | [diff] [blame] | 1997 | }, |
| 1998 | }; |
| 1999 | Ok(result) |
| 2000 | } |
| 2001 | |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2002 | pub fn new_record(record: &'ir Record, ir: &'ir IR) -> Result<Self> { |
| 2003 | Ok(RsTypeKind::Record { |
Devin Jeanpierre | fec5bfe | 2022-04-05 10:59:10 -0700 | [diff] [blame] | 2004 | record, |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2005 | namespace_qualifier: generate_namespace_qualifier(record.id, ir)?.collect_vec(), |
Devin Jeanpierre | fec5bfe | 2022-04-05 10:59:10 -0700 | [diff] [blame] | 2006 | crate_ident: rs_imported_crate_name(&record.owning_target, ir), |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2007 | }) |
Devin Jeanpierre | fec5bfe | 2022-04-05 10:59:10 -0700 | [diff] [blame] | 2008 | } |
| 2009 | |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 2010 | /// Returns true if the type is known to be `Unpin`, false otherwise. |
Devin Jeanpierre | f85ae59 | 2022-04-01 04:33:57 -0700 | [diff] [blame] | 2011 | pub fn is_unpin(&self) -> bool { |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 2012 | match self { |
Devin Jeanpierre | c0543eb | 2022-04-20 16:00:34 -0700 | [diff] [blame] | 2013 | RsTypeKind::IncompleteRecord { .. } => false, |
Devin Jeanpierre | fec5bfe | 2022-04-05 10:59:10 -0700 | [diff] [blame] | 2014 | RsTypeKind::Record { record, .. } => record.is_unpin(), |
Devin Jeanpierre | f85ae59 | 2022-04-01 04:33:57 -0700 | [diff] [blame] | 2015 | RsTypeKind::TypeAlias { underlying_type, .. } => underlying_type.is_unpin(), |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 2016 | _ => true, |
| 2017 | } |
| 2018 | } |
| 2019 | |
Devin Jeanpierre | 82e8e36 | 2022-04-05 11:04:55 -0700 | [diff] [blame] | 2020 | pub fn format_as_return_type_fragment(&self) -> TokenStream { |
Lukasz Anforowicz | cf230fd | 2022-02-18 19:20:39 +0000 | [diff] [blame] | 2021 | match self { |
Devin Jeanpierre | d2b7a8f | 2022-04-01 04:37:16 -0700 | [diff] [blame] | 2022 | RsTypeKind::Unit => quote! {}, |
Lukasz Anforowicz | cf230fd | 2022-02-18 19:20:39 +0000 | [diff] [blame] | 2023 | other_type => { |
Devin Jeanpierre | 92ca261 | 2022-04-06 11:35:13 -0700 | [diff] [blame] | 2024 | quote! { -> #other_type } |
Lukasz Anforowicz | cf230fd | 2022-02-18 19:20:39 +0000 | [diff] [blame] | 2025 | } |
| 2026 | } |
| 2027 | } |
| 2028 | |
Lukasz Anforowicz | cde4b1b | 2022-02-03 21:20:55 +0000 | [diff] [blame] | 2029 | /// Formats this RsTypeKind as `&'a mut MaybeUninit<SomeStruct>`. This is |
| 2030 | /// used to format `__this` parameter in a constructor thunk. |
Devin Jeanpierre | 82e8e36 | 2022-04-05 11:04:55 -0700 | [diff] [blame] | 2031 | pub fn format_mut_ref_as_uninitialized(&self) -> Result<TokenStream> { |
Lukasz Anforowicz | cde4b1b | 2022-02-03 21:20:55 +0000 | [diff] [blame] | 2032 | match self { |
Devin Jeanpierre | d2b7a8f | 2022-04-01 04:37:16 -0700 | [diff] [blame] | 2033 | RsTypeKind::Reference { referent, lifetime, mutability: Mutability::Mut } => { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 2034 | Ok(quote! { & #lifetime mut crate::rust_std::mem::MaybeUninit< #referent > }) |
Lukasz Anforowicz | 40c2eb8 | 2022-01-11 18:22:31 +0000 | [diff] [blame] | 2035 | } |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 2036 | _ => bail!("Expected reference to format as MaybeUninit, got: {:?}", self), |
Lukasz Anforowicz | cde4b1b | 2022-02-03 21:20:55 +0000 | [diff] [blame] | 2037 | } |
Lukasz Anforowicz | 40c2eb8 | 2022-01-11 18:22:31 +0000 | [diff] [blame] | 2038 | } |
| 2039 | |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 2040 | /// Formats this RsTypeKind as the `self` parameter: usually, `&'a self` or |
| 2041 | /// `&'a mut self`. |
| 2042 | /// |
| 2043 | /// If this is !Unpin, however, it uses `self: Pin<&mut Self>` instead. |
Devin Jeanpierre | 108e9c0 | 2022-06-02 07:10:09 -0700 | [diff] [blame] | 2044 | pub fn format_as_self_param(&self) -> Result<TokenStream> { |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 2045 | let referent; |
| 2046 | let mutability; |
| 2047 | let lifetime; |
| 2048 | match self { |
Devin Jeanpierre | 108e9c0 | 2022-06-02 07:10:09 -0700 | [diff] [blame] | 2049 | RsTypeKind::Pointer { .. } => { |
Devin Jeanpierre | 8a4fa20 | 2022-06-08 12:33:11 -0700 | [diff] [blame] | 2050 | // TODO(jeanpierreda): provide end-user-facing docs, and insert a link to e.g. |
| 2051 | // something like <internal link> |
| 2052 | bail!( |
| 2053 | "`self` has no lifetime. Use lifetime annotations or `#pragma clang lifetime_elision` to create bindings for this function." |
| 2054 | ) |
Lukasz Anforowicz | 732ca64 | 2022-02-03 20:58:38 +0000 | [diff] [blame] | 2055 | } |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 2056 | RsTypeKind::Reference { |
| 2057 | referent: reference_pointee, |
| 2058 | lifetime: reference_lifetime, |
| 2059 | mutability: reference_mutability, |
| 2060 | } => { |
| 2061 | referent = reference_pointee; |
| 2062 | mutability = reference_mutability; |
Devin Jeanpierre | a68fdbc | 2022-05-27 04:16:36 -0700 | [diff] [blame] | 2063 | lifetime = quote! {#reference_lifetime}; |
Lukasz Anforowicz | 231a3bb | 2022-01-12 14:05:59 +0000 | [diff] [blame] | 2064 | } |
Lukasz Anforowicz | 732ca64 | 2022-02-03 20:58:38 +0000 | [diff] [blame] | 2065 | _ => bail!("Unexpected type of `self` parameter: {:?}", self), |
Lukasz Anforowicz | 231a3bb | 2022-01-12 14:05:59 +0000 | [diff] [blame] | 2066 | } |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 2067 | let mut_ = mutability.format_for_reference(); |
| 2068 | if mutability == &Mutability::Mut && !referent.is_unpin() { |
| 2069 | // TODO(b/200067242): Add a `use rust_std::pin::Pin` to the crate, and use |
| 2070 | // `Pin`. |
| 2071 | Ok(quote! {self: crate::rust_std::pin::Pin< & #lifetime #mut_ Self>}) |
| 2072 | } else { |
| 2073 | Ok(quote! { & #lifetime #mut_ self }) |
| 2074 | } |
Lukasz Anforowicz | 231a3bb | 2022-01-12 14:05:59 +0000 | [diff] [blame] | 2075 | } |
| 2076 | |
Lukasz Anforowicz | 90bdb96 | 2022-02-14 21:07:45 +0000 | [diff] [blame] | 2077 | /// Returns whether the type represented by `self` implements the `Copy` |
| 2078 | /// trait. |
Lukasz Anforowicz | a94ab70 | 2022-01-14 22:40:25 +0000 | [diff] [blame] | 2079 | pub fn implements_copy(&self) -> bool { |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 2080 | // TODO(b/212696226): Verify results of `implements_copy` via static |
| 2081 | // assertions in the generated Rust code (because incorrect results |
| 2082 | // can silently lead to unsafe behavior). |
| 2083 | match self { |
| 2084 | RsTypeKind::Unit => true, |
| 2085 | RsTypeKind::Pointer { .. } => true, |
Lukasz Anforowicz | cf230fd | 2022-02-18 19:20:39 +0000 | [diff] [blame] | 2086 | RsTypeKind::FuncPtr { .. } => true, |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 2087 | RsTypeKind::Reference { mutability: Mutability::Const, .. } => true, |
| 2088 | RsTypeKind::Reference { mutability: Mutability::Mut, .. } => false, |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 2089 | RsTypeKind::RvalueReference { .. } => false, |
Devin Jeanpierre | c0543eb | 2022-04-20 16:00:34 -0700 | [diff] [blame] | 2090 | RsTypeKind::IncompleteRecord { .. } => false, |
Devin Jeanpierre | fec5bfe | 2022-04-05 10:59:10 -0700 | [diff] [blame] | 2091 | RsTypeKind::Record { record, .. } => should_derive_copy(record), |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 2092 | RsTypeKind::TypeAlias { underlying_type, .. } => underlying_type.implements_copy(), |
Lukasz Anforowicz | d81bea9 | 2022-02-11 08:57:58 +0000 | [diff] [blame] | 2093 | RsTypeKind::Other { type_args, .. } => { |
Lukasz Anforowicz | 20651e3 | 2022-02-10 14:52:15 +0000 | [diff] [blame] | 2094 | // All types that may appear here without `type_args` (e.g. |
| 2095 | // primitive types like `i32`) implement `Copy`. Generic types |
| 2096 | // that may be present here (e.g. Option<...>) are `Copy` if all |
| 2097 | // of their `type_args` are `Copy`. |
| 2098 | type_args.iter().all(|t| t.implements_copy()) |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 2099 | } |
| 2100 | } |
| 2101 | } |
Lukasz Anforowicz | a94ab70 | 2022-01-14 22:40:25 +0000 | [diff] [blame] | 2102 | |
Lukasz Anforowicz | f956462 | 2022-01-28 14:31:04 +0000 | [diff] [blame] | 2103 | pub fn is_ref_to(&self, expected_record: &Record) -> bool { |
| 2104 | match self { |
| 2105 | RsTypeKind::Reference { referent, .. } => referent.is_record(expected_record), |
| 2106 | _ => false, |
| 2107 | } |
| 2108 | } |
| 2109 | |
Lukasz Anforowicz | a94ab70 | 2022-01-14 22:40:25 +0000 | [diff] [blame] | 2110 | pub fn is_shared_ref_to(&self, expected_record: &Record) -> bool { |
| 2111 | match self { |
| 2112 | RsTypeKind::Reference { referent, mutability: Mutability::Const, .. } => { |
Lukasz Anforowicz | f956462 | 2022-01-28 14:31:04 +0000 | [diff] [blame] | 2113 | referent.is_record(expected_record) |
Lukasz Anforowicz | a94ab70 | 2022-01-14 22:40:25 +0000 | [diff] [blame] | 2114 | } |
| 2115 | _ => false, |
| 2116 | } |
| 2117 | } |
Lukasz Anforowicz | f956462 | 2022-01-28 14:31:04 +0000 | [diff] [blame] | 2118 | |
| 2119 | pub fn is_record(&self, expected_record: &Record) -> bool { |
| 2120 | match self { |
Devin Jeanpierre | fec5bfe | 2022-04-05 10:59:10 -0700 | [diff] [blame] | 2121 | RsTypeKind::Record { record: actual_record, .. } => { |
| 2122 | actual_record.id == expected_record.id |
| 2123 | } |
Lukasz Anforowicz | f956462 | 2022-01-28 14:31:04 +0000 | [diff] [blame] | 2124 | _ => false, |
| 2125 | } |
| 2126 | } |
Lukasz Anforowicz | 90bdb96 | 2022-02-14 21:07:45 +0000 | [diff] [blame] | 2127 | |
| 2128 | /// Iterates over `self` and all the nested types (e.g. pointees, generic |
| 2129 | /// type args, etc.) in DFS order. |
| 2130 | pub fn dfs_iter<'ty>(&'ty self) -> impl Iterator<Item = &'ty RsTypeKind<'ir>> + '_ { |
| 2131 | RsTypeKindIter::new(self) |
| 2132 | } |
| 2133 | |
| 2134 | /// Iterates over all `LifetimeId`s in `self` and in all the nested types. |
| 2135 | /// Note that the results might contain duplicate LifetimeId values (e.g. |
| 2136 | /// if the same LifetimeId is used in two `type_args`). |
| 2137 | pub fn lifetimes(&self) -> impl Iterator<Item = LifetimeId> + '_ { |
| 2138 | self.dfs_iter().filter_map(|t| match t { |
Devin Jeanpierre | d2b7a8f | 2022-04-01 04:37:16 -0700 | [diff] [blame] | 2139 | RsTypeKind::Reference { lifetime, .. } => Some(lifetime.id), |
Devin Jeanpierre | 48cb5bc | 2022-06-02 00:50:43 -0700 | [diff] [blame] | 2140 | RsTypeKind::RvalueReference { lifetime, .. } => Some(lifetime.id), |
Lukasz Anforowicz | 90bdb96 | 2022-02-14 21:07:45 +0000 | [diff] [blame] | 2141 | _ => None, |
| 2142 | }) |
| 2143 | } |
| 2144 | } |
| 2145 | |
Devin Jeanpierre | 92ca261 | 2022-04-06 11:35:13 -0700 | [diff] [blame] | 2146 | impl<'ir> ToTokens for RsTypeKind<'ir> { |
| 2147 | fn to_tokens(&self, tokens: &mut TokenStream) { |
| 2148 | self.to_token_stream().to_tokens(tokens) |
| 2149 | } |
| 2150 | |
| 2151 | fn to_token_stream(&self) -> TokenStream { |
| 2152 | match self { |
| 2153 | RsTypeKind::Pointer { pointee, mutability } => { |
| 2154 | let mutability = mutability.format_for_pointer(); |
| 2155 | quote! {* #mutability #pointee} |
| 2156 | } |
| 2157 | RsTypeKind::Reference { referent, mutability, lifetime } => { |
| 2158 | let mut_ = mutability.format_for_reference(); |
Devin Jeanpierre | 92ca261 | 2022-04-06 11:35:13 -0700 | [diff] [blame] | 2159 | let reference = quote! {& #lifetime #mut_ #referent}; |
| 2160 | if mutability == &Mutability::Mut && !referent.is_unpin() { |
| 2161 | // TODO(b/200067242): Add a `use rust_std::pin::Pin` to the crate, and use |
| 2162 | // `Pin`. This either requires deciding how to qualify pin at |
| 2163 | // RsTypeKind-creation time, or returning an RsSnippet from here (and not |
| 2164 | // implementing ToTokens, but instead some other interface.) |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 2165 | quote! {crate::rust_std::pin::Pin< #reference >} |
Devin Jeanpierre | 92ca261 | 2022-04-06 11:35:13 -0700 | [diff] [blame] | 2166 | } else { |
| 2167 | reference |
| 2168 | } |
| 2169 | } |
| 2170 | RsTypeKind::RvalueReference { referent, mutability, lifetime } => { |
Devin Jeanpierre | 92ca261 | 2022-04-06 11:35:13 -0700 | [diff] [blame] | 2171 | // TODO(b/200067242): Add a `use ctor::RvalueReference` (etc.) to the crate. |
| 2172 | if mutability == &Mutability::Mut { |
| 2173 | quote! {ctor::RvalueReference<#lifetime, #referent>} |
| 2174 | } else { |
| 2175 | quote! {ctor::ConstRvalueReference<#lifetime, #referent>} |
| 2176 | } |
| 2177 | } |
| 2178 | RsTypeKind::FuncPtr { abi, return_type, param_types } => { |
| 2179 | let return_frag = return_type.format_as_return_type_fragment(); |
| 2180 | quote! { extern #abi fn( #( #param_types ),* ) #return_frag } |
| 2181 | } |
Marcel Hlopko | 3623489 | 2022-05-10 00:39:54 -0700 | [diff] [blame] | 2182 | RsTypeKind::IncompleteRecord { |
| 2183 | incomplete_record, |
| 2184 | namespace_qualifier, |
| 2185 | crate_ident, |
| 2186 | } => { |
Devin Jeanpierre | c0543eb | 2022-04-20 16:00:34 -0700 | [diff] [blame] | 2187 | let record_ident = make_rs_ident(&incomplete_record.cc_name); |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2188 | let namespace_idents = namespace_qualifier.iter(); |
| 2189 | match crate_ident { |
| 2190 | Some(ci) => { |
Marcel Hlopko | 3623489 | 2022-05-10 00:39:54 -0700 | [diff] [blame] | 2191 | quote! { #ci #(#namespace_idents::)* #record_ident } |
| 2192 | } |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2193 | None => { |
Marcel Hlopko | 3623489 | 2022-05-10 00:39:54 -0700 | [diff] [blame] | 2194 | quote! { crate:: #(#namespace_idents::)* #record_ident } |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2195 | } |
| 2196 | } |
Devin Jeanpierre | c0543eb | 2022-04-20 16:00:34 -0700 | [diff] [blame] | 2197 | } |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2198 | RsTypeKind::Record { record, namespace_qualifier, crate_ident } => { |
| 2199 | let ident = make_rs_ident(&record.rs_name); |
| 2200 | let namespace_idents = namespace_qualifier.iter(); |
| 2201 | match crate_ident { |
| 2202 | Some(ci) => { |
Marcel Hlopko | 3623489 | 2022-05-10 00:39:54 -0700 | [diff] [blame] | 2203 | quote! { #ci:: #(#namespace_idents::)* #ident } |
| 2204 | } |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2205 | None => { |
Marcel Hlopko | 3623489 | 2022-05-10 00:39:54 -0700 | [diff] [blame] | 2206 | quote! { crate:: #(#namespace_idents::)* #ident } |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2207 | } |
| 2208 | } |
Devin Jeanpierre | 92ca261 | 2022-04-06 11:35:13 -0700 | [diff] [blame] | 2209 | } |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2210 | RsTypeKind::TypeAlias { type_alias, namespace_qualifier, crate_ident, .. } => { |
| 2211 | let ident = make_rs_ident(&type_alias.identifier.identifier); |
| 2212 | let namespace_idents = namespace_qualifier.iter(); |
| 2213 | match crate_ident { |
| 2214 | Some(ci) => { |
Marcel Hlopko | 3623489 | 2022-05-10 00:39:54 -0700 | [diff] [blame] | 2215 | quote! { #ci:: #(#namespace_idents::)* #ident } |
| 2216 | } |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2217 | None => { |
Marcel Hlopko | 3623489 | 2022-05-10 00:39:54 -0700 | [diff] [blame] | 2218 | quote! { crate:: #(#namespace_idents::)* #ident } |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2219 | } |
| 2220 | } |
Devin Jeanpierre | 92ca261 | 2022-04-06 11:35:13 -0700 | [diff] [blame] | 2221 | } |
| 2222 | RsTypeKind::Unit => quote! {()}, |
| 2223 | RsTypeKind::Other { name, type_args } => { |
| 2224 | let ident = make_rs_ident(name); |
| 2225 | let generic_params = format_generic_params(type_args); |
| 2226 | quote! {#ident #generic_params} |
| 2227 | } |
| 2228 | } |
| 2229 | } |
| 2230 | } |
| 2231 | |
Lukasz Anforowicz | 90bdb96 | 2022-02-14 21:07:45 +0000 | [diff] [blame] | 2232 | struct RsTypeKindIter<'ty, 'ir> { |
| 2233 | todo: Vec<&'ty RsTypeKind<'ir>>, |
| 2234 | } |
| 2235 | |
| 2236 | impl<'ty, 'ir> RsTypeKindIter<'ty, 'ir> { |
| 2237 | pub fn new(ty: &'ty RsTypeKind<'ir>) -> Self { |
| 2238 | Self { todo: vec![ty] } |
| 2239 | } |
| 2240 | } |
| 2241 | |
| 2242 | impl<'ty, 'ir> Iterator for RsTypeKindIter<'ty, 'ir> { |
| 2243 | type Item = &'ty RsTypeKind<'ir>; |
| 2244 | |
| 2245 | fn next(&mut self) -> Option<Self::Item> { |
| 2246 | match self.todo.pop() { |
| 2247 | None => None, |
| 2248 | Some(curr) => { |
| 2249 | match curr { |
Devin Jeanpierre | c0543eb | 2022-04-20 16:00:34 -0700 | [diff] [blame] | 2250 | RsTypeKind::Unit |
| 2251 | | RsTypeKind::IncompleteRecord { .. } |
| 2252 | | RsTypeKind::Record { .. } => {} |
Lukasz Anforowicz | 90bdb96 | 2022-02-14 21:07:45 +0000 | [diff] [blame] | 2253 | RsTypeKind::Pointer { pointee, .. } => self.todo.push(pointee), |
| 2254 | RsTypeKind::Reference { referent, .. } => self.todo.push(referent), |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 2255 | RsTypeKind::RvalueReference { referent, .. } => self.todo.push(referent), |
Lukasz Anforowicz | 90bdb96 | 2022-02-14 21:07:45 +0000 | [diff] [blame] | 2256 | RsTypeKind::TypeAlias { underlying_type: t, .. } => self.todo.push(t), |
Lukasz Anforowicz | cf230fd | 2022-02-18 19:20:39 +0000 | [diff] [blame] | 2257 | RsTypeKind::FuncPtr { return_type, param_types, .. } => { |
| 2258 | self.todo.push(return_type); |
| 2259 | self.todo.extend(param_types.iter().rev()); |
Devin Jeanpierre | 1b8f4a1 | 2022-03-22 21:29:42 +0000 | [diff] [blame] | 2260 | } |
Lukasz Anforowicz | 90bdb96 | 2022-02-14 21:07:45 +0000 | [diff] [blame] | 2261 | RsTypeKind::Other { type_args, .. } => self.todo.extend(type_args.iter().rev()), |
| 2262 | }; |
| 2263 | Some(curr) |
| 2264 | } |
| 2265 | } |
| 2266 | } |
Lukasz Anforowicz | 40c2eb8 | 2022-01-11 18:22:31 +0000 | [diff] [blame] | 2267 | } |
| 2268 | |
Devin Jeanpierre | 9886fb4 | 2022-04-01 04:31:20 -0700 | [diff] [blame] | 2269 | fn format_rs_type(ty: &ir::RsType, ir: &IR) -> Result<TokenStream> { |
Lukasz Anforowicz | 40c2eb8 | 2022-01-11 18:22:31 +0000 | [diff] [blame] | 2270 | RsTypeKind::new(ty, ir) |
Devin Jeanpierre | 92ca261 | 2022-04-06 11:35:13 -0700 | [diff] [blame] | 2271 | .map(|kind| kind.to_token_stream()) |
Lukasz Anforowicz | 40c2eb8 | 2022-01-11 18:22:31 +0000 | [diff] [blame] | 2272 | .with_context(|| format!("Failed to format Rust type {:?}", ty)) |
Devin Jeanpierre | 7a7328e | 2021-09-17 07:10:08 +0000 | [diff] [blame] | 2273 | } |
| 2274 | |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2275 | fn cc_type_name_for_item(item: &ir::Item, ir: &IR) -> Result<TokenStream> { |
Devin Jeanpierre | 1b8f4a1 | 2022-03-22 21:29:42 +0000 | [diff] [blame] | 2276 | Ok(match item { |
Lukasz Anforowicz | 4c3a2cc | 2022-03-11 00:24:49 +0000 | [diff] [blame] | 2277 | Item::Record(record) => { |
| 2278 | let ident = format_cc_ident(&record.cc_name); |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2279 | let namespace_qualifier = generate_namespace_qualifier(record.id, ir)?; |
Marcel Hlopko | 4c29c6f | 2022-05-04 00:49:14 -0700 | [diff] [blame] | 2280 | let tag_kind = tag_kind(record); |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2281 | quote! { #tag_kind #(#namespace_qualifier::)* #ident } |
Devin Jeanpierre | 1b8f4a1 | 2022-03-22 21:29:42 +0000 | [diff] [blame] | 2282 | } |
Lukasz Anforowicz | 4c3a2cc | 2022-03-11 00:24:49 +0000 | [diff] [blame] | 2283 | Item::TypeAlias(type_alias) => { |
| 2284 | let ident = format_cc_ident(&type_alias.identifier.identifier); |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2285 | let namespace_qualifier = generate_namespace_qualifier(type_alias.id, ir)?; |
| 2286 | quote! { #(#namespace_qualifier::)* #ident } |
Devin Jeanpierre | 1b8f4a1 | 2022-03-22 21:29:42 +0000 | [diff] [blame] | 2287 | } |
Googler | 6a0a525 | 2022-01-11 14:08:09 +0000 | [diff] [blame] | 2288 | _ => bail!("Item does not define a type: {:?}", item), |
Lukasz Anforowicz | 4c3a2cc | 2022-03-11 00:24:49 +0000 | [diff] [blame] | 2289 | }) |
Googler | 6a0a525 | 2022-01-11 14:08:09 +0000 | [diff] [blame] | 2290 | } |
| 2291 | |
Marcel Hlopko | 4c29c6f | 2022-05-04 00:49:14 -0700 | [diff] [blame] | 2292 | fn tag_kind(record: &ir::Record) -> TokenStream { |
| 2293 | if record.is_union { |
| 2294 | quote! { union } |
| 2295 | } else { |
| 2296 | quote! { class } |
| 2297 | } |
| 2298 | } |
| 2299 | |
Lukasz Anforowicz | 71e9b59 | 2022-03-04 19:03:02 +0000 | [diff] [blame] | 2300 | // Maps a Rust ABI [1] into a Clang attribute. See also |
| 2301 | // `ConvertCcCallConvIntoRsApi` in importer.cc. |
| 2302 | // [1] |
| 2303 | // https://doc.rust-lang.org/reference/items/functions.html#extern-function-qualifier |
| 2304 | fn format_cc_call_conv_as_clang_attribute(rs_abi: &str) -> Result<TokenStream> { |
| 2305 | match rs_abi { |
| 2306 | "cdecl" => Ok(quote! {}), |
| 2307 | "fastcall" => Ok(quote! { __attribute__((fastcall)) }), |
| 2308 | "stdcall" => Ok(quote! { __attribute__((stdcall)) }), |
| 2309 | "thiscall" => Ok(quote! { __attribute__((thiscall)) }), |
| 2310 | "vectorcall" => Ok(quote! { __attribute__((vectorcall)) }), |
| 2311 | _ => bail!("Unsupported ABI: {}", rs_abi), |
| 2312 | } |
| 2313 | } |
| 2314 | |
Marcel Hlopko | c0956cf | 2021-11-29 08:31:28 +0000 | [diff] [blame] | 2315 | fn format_cc_type(ty: &ir::CcType, ir: &IR) -> Result<TokenStream> { |
Devin Jeanpierre | 09c6f45 | 2021-09-29 07:34:24 +0000 | [diff] [blame] | 2316 | let const_fragment = if ty.is_const { |
Devin Jeanpierre | 184f9ac | 2021-09-17 13:47:03 +0000 | [diff] [blame] | 2317 | quote! {const} |
| 2318 | } else { |
| 2319 | quote! {} |
| 2320 | }; |
Marcel Hlopko | c0956cf | 2021-11-29 08:31:28 +0000 | [diff] [blame] | 2321 | if let Some(ref name) = ty.name { |
| 2322 | match name.as_str() { |
| 2323 | "*" => { |
Googler | ff7fc23 | 2021-12-02 09:43:00 +0000 | [diff] [blame] | 2324 | if ty.type_args.len() != 1 { |
| 2325 | bail!("Invalid pointer type (need exactly 1 type argument): {:?}", ty); |
Marcel Hlopko | c0956cf | 2021-11-29 08:31:28 +0000 | [diff] [blame] | 2326 | } |
Googler | ff7fc23 | 2021-12-02 09:43:00 +0000 | [diff] [blame] | 2327 | assert_eq!(ty.type_args.len(), 1); |
| 2328 | let nested_type = format_cc_type(&ty.type_args[0], ir)?; |
Marcel Hlopko | c0956cf | 2021-11-29 08:31:28 +0000 | [diff] [blame] | 2329 | Ok(quote! {#nested_type * #const_fragment}) |
Devin Jeanpierre | 7a7328e | 2021-09-17 07:10:08 +0000 | [diff] [blame] | 2330 | } |
Lukasz Anforowicz | 275fa92 | 2022-01-05 16:13:20 +0000 | [diff] [blame] | 2331 | "&" => { |
| 2332 | if ty.type_args.len() != 1 { |
| 2333 | bail!("Invalid reference type (need exactly 1 type argument): {:?}", ty); |
| 2334 | } |
| 2335 | let nested_type = format_cc_type(&ty.type_args[0], ir)?; |
| 2336 | Ok(quote! {#nested_type &}) |
| 2337 | } |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 2338 | "&&" => { |
| 2339 | if ty.type_args.len() != 1 { |
| 2340 | bail!("Invalid rvalue reference type (need exactly 1 type argument): {:?}", ty); |
| 2341 | } |
| 2342 | let nested_type = format_cc_type(&ty.type_args[0], ir)?; |
| 2343 | Ok(quote! {#nested_type &&}) |
| 2344 | } |
Lukasz Anforowicz | 71e9b59 | 2022-03-04 19:03:02 +0000 | [diff] [blame] | 2345 | cc_type_name => match cc_type_name.strip_prefix("#funcValue ") { |
| 2346 | None => { |
| 2347 | if !ty.type_args.is_empty() { |
| 2348 | bail!("Type not yet supported: {:?}", ty); |
| 2349 | } |
| 2350 | let idents = cc_type_name.split_whitespace().map(format_cc_ident); |
| 2351 | Ok(quote! {#( #idents )* #const_fragment}) |
Devin Jeanpierre | 1b8f4a1 | 2022-03-22 21:29:42 +0000 | [diff] [blame] | 2352 | } |
Lukasz Anforowicz | 71e9b59 | 2022-03-04 19:03:02 +0000 | [diff] [blame] | 2353 | Some(abi) => match ty.type_args.split_last() { |
| 2354 | None => bail!("funcValue type without a return type: {:?}", ty), |
| 2355 | Some((ret_type, param_types)) => { |
| 2356 | let ret_type = format_cc_type(ret_type, ir)?; |
| 2357 | let param_types = param_types |
| 2358 | .iter() |
| 2359 | .map(|t| format_cc_type(t, ir)) |
| 2360 | .collect::<Result<Vec<_>>>()?; |
| 2361 | let attr = format_cc_call_conv_as_clang_attribute(abi)?; |
| 2362 | // `type_identity_t` is used below to avoid having to |
| 2363 | // emit spiral-like syntax where some syntax elements of |
| 2364 | // an inner type (e.g. function type as below) can |
| 2365 | // surround syntax elements of an outer type (e.g. a |
| 2366 | // pointer type). Compare: `int (*foo)(int, int)` VS |
| 2367 | // `type_identity_t<int(int, int)>* foo`. |
Lukasz Anforowicz | 2317154 | 2022-04-11 15:26:17 -0700 | [diff] [blame] | 2368 | Ok(quote! { crubit::type_identity_t< |
Devin Jeanpierre | 1b8f4a1 | 2022-03-22 21:29:42 +0000 | [diff] [blame] | 2369 | #ret_type ( #( #param_types ),* ) #attr |
| 2370 | > }) |
| 2371 | } |
| 2372 | }, |
| 2373 | }, |
Devin Jeanpierre | 7a7328e | 2021-09-17 07:10:08 +0000 | [diff] [blame] | 2374 | } |
Marcel Hlopko | c0956cf | 2021-11-29 08:31:28 +0000 | [diff] [blame] | 2375 | } else { |
Googler | 6a0a525 | 2022-01-11 14:08:09 +0000 | [diff] [blame] | 2376 | let item = ir.item_for_type(ty)?; |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2377 | let type_name = cc_type_name_for_item(item, ir)?; |
Googler | 6a0a525 | 2022-01-11 14:08:09 +0000 | [diff] [blame] | 2378 | Ok(quote! {#const_fragment #type_name}) |
Devin Jeanpierre | 7a7328e | 2021-09-17 07:10:08 +0000 | [diff] [blame] | 2379 | } |
| 2380 | } |
| 2381 | |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2382 | fn cc_struct_layout_assertion(record: &Record, ir: &IR) -> Result<TokenStream> { |
Googler | 6a0a525 | 2022-01-11 14:08:09 +0000 | [diff] [blame] | 2383 | if !ir.is_current_target(&record.owning_target) && !ir.is_stdlib_target(&record.owning_target) { |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2384 | return Ok(quote! {}); |
Marcel Hlopko | a0f3866 | 2021-12-03 08:45:26 +0000 | [diff] [blame] | 2385 | } |
Lukasz Anforowicz | 4c3a2cc | 2022-03-11 00:24:49 +0000 | [diff] [blame] | 2386 | let record_ident = format_cc_ident(&record.cc_name); |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2387 | let namespace_qualifier = generate_namespace_qualifier(record.id, ir)?; |
| 2388 | let namespace_qualifier = quote! { #(#namespace_qualifier::)* }; |
Googler | 5ea8864 | 2021-09-29 08:05:59 +0000 | [diff] [blame] | 2389 | let size = Literal::usize_unsuffixed(record.size); |
| 2390 | let alignment = Literal::usize_unsuffixed(record.alignment); |
Marcel Hlopko | 4c29c6f | 2022-05-04 00:49:14 -0700 | [diff] [blame] | 2391 | let tag_kind = tag_kind(record); |
Devin Jeanpierre | 190b90a | 2022-05-24 06:00:34 -0700 | [diff] [blame] | 2392 | let field_assertions = record |
| 2393 | .fields |
| 2394 | .iter() |
| 2395 | .filter(|f| f.access == AccessSpecifier::Public && f.identifier.is_some()) |
| 2396 | // https://en.cppreference.com/w/cpp/types/offsetof points out that "if member is [...] |
| 2397 | // a bit-field [...] the behavior [of `offsetof` macro] is undefined.". In such |
| 2398 | // scenario clang reports an error: cannot compute offset of bit-field 'field_name'. |
| 2399 | .filter(|f| !f.is_bitfield) |
| 2400 | .map(|field| { |
| 2401 | // The IR contains the offset in bits, while `CRUBIT_OFFSET_OF` returns the |
| 2402 | // offset in bytes, so we need to convert. We can assert that |
| 2403 | // `field.offset` is always at field boundaries, because the |
| 2404 | // bitfields have been filtered out earlier. |
| 2405 | assert_eq!(field.offset % 8, 0); |
| 2406 | let expected_offset = Literal::usize_unsuffixed(field.offset / 8); |
Lukasz Anforowicz | 30360ba | 2022-05-23 12:15:12 -0700 | [diff] [blame] | 2407 | |
Devin Jeanpierre | 190b90a | 2022-05-24 06:00:34 -0700 | [diff] [blame] | 2408 | let field_ident = format_cc_ident(&field.identifier.as_ref().unwrap().identifier); |
| 2409 | let actual_offset = quote! { |
| 2410 | CRUBIT_OFFSET_OF(#field_ident, #tag_kind #namespace_qualifier #record_ident) |
| 2411 | }; |
Lukasz Anforowicz | 30360ba | 2022-05-23 12:15:12 -0700 | [diff] [blame] | 2412 | |
Devin Jeanpierre | 190b90a | 2022-05-24 06:00:34 -0700 | [diff] [blame] | 2413 | quote! { static_assert( #actual_offset == #expected_offset); } |
| 2414 | }); |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2415 | Ok(quote! { |
| 2416 | static_assert(sizeof(#tag_kind #namespace_qualifier #record_ident) == #size); |
| 2417 | static_assert(alignof(#tag_kind #namespace_qualifier #record_ident) == #alignment); |
Googler | 5ea8864 | 2021-09-29 08:05:59 +0000 | [diff] [blame] | 2418 | #( #field_assertions )* |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2419 | }) |
Googler | 5ea8864 | 2021-09-29 08:05:59 +0000 | [diff] [blame] | 2420 | } |
| 2421 | |
Devin Jeanpierre | 58181ac | 2022-02-14 21:30:05 +0000 | [diff] [blame] | 2422 | // Returns the accessor functions for no_unique_address member variables. |
| 2423 | fn cc_struct_no_unique_address_impl(record: &Record, ir: &IR) -> Result<TokenStream> { |
| 2424 | let mut fields = vec![]; |
| 2425 | let mut types = vec![]; |
| 2426 | for field in &record.fields { |
| 2427 | if field.access != AccessSpecifier::Public || !field.is_no_unique_address { |
| 2428 | continue; |
| 2429 | } |
Lukasz Anforowicz | fea0db9 | 2022-05-17 17:28:04 -0700 | [diff] [blame] | 2430 | // Can't use `get_field_rs_type_for_layout` here, because we want to dig into |
| 2431 | // no_unique_address fields, despite laying them out as opaque blobs of bytes. |
| 2432 | if let Ok(rs_type) = field.type_.as_ref().map(|t| &t.rs_type) { |
| 2433 | fields.push(make_rs_ident( |
| 2434 | &field |
| 2435 | .identifier |
| 2436 | .as_ref() |
| 2437 | .expect("Unnamed fields can't be annotated with [[no_unique_address]]") |
| 2438 | .identifier, |
| 2439 | )); |
| 2440 | types.push(format_rs_type(rs_type, ir).with_context(|| { |
| 2441 | format!("Failed to format type for field {:?} on record {:?}", field, record) |
| 2442 | })?) |
| 2443 | } |
Devin Jeanpierre | 58181ac | 2022-02-14 21:30:05 +0000 | [diff] [blame] | 2444 | } |
| 2445 | |
| 2446 | if fields.is_empty() { |
| 2447 | return Ok(quote! {}); |
| 2448 | } |
| 2449 | |
Lukasz Anforowicz | 4c3a2cc | 2022-03-11 00:24:49 +0000 | [diff] [blame] | 2450 | let ident = make_rs_ident(&record.rs_name); |
Devin Jeanpierre | 58181ac | 2022-02-14 21:30:05 +0000 | [diff] [blame] | 2451 | Ok(quote! { |
| 2452 | impl #ident { |
| 2453 | #( |
| 2454 | pub fn #fields(&self) -> &#types { |
| 2455 | unsafe {&* (&self.#fields as *const _ as *const #types)} |
| 2456 | } |
| 2457 | )* |
| 2458 | } |
| 2459 | }) |
| 2460 | } |
| 2461 | |
Devin Jeanpierre | 5677702 | 2022-02-03 01:57:15 +0000 | [diff] [blame] | 2462 | /// Returns the implementation of base class conversions, for converting a type |
| 2463 | /// to its unambiguous public base classes. |
Devin Jeanpierre | 8763a8e | 2022-04-26 15:45:13 -0700 | [diff] [blame] | 2464 | fn cc_struct_upcast_impl(record: &Record, ir: &IR) -> Result<GeneratedItem> { |
Devin Jeanpierre | 5677702 | 2022-02-03 01:57:15 +0000 | [diff] [blame] | 2465 | let mut impls = Vec::with_capacity(record.unambiguous_public_bases.len()); |
Devin Jeanpierre | f99db3e | 2022-04-27 23:10:33 -0700 | [diff] [blame] | 2466 | let mut thunks = vec![]; |
| 2467 | let mut cc_impls = vec![]; |
Devin Jeanpierre | 5677702 | 2022-02-03 01:57:15 +0000 | [diff] [blame] | 2468 | for base in &record.unambiguous_public_bases { |
Lukasz Anforowicz | 4404725 | 2022-03-23 13:04:48 +0000 | [diff] [blame] | 2469 | let base_record: &Record = ir |
| 2470 | .find_decl(base.base_record_id) |
| 2471 | .with_context(|| format!("Can't find a base record of {:?}", record))?; |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2472 | let base_name = RsTypeKind::new_record(base_record, ir)?.into_token_stream(); |
Devin Jeanpierre | f99db3e | 2022-04-27 23:10:33 -0700 | [diff] [blame] | 2473 | let derived_name = make_rs_ident(&record.rs_name); |
| 2474 | let body; |
Devin Jeanpierre | 5677702 | 2022-02-03 01:57:15 +0000 | [diff] [blame] | 2475 | if let Some(offset) = base.offset { |
| 2476 | let offset = Literal::i64_unsuffixed(offset); |
Devin Jeanpierre | b368e68 | 2022-05-03 02:23:44 -0700 | [diff] [blame] | 2477 | body = quote! {(derived as *const _ as *const u8).offset(#offset) as *const #base_name}; |
Devin Jeanpierre | f99db3e | 2022-04-27 23:10:33 -0700 | [diff] [blame] | 2478 | } else { |
| 2479 | // TODO(b/216195042): use mangled names here, or otherwise guarantee |
| 2480 | // non-collision. |
| 2481 | let cast_fn_name = make_rs_ident(&format!( |
| 2482 | "__crubit_dynamic_upcast__{}__to__{}", |
| 2483 | record.rs_name, base_record.rs_name |
| 2484 | )); |
| 2485 | let base_cc_name = format_cc_ident(&base_record.cc_name); |
| 2486 | let derived_cc_name = format_cc_ident(&record.cc_name); |
| 2487 | cc_impls.push(quote! { |
| 2488 | extern "C" const #base_cc_name& #cast_fn_name(const #derived_cc_name& from) { |
| 2489 | return from; |
Devin Jeanpierre | 5677702 | 2022-02-03 01:57:15 +0000 | [diff] [blame] | 2490 | } |
| 2491 | }); |
Devin Jeanpierre | f99db3e | 2022-04-27 23:10:33 -0700 | [diff] [blame] | 2492 | thunks.push(quote! { |
| 2493 | pub fn #cast_fn_name (from: *const #derived_name) -> *const #base_name; |
| 2494 | }); |
| 2495 | body = quote! { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 2496 | crate::detail::#cast_fn_name(derived) |
Devin Jeanpierre | f99db3e | 2022-04-27 23:10:33 -0700 | [diff] [blame] | 2497 | }; |
Devin Jeanpierre | 5677702 | 2022-02-03 01:57:15 +0000 | [diff] [blame] | 2498 | } |
Devin Jeanpierre | f99db3e | 2022-04-27 23:10:33 -0700 | [diff] [blame] | 2499 | impls.push(quote! { |
Devin Jeanpierre | b368e68 | 2022-05-03 02:23:44 -0700 | [diff] [blame] | 2500 | unsafe impl oops::Inherits<#base_name> for #derived_name { |
| 2501 | unsafe fn upcast_ptr(derived: *const Self) -> *const #base_name { |
| 2502 | #body |
Devin Jeanpierre | f99db3e | 2022-04-27 23:10:33 -0700 | [diff] [blame] | 2503 | } |
| 2504 | } |
| 2505 | }); |
Devin Jeanpierre | 5677702 | 2022-02-03 01:57:15 +0000 | [diff] [blame] | 2506 | } |
| 2507 | |
Devin Jeanpierre | 8763a8e | 2022-04-26 15:45:13 -0700 | [diff] [blame] | 2508 | Ok(GeneratedItem { |
Devin Jeanpierre | f99db3e | 2022-04-27 23:10:33 -0700 | [diff] [blame] | 2509 | item: quote! {#(#impls)*}, |
| 2510 | thunks: quote! {#(#thunks)*}, |
| 2511 | thunk_impls: quote! {#(#cc_impls)*}, |
Devin Jeanpierre | 8763a8e | 2022-04-26 15:45:13 -0700 | [diff] [blame] | 2512 | ..Default::default() |
Devin Jeanpierre | 5677702 | 2022-02-03 01:57:15 +0000 | [diff] [blame] | 2513 | }) |
| 2514 | } |
| 2515 | |
Googler | a675ae0 | 2021-12-07 08:04:59 +0000 | [diff] [blame] | 2516 | fn thunk_ident(func: &Func) -> Ident { |
| 2517 | format_ident!("__rust_thunk__{}", func.mangled_name) |
Devin Jeanpierre | f2ec871 | 2021-10-13 20:47:16 +0000 | [diff] [blame] | 2518 | } |
| 2519 | |
Lukasz Anforowicz | dd90770 | 2022-05-06 09:24:07 -0700 | [diff] [blame] | 2520 | fn generate_rs_api_impl(ir: &IR, crubit_support_path: &str) -> Result<TokenStream> { |
Michael Forster | bee8448 | 2021-10-13 08:35:38 +0000 | [diff] [blame] | 2521 | // This function uses quote! to generate C++ source code out of convenience. |
| 2522 | // This is a bold idea so we have to continously evaluate if it still makes |
| 2523 | // sense or the cost of working around differences in Rust and C++ tokens is |
| 2524 | // greather than the value added. |
Marcel Hlopko | 3164eee | 2021-08-24 20:09:22 +0000 | [diff] [blame] | 2525 | // |
Michael Forster | bee8448 | 2021-10-13 08:35:38 +0000 | [diff] [blame] | 2526 | // See rs_bindings_from_cc/ |
| 2527 | // token_stream_printer.rs for a list of supported placeholders. |
Marcel Hlopko | 3164eee | 2021-08-24 20:09:22 +0000 | [diff] [blame] | 2528 | let mut thunks = vec![]; |
Michael Forster | 7ef8073 | 2021-10-01 18:12:19 +0000 | [diff] [blame] | 2529 | for func in ir.functions() { |
Lukasz Anforowicz | dd9ae0f | 2022-02-17 15:52:53 +0000 | [diff] [blame] | 2530 | if can_skip_cc_thunk(func) { |
Marcel Hlopko | 3164eee | 2021-08-24 20:09:22 +0000 | [diff] [blame] | 2531 | continue; |
| 2532 | } |
| 2533 | |
Googler | a675ae0 | 2021-12-07 08:04:59 +0000 | [diff] [blame] | 2534 | let thunk_ident = thunk_ident(func); |
Devin Jeanpierre | f2ec871 | 2021-10-13 20:47:16 +0000 | [diff] [blame] | 2535 | let implementation_function = match &func.name { |
Lukasz Anforowicz | 9c663ca | 2022-02-09 01:33:31 +0000 | [diff] [blame] | 2536 | UnqualifiedIdentifier::Operator(op) => { |
| 2537 | let name = syn::parse_str::<TokenStream>(&op.name)?; |
| 2538 | quote! { operator #name } |
| 2539 | } |
Devin Jeanpierre | f2ec871 | 2021-10-13 20:47:16 +0000 | [diff] [blame] | 2540 | UnqualifiedIdentifier::Identifier(id) => { |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 2541 | let fn_ident = format_cc_ident(&id.identifier); |
Rosica Dejanovska | a08b386 | 2022-06-02 08:22:49 -0700 | [diff] [blame] | 2542 | match func.member_func_metadata.as_ref() { |
Lukasz Anforowicz | aab8ad2 | 2021-12-19 20:29:26 +0000 | [diff] [blame] | 2543 | Some(meta) => { |
Rosica Dejanovska | a08b386 | 2022-06-02 08:22:49 -0700 | [diff] [blame] | 2544 | if let Some(_) = meta.instance_method_metadata { |
| 2545 | quote! { #fn_ident } |
| 2546 | } else { |
| 2547 | let record = meta.find_record(ir)?; |
| 2548 | let record_ident = format_cc_ident(&record.cc_name); |
| 2549 | let namespace_qualifier = generate_namespace_qualifier(record.id, ir)?; |
| 2550 | quote! { #(#namespace_qualifier::)* #record_ident :: #fn_ident } |
| 2551 | } |
| 2552 | } |
| 2553 | None => { |
| 2554 | let namespace_qualifier = generate_namespace_qualifier(func.id, ir)?; |
| 2555 | quote! { #(#namespace_qualifier::)* #fn_ident } |
Lukasz Anforowicz | aab8ad2 | 2021-12-19 20:29:26 +0000 | [diff] [blame] | 2556 | } |
| 2557 | } |
Devin Jeanpierre | f2ec871 | 2021-10-13 20:47:16 +0000 | [diff] [blame] | 2558 | } |
Lukasz Anforowicz | 7b0042d | 2022-01-06 23:00:19 +0000 | [diff] [blame] | 2559 | // Use `destroy_at` to avoid needing to spell out the class name. Destructor identiifers |
Devin Jeanpierre | cc6cf09 | 2021-12-16 04:31:14 +0000 | [diff] [blame] | 2560 | // use the name of the type itself, without namespace qualification, template |
| 2561 | // parameters, or aliases. We do not need to use that naming scheme anywhere else in |
| 2562 | // the bindings, and it can be difficult (impossible?) to spell in the general case. By |
| 2563 | // using destroy_at, we avoid needing to determine or remember what the correct spelling |
Lukasz Anforowicz | 7b0042d | 2022-01-06 23:00:19 +0000 | [diff] [blame] | 2564 | // is. Similar arguments apply to `construct_at`. |
Lukasz Anforowicz | e643ec9 | 2021-12-22 15:45:15 +0000 | [diff] [blame] | 2565 | UnqualifiedIdentifier::Constructor => { |
Lukasz Anforowicz | 2317154 | 2022-04-11 15:26:17 -0700 | [diff] [blame] | 2566 | quote! { crubit::construct_at } |
Lukasz Anforowicz | e643ec9 | 2021-12-22 15:45:15 +0000 | [diff] [blame] | 2567 | } |
Devin Jeanpierre | f2ec871 | 2021-10-13 20:47:16 +0000 | [diff] [blame] | 2568 | UnqualifiedIdentifier::Destructor => quote! {std::destroy_at}, |
Devin Jeanpierre | f2ec871 | 2021-10-13 20:47:16 +0000 | [diff] [blame] | 2569 | }; |
Marcel Hlopko | c0956cf | 2021-11-29 08:31:28 +0000 | [diff] [blame] | 2570 | let return_type_name = format_cc_type(&func.return_type.cc_type, ir)?; |
Lukasz Anforowicz | e643ec9 | 2021-12-22 15:45:15 +0000 | [diff] [blame] | 2571 | let return_stmt = if func.return_type.cc_type.is_void() { |
| 2572 | quote! {} |
| 2573 | } else { |
| 2574 | quote! { return } |
| 2575 | }; |
Marcel Hlopko | 3164eee | 2021-08-24 20:09:22 +0000 | [diff] [blame] | 2576 | |
| 2577 | let param_idents = |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 2578 | func.params.iter().map(|p| format_cc_ident(&p.identifier.identifier)).collect_vec(); |
Marcel Hlopko | 3164eee | 2021-08-24 20:09:22 +0000 | [diff] [blame] | 2579 | |
Devin Jeanpierre | 09c6f45 | 2021-09-29 07:34:24 +0000 | [diff] [blame] | 2580 | let param_types = func |
| 2581 | .params |
| 2582 | .iter() |
Marcel Hlopko | c0956cf | 2021-11-29 08:31:28 +0000 | [diff] [blame] | 2583 | .map(|p| format_cc_type(&p.type_.cc_type, ir)) |
Devin Jeanpierre | 09c6f45 | 2021-09-29 07:34:24 +0000 | [diff] [blame] | 2584 | .collect::<Result<Vec<_>>>()?; |
Marcel Hlopko | 3164eee | 2021-08-24 20:09:22 +0000 | [diff] [blame] | 2585 | |
Lukasz Anforowicz | b3d89aa | 2022-01-12 14:35:52 +0000 | [diff] [blame] | 2586 | let needs_this_deref = match &func.member_func_metadata { |
| 2587 | None => false, |
| 2588 | Some(meta) => match &func.name { |
| 2589 | UnqualifiedIdentifier::Constructor | UnqualifiedIdentifier::Destructor => false, |
Marcel Hlopko | 14ee3c8 | 2022-02-09 09:46:23 +0000 | [diff] [blame] | 2590 | UnqualifiedIdentifier::Identifier(_) | UnqualifiedIdentifier::Operator(_) => { |
| 2591 | meta.instance_method_metadata.is_some() |
| 2592 | } |
Lukasz Anforowicz | b3d89aa | 2022-01-12 14:35:52 +0000 | [diff] [blame] | 2593 | }, |
| 2594 | }; |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 2595 | |
| 2596 | let arg_expressions: Vec<_> = param_idents |
| 2597 | .iter() |
| 2598 | .map( |
| 2599 | // Forward references along. (If the parameter is a value, not a reference, this |
| 2600 | // will create an lvalue reference, and still do the right thing.) |
| 2601 | |ident| quote! {std::forward<decltype(#ident)>(#ident)}, |
| 2602 | ) |
| 2603 | .collect(); |
Lukasz Anforowicz | b3d89aa | 2022-01-12 14:35:52 +0000 | [diff] [blame] | 2604 | let (implementation_function, arg_expressions) = if !needs_this_deref { |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 2605 | (implementation_function, arg_expressions.clone()) |
Lukasz Anforowicz | b3d89aa | 2022-01-12 14:35:52 +0000 | [diff] [blame] | 2606 | } else { |
| 2607 | let this_param = func |
| 2608 | .params |
| 2609 | .first() |
| 2610 | .ok_or_else(|| anyhow!("Instance methods must have `__this` param."))?; |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 2611 | let this_arg = format_cc_ident(&this_param.identifier.identifier); |
Lukasz Anforowicz | b3d89aa | 2022-01-12 14:35:52 +0000 | [diff] [blame] | 2612 | ( |
| 2613 | quote! { #this_arg -> #implementation_function}, |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 2614 | arg_expressions.iter().skip(1).cloned().collect_vec(), |
Lukasz Anforowicz | b3d89aa | 2022-01-12 14:35:52 +0000 | [diff] [blame] | 2615 | ) |
| 2616 | }; |
| 2617 | |
Marcel Hlopko | 3164eee | 2021-08-24 20:09:22 +0000 | [diff] [blame] | 2618 | thunks.push(quote! { |
| 2619 | extern "C" #return_type_name #thunk_ident( #( #param_types #param_idents ),* ) { |
Lukasz Anforowicz | b3d89aa | 2022-01-12 14:35:52 +0000 | [diff] [blame] | 2620 | #return_stmt #implementation_function( #( #arg_expressions ),* ); |
Marcel Hlopko | 3164eee | 2021-08-24 20:09:22 +0000 | [diff] [blame] | 2621 | } |
| 2622 | }); |
| 2623 | } |
| 2624 | |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2625 | let layout_assertions = ir |
| 2626 | .records() |
| 2627 | .map(|record| cc_struct_layout_assertion(record, ir)) |
| 2628 | .collect::<Result<Vec<_>>>()?; |
Googler | 5ea8864 | 2021-09-29 08:05:59 +0000 | [diff] [blame] | 2629 | |
Devin Jeanpierre | 231ef8d | 2021-10-27 10:50:44 +0000 | [diff] [blame] | 2630 | let mut standard_headers = <BTreeSet<Ident>>::new(); |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 2631 | standard_headers.insert(format_ident!("memory")); // ubiquitous. |
Devin Jeanpierre | 231ef8d | 2021-10-27 10:50:44 +0000 | [diff] [blame] | 2632 | if ir.records().next().is_some() { |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 2633 | standard_headers.insert(format_ident!("cstddef")); |
Devin Jeanpierre | 231ef8d | 2021-10-27 10:50:44 +0000 | [diff] [blame] | 2634 | }; |
Googler | 5ea8864 | 2021-09-29 08:05:59 +0000 | [diff] [blame] | 2635 | |
Lukasz Anforowicz | dd90770 | 2022-05-06 09:24:07 -0700 | [diff] [blame] | 2636 | let mut includes = vec!["cxx20_backports.h", "offsetof.h"] |
| 2637 | .into_iter() |
| 2638 | .map(|hdr| format!("{}/{}", crubit_support_path, hdr)) |
| 2639 | .collect_vec(); |
Lukasz Anforowicz | 4457baf | 2021-12-23 17:24:04 +0000 | [diff] [blame] | 2640 | |
Michael Forster | bee8448 | 2021-10-13 08:35:38 +0000 | [diff] [blame] | 2641 | // In order to generate C++ thunk in all the cases Clang needs to be able to |
| 2642 | // access declarations from public headers of the C++ library. |
Lukasz Anforowicz | dd90770 | 2022-05-06 09:24:07 -0700 | [diff] [blame] | 2643 | includes.extend(ir.used_headers().map(|hdr| hdr.name.clone())); |
Marcel Hlopko | 3164eee | 2021-08-24 20:09:22 +0000 | [diff] [blame] | 2644 | |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2645 | Ok(quote! { |
Googler | 5ea8864 | 2021-09-29 08:05:59 +0000 | [diff] [blame] | 2646 | #( __HASH_TOKEN__ include <#standard_headers> __NEWLINE__)* |
Devin Jeanpierre | 7c74f84 | 2022-02-03 07:08:06 +0000 | [diff] [blame] | 2647 | __NEWLINE__ |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 2648 | #( __HASH_TOKEN__ include #includes __NEWLINE__)* __NEWLINE__ |
Marcel Hlopko | b8069ae | 2022-02-19 09:31:00 +0000 | [diff] [blame] | 2649 | __HASH_TOKEN__ pragma clang diagnostic push __NEWLINE__ |
| 2650 | // Disable Clang thread-safety-analysis warnings that would otherwise |
| 2651 | // complain about thunks that call mutex locking functions in an unpaired way. |
| 2652 | __HASH_TOKEN__ pragma clang diagnostic ignored "-Wthread-safety-analysis" __NEWLINE__ |
Marcel Hlopko | 3164eee | 2021-08-24 20:09:22 +0000 | [diff] [blame] | 2653 | |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 2654 | #( #thunks )* __NEWLINE__ __NEWLINE__ |
Googler | 5ea8864 | 2021-09-29 08:05:59 +0000 | [diff] [blame] | 2655 | |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 2656 | #( #layout_assertions __NEWLINE__ __NEWLINE__ )* |
Marcel Hlopko | c6b726c | 2021-10-07 06:53:09 +0000 | [diff] [blame] | 2657 | |
Marcel Hlopko | b8069ae | 2022-02-19 09:31:00 +0000 | [diff] [blame] | 2658 | __NEWLINE__ |
| 2659 | __HASH_TOKEN__ pragma clang diagnostic pop __NEWLINE__ |
Marcel Hlopko | c6b726c | 2021-10-07 06:53:09 +0000 | [diff] [blame] | 2660 | // To satisfy http://cs/symbol:devtools.metadata.Presubmit.CheckTerminatingNewline check. |
| 2661 | __NEWLINE__ |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2662 | }) |
Marcel Hlopko | 3164eee | 2021-08-24 20:09:22 +0000 | [diff] [blame] | 2663 | } |
| 2664 | |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 2665 | #[cfg(test)] |
| 2666 | mod tests { |
Devin Jeanpierre | 45cb116 | 2021-10-27 10:54:28 +0000 | [diff] [blame] | 2667 | use super::*; |
Michael Forster | ed64202 | 2021-10-04 09:48:25 +0000 | [diff] [blame] | 2668 | use anyhow::anyhow; |
Lukasz Anforowicz | edabf00 | 2022-04-28 06:45:09 -0700 | [diff] [blame] | 2669 | use ir_testing::{ |
| 2670 | ir_from_cc, ir_from_cc_dependency, ir_record, make_ir_from_items, retrieve_func, |
| 2671 | }; |
Lukasz Anforowicz | 282bfd7 | 2022-03-22 22:38:17 +0000 | [diff] [blame] | 2672 | use static_assertions::{assert_impl_all, assert_not_impl_all}; |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2673 | use token_stream_matchers::{ |
Lukasz Anforowicz | 71e9b59 | 2022-03-04 19:03:02 +0000 | [diff] [blame] | 2674 | assert_cc_matches, assert_cc_not_matches, assert_ir_matches, assert_rs_matches, |
| 2675 | assert_rs_not_matches, |
Devin Jeanpierre | 7e9a1de | 2021-12-03 08:04:22 +0000 | [diff] [blame] | 2676 | }; |
Lukasz Anforowicz | 54ff318 | 2022-05-06 07:17:58 -0700 | [diff] [blame] | 2677 | use token_stream_printer::{rs_tokens_to_formatted_string_for_tests, tokens_to_string}; |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 2678 | |
Lukasz Anforowicz | dd90770 | 2022-05-06 09:24:07 -0700 | [diff] [blame] | 2679 | fn generate_bindings_tokens(ir: &IR) -> Result<BindingsTokens> { |
| 2680 | super::generate_bindings_tokens(ir, "crubit/rs_bindings_support") |
| 2681 | } |
| 2682 | |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 2683 | #[test] |
Marcel Hlopko | b8069ae | 2022-02-19 09:31:00 +0000 | [diff] [blame] | 2684 | fn test_disable_thread_safety_warnings() -> Result<()> { |
| 2685 | let ir = ir_from_cc("inline void foo() {}")?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 2686 | let rs_api_impl = generate_bindings_tokens(&ir)?.rs_api_impl; |
Marcel Hlopko | b8069ae | 2022-02-19 09:31:00 +0000 | [diff] [blame] | 2687 | assert_cc_matches!( |
| 2688 | rs_api_impl, |
| 2689 | quote! { |
| 2690 | ... |
| 2691 | __HASH_TOKEN__ pragma clang diagnostic push |
| 2692 | __HASH_TOKEN__ pragma clang diagnostic ignored "-Wthread-safety-analysis" |
| 2693 | ... |
| 2694 | |
| 2695 | __HASH_TOKEN__ pragma clang diagnostic pop |
| 2696 | ... |
| 2697 | } |
| 2698 | ); |
| 2699 | Ok(()) |
| 2700 | } |
| 2701 | |
| 2702 | #[test] |
Marcel Hlopko | 3b9bf9e | 2021-11-29 08:25:14 +0000 | [diff] [blame] | 2703 | // TODO(hlopko): Move this test to a more principled place where it can access |
| 2704 | // `ir_testing`. |
| 2705 | fn test_duplicate_decl_ids_err() { |
| 2706 | let mut r1 = ir_record("R1"); |
Lukasz Anforowicz | 14732b2 | 2022-06-02 09:11:08 -0700 | [diff] [blame] | 2707 | r1.id = ItemId::new_for_testing(42); |
Marcel Hlopko | 3b9bf9e | 2021-11-29 08:25:14 +0000 | [diff] [blame] | 2708 | let mut r2 = ir_record("R2"); |
Lukasz Anforowicz | 14732b2 | 2022-06-02 09:11:08 -0700 | [diff] [blame] | 2709 | r2.id = ItemId::new_for_testing(42); |
Marcel Hlopko | 3b9bf9e | 2021-11-29 08:25:14 +0000 | [diff] [blame] | 2710 | let result = make_ir_from_items([r1.into(), r2.into()]); |
| 2711 | assert!(result.is_err()); |
| 2712 | assert!(result.unwrap_err().to_string().contains("Duplicate decl_id found in")); |
| 2713 | } |
| 2714 | |
| 2715 | #[test] |
Marcel Hlopko | 45fba97 | 2021-08-23 19:52:20 +0000 | [diff] [blame] | 2716 | fn test_simple_function() -> Result<()> { |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2717 | let ir = ir_from_cc("int Add(int a, int b);")?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 2718 | let BindingsTokens { rs_api, rs_api_impl } = generate_bindings_tokens(&ir)?; |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2719 | assert_rs_matches!( |
| 2720 | rs_api, |
| 2721 | quote! { |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 2722 | #[inline(always)] |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2723 | pub fn Add(a: i32, b: i32) -> i32 { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 2724 | unsafe { crate::detail::__rust_thunk___Z3Addii(a, b) } |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2725 | } |
| 2726 | } |
| 2727 | ); |
| 2728 | assert_rs_matches!( |
| 2729 | rs_api, |
| 2730 | quote! { |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 2731 | mod detail { |
Googler | 5564714 | 2022-01-11 12:37:39 +0000 | [diff] [blame] | 2732 | #[allow(unused_imports)] |
Devin Jeanpierre | d4dde0e | 2021-10-13 20:48:25 +0000 | [diff] [blame] | 2733 | use super::*; |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 2734 | extern "C" { |
| 2735 | #[link_name = "_Z3Addii"] |
Googler | a675ae0 | 2021-12-07 08:04:59 +0000 | [diff] [blame] | 2736 | pub(crate) fn __rust_thunk___Z3Addii(a: i32, b: i32) -> i32; |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2737 | } |
| 2738 | } |
| 2739 | } |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 2740 | ); |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 2741 | |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 2742 | assert_cc_not_matches!(rs_api_impl, quote! {__rust_thunk___Z3Addii}); |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 2743 | |
Marcel Hlopko | 3164eee | 2021-08-24 20:09:22 +0000 | [diff] [blame] | 2744 | Ok(()) |
| 2745 | } |
| 2746 | |
| 2747 | #[test] |
| 2748 | fn test_inline_function() -> Result<()> { |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2749 | let ir = ir_from_cc("inline int Add(int a, int b);")?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 2750 | let BindingsTokens { rs_api, rs_api_impl } = generate_bindings_tokens(&ir)?; |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2751 | assert_rs_matches!( |
| 2752 | rs_api, |
| 2753 | quote! { |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 2754 | #[inline(always)] |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2755 | pub fn Add(a: i32, b: i32) -> i32 { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 2756 | unsafe { crate::detail::__rust_thunk___Z3Addii(a, b) } |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2757 | } |
| 2758 | } |
| 2759 | ); |
| 2760 | assert_rs_matches!( |
| 2761 | rs_api, |
| 2762 | quote! { |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 2763 | mod detail { |
Googler | 5564714 | 2022-01-11 12:37:39 +0000 | [diff] [blame] | 2764 | #[allow(unused_imports)] |
Devin Jeanpierre | d4dde0e | 2021-10-13 20:48:25 +0000 | [diff] [blame] | 2765 | use super::*; |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 2766 | extern "C" { |
Googler | a675ae0 | 2021-12-07 08:04:59 +0000 | [diff] [blame] | 2767 | pub(crate) fn __rust_thunk___Z3Addii(a: i32, b: i32) -> i32; |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2768 | } |
| 2769 | } |
| 2770 | } |
Marcel Hlopko | 3164eee | 2021-08-24 20:09:22 +0000 | [diff] [blame] | 2771 | ); |
| 2772 | |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2773 | assert_cc_matches!( |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 2774 | rs_api_impl, |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2775 | quote! { |
Googler | a675ae0 | 2021-12-07 08:04:59 +0000 | [diff] [blame] | 2776 | extern "C" int __rust_thunk___Z3Addii(int a, int b) { |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 2777 | return Add(std::forward<decltype(a)>(a), std::forward<decltype(b)>(b)); |
Marcel Hlopko | 3164eee | 2021-08-24 20:09:22 +0000 | [diff] [blame] | 2778 | } |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2779 | } |
Marcel Hlopko | 3164eee | 2021-08-24 20:09:22 +0000 | [diff] [blame] | 2780 | ); |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 2781 | Ok(()) |
| 2782 | } |
Marcel Hlopko | b4b2874 | 2021-09-15 12:45:20 +0000 | [diff] [blame] | 2783 | |
| 2784 | #[test] |
Marcel Hlopko | a0f3866 | 2021-12-03 08:45:26 +0000 | [diff] [blame] | 2785 | fn test_simple_function_with_types_from_other_target() -> Result<()> { |
| 2786 | let ir = ir_from_cc_dependency( |
| 2787 | "inline ReturnStruct DoSomething(ParamStruct param);", |
| 2788 | "struct ReturnStruct {}; struct ParamStruct {};", |
| 2789 | )?; |
| 2790 | |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 2791 | let BindingsTokens { rs_api, rs_api_impl } = generate_bindings_tokens(&ir)?; |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2792 | assert_rs_matches!( |
| 2793 | rs_api, |
| 2794 | quote! { |
Marcel Hlopko | a0f3866 | 2021-12-03 08:45:26 +0000 | [diff] [blame] | 2795 | #[inline(always)] |
| 2796 | pub fn DoSomething(param: dependency::ParamStruct) |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2797 | -> dependency::ReturnStruct { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 2798 | unsafe { crate::detail::__rust_thunk___Z11DoSomething11ParamStruct(param) } |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2799 | } |
| 2800 | } |
| 2801 | ); |
| 2802 | assert_rs_matches!( |
| 2803 | rs_api, |
| 2804 | quote! { |
| 2805 | mod detail { |
Googler | 5564714 | 2022-01-11 12:37:39 +0000 | [diff] [blame] | 2806 | #[allow(unused_imports)] |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2807 | use super::*; |
| 2808 | extern "C" { |
| 2809 | pub(crate) fn __rust_thunk___Z11DoSomething11ParamStruct(param: dependency::ParamStruct) |
| 2810 | -> dependency::ReturnStruct; |
| 2811 | } |
| 2812 | }} |
Marcel Hlopko | a0f3866 | 2021-12-03 08:45:26 +0000 | [diff] [blame] | 2813 | ); |
| 2814 | |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2815 | assert_cc_matches!( |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 2816 | rs_api_impl, |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2817 | quote! { |
Googler | 972d358 | 2022-01-11 10:17:22 +0000 | [diff] [blame] | 2818 | extern "C" class ReturnStruct __rust_thunk___Z11DoSomething11ParamStruct(class ParamStruct param) { |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 2819 | return DoSomething(std::forward<decltype(param)>(param)); |
Marcel Hlopko | a0f3866 | 2021-12-03 08:45:26 +0000 | [diff] [blame] | 2820 | } |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2821 | } |
Marcel Hlopko | a0f3866 | 2021-12-03 08:45:26 +0000 | [diff] [blame] | 2822 | ); |
| 2823 | Ok(()) |
| 2824 | } |
| 2825 | |
| 2826 | #[test] |
Lukasz Anforowicz | b1ff2e5 | 2022-05-16 10:54:23 -0700 | [diff] [blame] | 2827 | fn test_template_in_dependency_and_alias_in_current_target() -> Result<()> { |
| 2828 | // See also the test with the same name in `ir_from_cc_test.rs`. |
| 2829 | let ir = { |
| 2830 | let dependency_src = r#" #pragma clang lifetime_elision |
| 2831 | template <typename T> |
| 2832 | struct MyTemplate { |
| 2833 | T GetValue() { return field; } |
| 2834 | T field; |
| 2835 | }; "#; |
| 2836 | let current_target_src = r#" #pragma clang lifetime_elision |
| 2837 | using MyAliasOfTemplate = MyTemplate<int>; "#; |
| 2838 | ir_from_cc_dependency(current_target_src, dependency_src)? |
| 2839 | }; |
| 2840 | |
| 2841 | let BindingsTokens { rs_api, rs_api_impl } = generate_bindings_tokens(&ir)?; |
| 2842 | assert_rs_matches!( |
| 2843 | rs_api, |
| 2844 | quote! { |
| 2845 | #[repr(C)] |
| 2846 | pub struct __CcTemplateInst10MyTemplateIiE { |
| 2847 | pub field: i32, |
| 2848 | } |
| 2849 | } |
| 2850 | ); |
| 2851 | assert_rs_matches!( |
| 2852 | rs_api, |
| 2853 | quote! { |
| 2854 | impl __CcTemplateInst10MyTemplateIiE { |
| 2855 | #[inline(always)] |
| 2856 | pub fn GetValue<'a>(self: ... Pin<&'a mut Self>) -> i32 { unsafe { |
Lukasz Anforowicz | 8d1e432 | 2022-06-08 07:56:06 -0700 | [diff] [blame] | 2857 | crate::detail::__rust_thunk___ZN10MyTemplateIiE8GetValueEv__2f_2ftest_3atesting_5ftarget( |
Lukasz Anforowicz | b1ff2e5 | 2022-05-16 10:54:23 -0700 | [diff] [blame] | 2858 | self) |
| 2859 | }} |
| 2860 | } |
| 2861 | } |
| 2862 | ); |
| 2863 | assert_rs_matches!( |
| 2864 | rs_api, |
| 2865 | quote! { |
| 2866 | pub type MyAliasOfTemplate = crate::__CcTemplateInst10MyTemplateIiE; |
| 2867 | } |
| 2868 | ); |
| 2869 | assert_rs_matches!( |
| 2870 | rs_api, |
| 2871 | quote! { |
Lukasz Anforowicz | 8d1e432 | 2022-06-08 07:56:06 -0700 | [diff] [blame] | 2872 | mod detail { ... extern "C" { |
Lukasz Anforowicz | b1ff2e5 | 2022-05-16 10:54:23 -0700 | [diff] [blame] | 2873 | ... |
Lukasz Anforowicz | 8d1e432 | 2022-06-08 07:56:06 -0700 | [diff] [blame] | 2874 | pub(crate) fn |
| 2875 | __rust_thunk___ZN10MyTemplateIiE8GetValueEv__2f_2ftest_3atesting_5ftarget<'a>( |
| 2876 | __this: ... Pin<&'a mut crate::__CcTemplateInst10MyTemplateIiE> |
| 2877 | ) -> i32; |
| 2878 | ... |
| 2879 | } } |
Lukasz Anforowicz | b1ff2e5 | 2022-05-16 10:54:23 -0700 | [diff] [blame] | 2880 | } |
| 2881 | ); |
| 2882 | assert_cc_matches!( |
| 2883 | rs_api_impl, |
| 2884 | quote! { |
Lukasz Anforowicz | 8d1e432 | 2022-06-08 07:56:06 -0700 | [diff] [blame] | 2885 | extern "C" |
| 2886 | int __rust_thunk___ZN10MyTemplateIiE8GetValueEv__2f_2ftest_3atesting_5ftarget( |
Lukasz Anforowicz | b1ff2e5 | 2022-05-16 10:54:23 -0700 | [diff] [blame] | 2887 | class MyTemplate<int>* __this) { |
| 2888 | return __this->GetValue(); |
| 2889 | } |
| 2890 | } |
| 2891 | ); |
| 2892 | |
| 2893 | Ok(()) |
| 2894 | } |
| 2895 | |
| 2896 | #[test] |
| 2897 | fn test_template_with_out_of_line_definition() -> Result<()> { |
| 2898 | // See also an end-to-end test in the `test/templates/out_of_line_definition` |
| 2899 | // directory. |
| 2900 | let ir = ir_from_cc( |
| 2901 | r#" #pragma clang lifetime_elision |
| 2902 | template <typename T> |
| 2903 | class MyTemplate final { |
| 2904 | public: |
| 2905 | static MyTemplate Create(T value); |
| 2906 | const T& value() const; |
| 2907 | |
| 2908 | private: |
| 2909 | T value_; |
| 2910 | }; |
| 2911 | |
| 2912 | using MyTypeAlias = MyTemplate<int>; "#, |
| 2913 | )?; |
| 2914 | |
| 2915 | let BindingsTokens { rs_api_impl, .. } = generate_bindings_tokens(&ir)?; |
| 2916 | |
| 2917 | // Even though the member functions above are *not* defined inline (e.g. |
| 2918 | // IR::Func::is_inline is false), they still need to have thunks generated for |
| 2919 | // them (to force/guarantee that the class template and its members get |
| 2920 | // instantiated). This is also covered in the following end-to-end |
| 2921 | // tests: |
| 2922 | // - test/templates/out_of_line_definition/ - without a thunk, the template |
| 2923 | // won't be instantiated and Rust bindings won't be able to call the member |
| 2924 | // function (there will be no instantiation of the member function in the C++ |
| 2925 | // object files) |
| 2926 | // - test/templates/definition_in_cc/ - the instantiation happens in the .cc |
| 2927 | // file and therefore the thunk is not *required* (but it doesn't hurt to have |
| 2928 | // the thunk) |
| 2929 | assert_cc_matches!( |
| 2930 | rs_api_impl, |
| 2931 | quote! { |
| 2932 | extern "C" class MyTemplate<int> |
Lukasz Anforowicz | 8d1e432 | 2022-06-08 07:56:06 -0700 | [diff] [blame] | 2933 | __rust_thunk___ZN10MyTemplateIiE6CreateEi__2f_2ftest_3atesting_5ftarget( |
| 2934 | int value) { |
Lukasz Anforowicz | b1ff2e5 | 2022-05-16 10:54:23 -0700 | [diff] [blame] | 2935 | return MyTemplate<int>::Create(std::forward<decltype(value)>(value)); |
| 2936 | } |
| 2937 | } |
| 2938 | ); |
| 2939 | assert_cc_matches!( |
| 2940 | rs_api_impl, |
| 2941 | quote! { |
| 2942 | extern "C" int const& |
Lukasz Anforowicz | 8d1e432 | 2022-06-08 07:56:06 -0700 | [diff] [blame] | 2943 | __rust_thunk___ZNK10MyTemplateIiE5valueEv__2f_2ftest_3atesting_5ftarget( |
Lukasz Anforowicz | b1ff2e5 | 2022-05-16 10:54:23 -0700 | [diff] [blame] | 2944 | const class MyTemplate<int>*__this) { |
| 2945 | return __this->value(); |
| 2946 | } |
| 2947 | } |
| 2948 | ); |
| 2949 | Ok(()) |
| 2950 | } |
| 2951 | |
| 2952 | #[test] |
Marcel Hlopko | b4b2874 | 2021-09-15 12:45:20 +0000 | [diff] [blame] | 2953 | fn test_simple_struct() -> Result<()> { |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2954 | let ir = ir_from_cc(&tokens_to_string(quote! { |
Devin Jeanpierre | 88343c7 | 2022-01-15 01:10:23 +0000 | [diff] [blame] | 2955 | struct SomeStruct final { |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2956 | int public_int; |
| 2957 | protected: |
| 2958 | int protected_int; |
| 2959 | private: |
| 2960 | int private_int; |
| 2961 | }; |
| 2962 | })?)?; |
Michael Forster | 028800b | 2021-10-05 12:39:59 +0000 | [diff] [blame] | 2963 | |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 2964 | let BindingsTokens { rs_api, rs_api_impl } = generate_bindings_tokens(&ir)?; |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2965 | assert_rs_matches!( |
| 2966 | rs_api, |
| 2967 | quote! { |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 2968 | #[derive(Clone, Copy)] |
Lukasz Anforowicz | df8fcae | 2022-06-02 14:54:43 -0700 | [diff] [blame] | 2969 | #[repr(C, align(4))] |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 2970 | pub struct SomeStruct { |
Devin Jeanpierre | a2be2a2 | 2022-05-18 18:59:05 -0700 | [diff] [blame] | 2971 | __non_field_data: [crate::rust_std::mem::MaybeUninit<u8>; 0], |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 2972 | pub public_int: i32, |
Lukasz Anforowicz | df8fcae | 2022-06-02 14:54:43 -0700 | [diff] [blame] | 2973 | #[doc = " Reason for representing this field as a blob of bytes:\n Types of non-public C++ fields can be elided away"] |
Rosica Dejanovska | 6676ad8 | 2022-06-07 14:28:59 -0700 | [diff] [blame] | 2974 | pub(crate) protected_int: [crate::rust_std::mem::MaybeUninit<u8>; 4], |
Lukasz Anforowicz | df8fcae | 2022-06-02 14:54:43 -0700 | [diff] [blame] | 2975 | #[doc = " Reason for representing this field as a blob of bytes:\n Types of non-public C++ fields can be elided away"] |
Rosica Dejanovska | 6676ad8 | 2022-06-07 14:28:59 -0700 | [diff] [blame] | 2976 | pub(crate) private_int: [crate::rust_std::mem::MaybeUninit<u8>; 4], |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2977 | } |
| 2978 | } |
| 2979 | ); |
| 2980 | assert_rs_matches!( |
| 2981 | rs_api, |
| 2982 | quote! { |
Rosica Dejanovska | accf00b | 2022-04-01 13:28:04 -0700 | [diff] [blame] | 2983 | const _: () = assert!(rust_std::mem::size_of::<Option<&i32>>() == rust_std::mem::size_of::<&i32>()); |
Lukasz Anforowicz | dc37d6d | 2022-05-17 08:20:13 -0700 | [diff] [blame] | 2984 | const _: () = assert!(rust_std::mem::size_of::<crate::SomeStruct>() == 12); |
| 2985 | const _: () = assert!(rust_std::mem::align_of::<crate::SomeStruct>() == 4); |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 2986 | const _: () = { static_assertions::assert_impl_all!(crate::SomeStruct: Clone); }; |
| 2987 | const _: () = { static_assertions::assert_impl_all!(crate::SomeStruct: Copy); }; |
| 2988 | const _: () = { static_assertions::assert_not_impl_all!(crate::SomeStruct: Drop); }; |
Lukasz Anforowicz | 30360ba | 2022-05-23 12:15:12 -0700 | [diff] [blame] | 2989 | const _: () = assert!(memoffset_unstable_const::offset_of!(crate::SomeStruct, public_int) == 0); |
| 2990 | const _: () = assert!(memoffset_unstable_const::offset_of!(crate::SomeStruct, protected_int) == 4); |
| 2991 | const _: () = assert!(memoffset_unstable_const::offset_of!(crate::SomeStruct, private_int) == 8); |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2992 | } |
Marcel Hlopko | b4b2874 | 2021-09-15 12:45:20 +0000 | [diff] [blame] | 2993 | ); |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2994 | assert_cc_matches!( |
| 2995 | rs_api_impl, |
| 2996 | quote! { |
Googler | 972d358 | 2022-01-11 10:17:22 +0000 | [diff] [blame] | 2997 | extern "C" void __rust_thunk___ZN10SomeStructD1Ev(class SomeStruct * __this) { |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 2998 | std :: destroy_at (std::forward<decltype(__this)>(__this)) ; |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 2999 | } |
| 3000 | } |
| 3001 | ); |
| 3002 | assert_cc_matches!( |
| 3003 | rs_api_impl, |
| 3004 | quote! { |
Googler | 972d358 | 2022-01-11 10:17:22 +0000 | [diff] [blame] | 3005 | static_assert(sizeof(class SomeStruct) == 12); |
| 3006 | static_assert(alignof(class SomeStruct) == 4); |
Lukasz Anforowicz | 30360ba | 2022-05-23 12:15:12 -0700 | [diff] [blame] | 3007 | static_assert(CRUBIT_OFFSET_OF(public_int, class SomeStruct) == 0); |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 3008 | } |
Googler | 5ea8864 | 2021-09-29 08:05:59 +0000 | [diff] [blame] | 3009 | ); |
Marcel Hlopko | b4b2874 | 2021-09-15 12:45:20 +0000 | [diff] [blame] | 3010 | Ok(()) |
| 3011 | } |
Devin Jeanpierre | 7a7328e | 2021-09-17 07:10:08 +0000 | [diff] [blame] | 3012 | |
Devin Jeanpierre | 2ed14ec | 2021-10-06 11:32:19 +0000 | [diff] [blame] | 3013 | #[test] |
Lukasz Anforowicz | 275fa92 | 2022-01-05 16:13:20 +0000 | [diff] [blame] | 3014 | fn test_ref_to_struct_in_thunk_impls() -> Result<()> { |
Googler | 972d358 | 2022-01-11 10:17:22 +0000 | [diff] [blame] | 3015 | let ir = ir_from_cc("struct S{}; inline void foo(class S& s) {} ")?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3016 | let rs_api_impl = generate_bindings_tokens(&ir)?.rs_api_impl; |
Lukasz Anforowicz | 275fa92 | 2022-01-05 16:13:20 +0000 | [diff] [blame] | 3017 | assert_cc_matches!( |
| 3018 | rs_api_impl, |
| 3019 | quote! { |
Googler | 972d358 | 2022-01-11 10:17:22 +0000 | [diff] [blame] | 3020 | extern "C" void __rust_thunk___Z3fooR1S(class S& s) { |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 3021 | foo(std::forward<decltype(s)>(s)); |
Lukasz Anforowicz | 275fa92 | 2022-01-05 16:13:20 +0000 | [diff] [blame] | 3022 | } |
| 3023 | } |
| 3024 | ); |
| 3025 | Ok(()) |
| 3026 | } |
| 3027 | |
| 3028 | #[test] |
| 3029 | fn test_const_ref_to_struct_in_thunk_impls() -> Result<()> { |
Googler | 972d358 | 2022-01-11 10:17:22 +0000 | [diff] [blame] | 3030 | let ir = ir_from_cc("struct S{}; inline void foo(const class S& s) {} ")?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3031 | let rs_api_impl = generate_bindings_tokens(&ir)?.rs_api_impl; |
Lukasz Anforowicz | 275fa92 | 2022-01-05 16:13:20 +0000 | [diff] [blame] | 3032 | assert_cc_matches!( |
| 3033 | rs_api_impl, |
| 3034 | quote! { |
Googler | 972d358 | 2022-01-11 10:17:22 +0000 | [diff] [blame] | 3035 | extern "C" void __rust_thunk___Z3fooRK1S(const class S& s) { |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 3036 | foo(std::forward<decltype(s)>(s)); |
Lukasz Anforowicz | 275fa92 | 2022-01-05 16:13:20 +0000 | [diff] [blame] | 3037 | } |
| 3038 | } |
| 3039 | ); |
| 3040 | Ok(()) |
| 3041 | } |
| 3042 | |
| 3043 | #[test] |
Lukasz Anforowicz | 957cbf2 | 2022-01-05 16:14:05 +0000 | [diff] [blame] | 3044 | fn test_unsigned_int_in_thunk_impls() -> Result<()> { |
| 3045 | let ir = ir_from_cc("inline void foo(unsigned int i) {} ")?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3046 | let rs_api_impl = generate_bindings_tokens(&ir)?.rs_api_impl; |
Lukasz Anforowicz | 957cbf2 | 2022-01-05 16:14:05 +0000 | [diff] [blame] | 3047 | assert_cc_matches!( |
| 3048 | rs_api_impl, |
| 3049 | quote! { |
| 3050 | extern "C" void __rust_thunk___Z3fooj(unsigned int i) { |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 3051 | foo(std::forward<decltype(i)>(i)); |
Lukasz Anforowicz | 957cbf2 | 2022-01-05 16:14:05 +0000 | [diff] [blame] | 3052 | } |
| 3053 | } |
| 3054 | ); |
| 3055 | Ok(()) |
| 3056 | } |
| 3057 | |
| 3058 | #[test] |
Marcel Hlopko | dd1fcb1 | 2021-12-22 14:13:59 +0000 | [diff] [blame] | 3059 | fn test_record_static_methods_qualify_call_in_thunk() -> Result<()> { |
| 3060 | let ir = ir_from_cc(&tokens_to_string(quote! { |
| 3061 | struct SomeStruct { |
| 3062 | static inline int some_func() { return 42; } |
| 3063 | }; |
| 3064 | })?)?; |
| 3065 | |
| 3066 | assert_cc_matches!( |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3067 | generate_bindings_tokens(&ir)?.rs_api_impl, |
Marcel Hlopko | dd1fcb1 | 2021-12-22 14:13:59 +0000 | [diff] [blame] | 3068 | quote! { |
| 3069 | extern "C" int __rust_thunk___ZN10SomeStruct9some_funcEv() { |
| 3070 | return SomeStruct::some_func(); |
| 3071 | } |
| 3072 | } |
| 3073 | ); |
| 3074 | Ok(()) |
| 3075 | } |
| 3076 | |
| 3077 | #[test] |
Lukasz Anforowicz | b3d89aa | 2022-01-12 14:35:52 +0000 | [diff] [blame] | 3078 | fn test_record_instance_methods_deref_this_in_thunk() -> Result<()> { |
| 3079 | let ir = ir_from_cc(&tokens_to_string(quote! { |
| 3080 | struct SomeStruct { |
| 3081 | inline int some_func(int arg) const { return 42 + arg; } |
| 3082 | }; |
| 3083 | })?)?; |
| 3084 | |
| 3085 | assert_cc_matches!( |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3086 | generate_bindings_tokens(&ir)?.rs_api_impl, |
Lukasz Anforowicz | b3d89aa | 2022-01-12 14:35:52 +0000 | [diff] [blame] | 3087 | quote! { |
| 3088 | extern "C" int __rust_thunk___ZNK10SomeStruct9some_funcEi( |
| 3089 | const class SomeStruct* __this, int arg) { |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 3090 | return __this->some_func(std::forward<decltype(arg)>(arg)); |
Lukasz Anforowicz | b3d89aa | 2022-01-12 14:35:52 +0000 | [diff] [blame] | 3091 | } |
| 3092 | } |
| 3093 | ); |
| 3094 | Ok(()) |
| 3095 | } |
| 3096 | |
| 3097 | #[test] |
Lukasz Anforowicz | fea0db9 | 2022-05-17 17:28:04 -0700 | [diff] [blame] | 3098 | fn test_record_with_unsupported_field_type() -> Result<()> { |
| 3099 | // Using a nested struct because it's currently not supported. |
| 3100 | // But... any other unsupported type would also work for this test. |
| 3101 | let ir = ir_from_cc( |
| 3102 | r#" |
| 3103 | struct StructWithUnsupportedField { |
| 3104 | struct NestedStruct { |
| 3105 | int nested_field; |
| 3106 | }; |
| 3107 | |
| 3108 | // Doc comment for `my_field`. |
| 3109 | NestedStruct my_field; |
| 3110 | }; |
| 3111 | "#, |
| 3112 | )?; |
| 3113 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
| 3114 | assert_rs_matches!( |
| 3115 | rs_api, |
| 3116 | quote! { |
| 3117 | #[repr(C, align(4))] |
| 3118 | pub struct StructWithUnsupportedField { |
| 3119 | #[doc = " Doc comment for `my_field`.\n \n Reason for representing this field as a blob of bytes:\n Unsupported type 'struct StructWithUnsupportedField::NestedStruct': No generated bindings found for 'NestedStruct'"] |
Rosica Dejanovska | 6676ad8 | 2022-06-07 14:28:59 -0700 | [diff] [blame] | 3120 | pub(crate) my_field: [crate::rust_std::mem::MaybeUninit<u8>; 4], |
Lukasz Anforowicz | fea0db9 | 2022-05-17 17:28:04 -0700 | [diff] [blame] | 3121 | } |
| 3122 | ... |
| 3123 | const _: () = assert!( |
| 3124 | memoffset_unstable_const::offset_of!( |
Lukasz Anforowicz | 30360ba | 2022-05-23 12:15:12 -0700 | [diff] [blame] | 3125 | crate::StructWithUnsupportedField, my_field) == 0); |
Lukasz Anforowicz | fea0db9 | 2022-05-17 17:28:04 -0700 | [diff] [blame] | 3126 | } |
| 3127 | ); |
| 3128 | Ok(()) |
| 3129 | } |
| 3130 | |
| 3131 | #[test] |
Lukasz Anforowicz | e200e8a | 2022-05-18 12:36:33 -0700 | [diff] [blame] | 3132 | fn test_struct_with_unnamed_bitfield_member() -> Result<()> { |
| 3133 | // This test input causes `field_decl->getName()` to return an empty string. |
| 3134 | // This example is based on `struct timex` from |
| 3135 | // /usr/grte/v5/include/bits/timex.h |
| 3136 | let ir = ir_from_cc( |
| 3137 | r#" |
| 3138 | struct SomeStruct { |
| 3139 | int first_field; |
| 3140 | int :32; |
| 3141 | int last_field; |
| 3142 | }; "#, |
| 3143 | )?; |
| 3144 | let BindingsTokens { rs_api, .. } = generate_bindings_tokens(&ir)?; |
| 3145 | assert_rs_matches!( |
| 3146 | rs_api, |
| 3147 | quote! { |
| 3148 | #[repr(C)] |
| 3149 | pub struct SomeStruct { |
Michael Forster | 82c02d3 | 2022-05-20 21:47:33 -0700 | [diff] [blame] | 3150 | pub first_field: i32, ... |
| 3151 | __bitfields1: [crate::rust_std::mem::MaybeUninit<u8>; 4], |
Lukasz Anforowicz | e200e8a | 2022-05-18 12:36:33 -0700 | [diff] [blame] | 3152 | pub last_field: i32, |
| 3153 | } |
| 3154 | ... |
| 3155 | const _: () = assert!(memoffset_unstable_const::offset_of!( |
Lukasz Anforowicz | 30360ba | 2022-05-23 12:15:12 -0700 | [diff] [blame] | 3156 | crate::SomeStruct, first_field) == 0); |
Lukasz Anforowicz | e200e8a | 2022-05-18 12:36:33 -0700 | [diff] [blame] | 3157 | const _: () = assert!(memoffset_unstable_const::offset_of!( |
Lukasz Anforowicz | 30360ba | 2022-05-23 12:15:12 -0700 | [diff] [blame] | 3158 | crate::SomeStruct, last_field) == 8); |
Lukasz Anforowicz | e200e8a | 2022-05-18 12:36:33 -0700 | [diff] [blame] | 3159 | } |
| 3160 | ); |
| 3161 | Ok(()) |
| 3162 | } |
| 3163 | |
| 3164 | #[test] |
| 3165 | fn test_struct_with_unnamed_struct_and_union_members() -> Result<()> { |
| 3166 | // This test input causes `field_decl->getName()` to return an empty string. |
| 3167 | // See also: |
| 3168 | // - https://en.cppreference.com/w/c/language/struct: "[...] an unnamed member |
| 3169 | // of a struct whose type is a struct without name is known as anonymous |
| 3170 | // struct." |
| 3171 | // - https://rust-lang.github.io/rfcs/2102-unnamed-fields.html |
| 3172 | let ir = ir_from_cc( |
| 3173 | r#" |
| 3174 | struct StructWithUnnamedMembers { |
| 3175 | int first_field; |
| 3176 | |
| 3177 | struct { |
| 3178 | int anonymous_struct_field_1; |
| 3179 | int anonymous_struct_field_2; |
| 3180 | }; |
| 3181 | union { |
| 3182 | int anonymous_union_field_1; |
| 3183 | int anonymous_union_field_2; |
| 3184 | }; |
| 3185 | |
| 3186 | int last_field; |
| 3187 | }; "#, |
| 3188 | )?; |
| 3189 | let BindingsTokens { rs_api, .. } = generate_bindings_tokens(&ir)?; |
| 3190 | // TODO(b/200067824): Once nested structs anhd unions are supported, |
| 3191 | // `__unnamed_field1` and `__unnamed_field2` should have a real, usable |
| 3192 | // type. |
| 3193 | assert_rs_matches!( |
| 3194 | rs_api, |
| 3195 | quote! { |
| 3196 | #[repr(C, align(4))] |
| 3197 | pub struct StructWithUnnamedMembers { |
| 3198 | pub first_field: i32, |
| 3199 | #[doc=" Reason for representing this field as a blob of bytes:\n Unsupported type 'struct StructWithUnnamedMembers::(anonymous at ir_from_cc_virtual_header.h:7:15)': No generated bindings found for ''"] |
Rosica Dejanovska | 6676ad8 | 2022-06-07 14:28:59 -0700 | [diff] [blame] | 3200 | pub(crate) __unnamed_field1: [crate::rust_std::mem::MaybeUninit<u8>; 8], |
Lukasz Anforowicz | e200e8a | 2022-05-18 12:36:33 -0700 | [diff] [blame] | 3201 | #[doc=" Reason for representing this field as a blob of bytes:\n Unsupported type 'union StructWithUnnamedMembers::(anonymous at ir_from_cc_virtual_header.h:11:15)': No generated bindings found for ''"] |
Rosica Dejanovska | 6676ad8 | 2022-06-07 14:28:59 -0700 | [diff] [blame] | 3202 | pub(crate) __unnamed_field2: [crate::rust_std::mem::MaybeUninit<u8>; 4], |
Lukasz Anforowicz | e200e8a | 2022-05-18 12:36:33 -0700 | [diff] [blame] | 3203 | pub last_field: i32, |
| 3204 | } |
| 3205 | ... |
| 3206 | const _: () = assert!(memoffset_unstable_const::offset_of!( |
Lukasz Anforowicz | 30360ba | 2022-05-23 12:15:12 -0700 | [diff] [blame] | 3207 | crate::StructWithUnnamedMembers, first_field) == 0); |
Lukasz Anforowicz | e200e8a | 2022-05-18 12:36:33 -0700 | [diff] [blame] | 3208 | const _: () = assert!(memoffset_unstable_const::offset_of!( |
Lukasz Anforowicz | 30360ba | 2022-05-23 12:15:12 -0700 | [diff] [blame] | 3209 | crate::StructWithUnnamedMembers, __unnamed_field1) == 4); |
Lukasz Anforowicz | e200e8a | 2022-05-18 12:36:33 -0700 | [diff] [blame] | 3210 | const _: () = assert!(memoffset_unstable_const::offset_of!( |
Lukasz Anforowicz | 30360ba | 2022-05-23 12:15:12 -0700 | [diff] [blame] | 3211 | crate::StructWithUnnamedMembers, __unnamed_field2) == 12); |
Lukasz Anforowicz | e200e8a | 2022-05-18 12:36:33 -0700 | [diff] [blame] | 3212 | const _: () = assert!(memoffset_unstable_const::offset_of!( |
Lukasz Anforowicz | 30360ba | 2022-05-23 12:15:12 -0700 | [diff] [blame] | 3213 | crate::StructWithUnnamedMembers, last_field) == 16); |
Lukasz Anforowicz | e200e8a | 2022-05-18 12:36:33 -0700 | [diff] [blame] | 3214 | } |
| 3215 | ); |
| 3216 | Ok(()) |
| 3217 | } |
| 3218 | |
| 3219 | #[test] |
Marcel Hlopko | a0f3866 | 2021-12-03 08:45:26 +0000 | [diff] [blame] | 3220 | fn test_struct_from_other_target() -> Result<()> { |
| 3221 | let ir = ir_from_cc_dependency("// intentionally empty", "struct SomeStruct {};")?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3222 | let BindingsTokens { rs_api, rs_api_impl } = generate_bindings_tokens(&ir)?; |
| 3223 | assert_rs_not_matches!(rs_api, quote! { SomeStruct }); |
| 3224 | assert_cc_not_matches!(rs_api_impl, quote! { SomeStruct }); |
Marcel Hlopko | a0f3866 | 2021-12-03 08:45:26 +0000 | [diff] [blame] | 3225 | Ok(()) |
| 3226 | } |
| 3227 | |
| 3228 | #[test] |
Devin Jeanpierre | 2ed14ec | 2021-10-06 11:32:19 +0000 | [diff] [blame] | 3229 | fn test_copy_derives() { |
Devin Jeanpierre | ccfefc8 | 2021-10-27 10:54:00 +0000 | [diff] [blame] | 3230 | let record = ir_record("S"); |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 3231 | assert_eq!(generate_derives(&record), &["Clone", "Copy"]); |
Devin Jeanpierre | 2ed14ec | 2021-10-06 11:32:19 +0000 | [diff] [blame] | 3232 | } |
| 3233 | |
| 3234 | #[test] |
| 3235 | fn test_copy_derives_not_is_trivial_abi() { |
Devin Jeanpierre | ccfefc8 | 2021-10-27 10:54:00 +0000 | [diff] [blame] | 3236 | let mut record = ir_record("S"); |
Devin Jeanpierre | 2ed14ec | 2021-10-06 11:32:19 +0000 | [diff] [blame] | 3237 | record.is_trivial_abi = false; |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 3238 | assert_eq!(generate_derives(&record), &[""; 0]); |
Devin Jeanpierre | 2ed14ec | 2021-10-06 11:32:19 +0000 | [diff] [blame] | 3239 | } |
| 3240 | |
Devin Jeanpierre | 88343c7 | 2022-01-15 01:10:23 +0000 | [diff] [blame] | 3241 | /// Even if it's trivially relocatable, !Unpin C++ type cannot be |
| 3242 | /// cloned/copied or otherwise used by value, because values would allow |
| 3243 | /// assignment into the Pin. |
| 3244 | /// |
| 3245 | /// All !Unpin C++ types, not just non trivially relocatable ones, are |
| 3246 | /// unsafe to assign in the Rust sense. |
Devin Jeanpierre | e6e1665 | 2021-12-22 15:54:46 +0000 | [diff] [blame] | 3247 | #[test] |
Devin Jeanpierre | 88343c7 | 2022-01-15 01:10:23 +0000 | [diff] [blame] | 3248 | fn test_copy_derives_not_final() { |
Devin Jeanpierre | e6e1665 | 2021-12-22 15:54:46 +0000 | [diff] [blame] | 3249 | let mut record = ir_record("S"); |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 3250 | record.is_inheritable = true; |
Devin Jeanpierre | 88343c7 | 2022-01-15 01:10:23 +0000 | [diff] [blame] | 3251 | assert_eq!(generate_derives(&record), &[""; 0]); |
Devin Jeanpierre | e6e1665 | 2021-12-22 15:54:46 +0000 | [diff] [blame] | 3252 | } |
| 3253 | |
Devin Jeanpierre | 2ed14ec | 2021-10-06 11:32:19 +0000 | [diff] [blame] | 3254 | #[test] |
Devin Jeanpierre | 2ed14ec | 2021-10-06 11:32:19 +0000 | [diff] [blame] | 3255 | fn test_copy_derives_ctor_deleted() { |
Devin Jeanpierre | ccfefc8 | 2021-10-27 10:54:00 +0000 | [diff] [blame] | 3256 | let mut record = ir_record("S"); |
Lukasz Anforowicz | ff7df4a | 2022-06-02 14:27:45 -0700 | [diff] [blame] | 3257 | record.copy_constructor = ir::SpecialMemberFunc::Unavailable; |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 3258 | assert_eq!(generate_derives(&record), &[""; 0]); |
Devin Jeanpierre | 2ed14ec | 2021-10-06 11:32:19 +0000 | [diff] [blame] | 3259 | } |
| 3260 | |
| 3261 | #[test] |
Devin Jeanpierre | be2f33b | 2021-10-21 12:54:19 +0000 | [diff] [blame] | 3262 | fn test_copy_derives_ctor_nontrivial_members() { |
Devin Jeanpierre | ccfefc8 | 2021-10-27 10:54:00 +0000 | [diff] [blame] | 3263 | let mut record = ir_record("S"); |
Lukasz Anforowicz | ff7df4a | 2022-06-02 14:27:45 -0700 | [diff] [blame] | 3264 | record.copy_constructor = ir::SpecialMemberFunc::NontrivialMembers; |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 3265 | assert_eq!(generate_derives(&record), &[""; 0]); |
Devin Jeanpierre | be2f33b | 2021-10-21 12:54:19 +0000 | [diff] [blame] | 3266 | } |
| 3267 | |
| 3268 | #[test] |
| 3269 | fn test_copy_derives_ctor_nontrivial_self() { |
Devin Jeanpierre | ccfefc8 | 2021-10-27 10:54:00 +0000 | [diff] [blame] | 3270 | let mut record = ir_record("S"); |
Lukasz Anforowicz | ff7df4a | 2022-06-02 14:27:45 -0700 | [diff] [blame] | 3271 | record.copy_constructor = ir::SpecialMemberFunc::NontrivialUserDefined; |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 3272 | assert_eq!(generate_derives(&record), &[""; 0]); |
Devin Jeanpierre | 2ed14ec | 2021-10-06 11:32:19 +0000 | [diff] [blame] | 3273 | } |
| 3274 | |
Devin Jeanpierre | b1e816a | 2022-04-29 20:14:22 -0700 | [diff] [blame] | 3275 | /// In Rust, a Drop type cannot be Copy. |
| 3276 | #[test] |
| 3277 | fn test_copy_derives_dtor_nontrivial_self() { |
| 3278 | let mut record = ir_record("S"); |
Lukasz Anforowicz | ff7df4a | 2022-06-02 14:27:45 -0700 | [diff] [blame] | 3279 | for definition in |
| 3280 | [ir::SpecialMemberFunc::NontrivialUserDefined, ir::SpecialMemberFunc::NontrivialMembers] |
| 3281 | { |
| 3282 | record.destructor = definition; |
Devin Jeanpierre | b1e816a | 2022-04-29 20:14:22 -0700 | [diff] [blame] | 3283 | assert_eq!(generate_derives(&record), &["Clone"]); |
| 3284 | } |
| 3285 | } |
| 3286 | |
Devin Jeanpierre | 7a7328e | 2021-09-17 07:10:08 +0000 | [diff] [blame] | 3287 | #[test] |
| 3288 | fn test_ptr_func() -> Result<()> { |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 3289 | let ir = ir_from_cc(&tokens_to_string(quote! { |
| 3290 | inline int* Deref(int*const* p); |
| 3291 | })?)?; |
Devin Jeanpierre | d6da700 | 2021-10-21 12:55:20 +0000 | [diff] [blame] | 3292 | |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3293 | let BindingsTokens { rs_api, rs_api_impl } = generate_bindings_tokens(&ir)?; |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 3294 | assert_rs_matches!( |
| 3295 | rs_api, |
| 3296 | quote! { |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 3297 | #[inline(always)] |
Lukasz Anforowicz | f7bdd39 | 2022-01-21 00:33:39 +0000 | [diff] [blame] | 3298 | pub unsafe fn Deref(p: *const *mut i32) -> *mut i32 { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 3299 | crate::detail::__rust_thunk___Z5DerefPKPi(p) |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 3300 | } |
| 3301 | } |
| 3302 | ); |
| 3303 | assert_rs_matches!( |
| 3304 | rs_api, |
| 3305 | quote! { |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 3306 | mod detail { |
Googler | 5564714 | 2022-01-11 12:37:39 +0000 | [diff] [blame] | 3307 | #[allow(unused_imports)] |
Devin Jeanpierre | d4dde0e | 2021-10-13 20:48:25 +0000 | [diff] [blame] | 3308 | use super::*; |
Michael Forster | db8101a | 2021-10-08 06:56:03 +0000 | [diff] [blame] | 3309 | extern "C" { |
Googler | a675ae0 | 2021-12-07 08:04:59 +0000 | [diff] [blame] | 3310 | pub(crate) fn __rust_thunk___Z5DerefPKPi(p: *const *mut i32) -> *mut i32; |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 3311 | } |
| 3312 | } |
| 3313 | } |
Devin Jeanpierre | 7a7328e | 2021-09-17 07:10:08 +0000 | [diff] [blame] | 3314 | ); |
Devin Jeanpierre | 184f9ac | 2021-09-17 13:47:03 +0000 | [diff] [blame] | 3315 | |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 3316 | assert_cc_matches!( |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3317 | rs_api_impl, |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 3318 | quote! { |
Googler | a675ae0 | 2021-12-07 08:04:59 +0000 | [diff] [blame] | 3319 | extern "C" int* __rust_thunk___Z5DerefPKPi(int* const * p) { |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 3320 | return Deref(std::forward<decltype(p)>(p)); |
Devin Jeanpierre | 184f9ac | 2021-09-17 13:47:03 +0000 | [diff] [blame] | 3321 | } |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 3322 | } |
Devin Jeanpierre | 184f9ac | 2021-09-17 13:47:03 +0000 | [diff] [blame] | 3323 | ); |
Devin Jeanpierre | 7a7328e | 2021-09-17 07:10:08 +0000 | [diff] [blame] | 3324 | Ok(()) |
| 3325 | } |
Michael Forster | ed64202 | 2021-10-04 09:48:25 +0000 | [diff] [blame] | 3326 | |
| 3327 | #[test] |
Googler | db11153 | 2022-01-05 06:12:13 +0000 | [diff] [blame] | 3328 | fn test_const_char_ptr_func() -> Result<()> { |
| 3329 | // This is a regression test: We used to include the "const" in the name |
| 3330 | // of the CcType, which caused a panic in the code generator |
| 3331 | // ('"const char" is not a valid Ident'). |
| 3332 | // It's therefore important that f() is inline so that we need to |
| 3333 | // generate a thunk for it (where we then process the CcType). |
| 3334 | let ir = ir_from_cc(&tokens_to_string(quote! { |
| 3335 | inline void f(const char *str); |
| 3336 | })?)?; |
| 3337 | |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3338 | let BindingsTokens { rs_api, rs_api_impl } = generate_bindings_tokens(&ir)?; |
Googler | db11153 | 2022-01-05 06:12:13 +0000 | [diff] [blame] | 3339 | assert_rs_matches!( |
| 3340 | rs_api, |
| 3341 | quote! { |
| 3342 | #[inline(always)] |
Lukasz Anforowicz | f7bdd39 | 2022-01-21 00:33:39 +0000 | [diff] [blame] | 3343 | pub unsafe fn f(str: *const i8) { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 3344 | crate::detail::__rust_thunk___Z1fPKc(str) |
Googler | db11153 | 2022-01-05 06:12:13 +0000 | [diff] [blame] | 3345 | } |
| 3346 | } |
| 3347 | ); |
| 3348 | assert_rs_matches!( |
| 3349 | rs_api, |
| 3350 | quote! { |
| 3351 | extern "C" { |
| 3352 | pub(crate) fn __rust_thunk___Z1fPKc(str: *const i8); |
| 3353 | } |
| 3354 | } |
| 3355 | ); |
| 3356 | |
| 3357 | assert_cc_matches!( |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3358 | rs_api_impl, |
Googler | db11153 | 2022-01-05 06:12:13 +0000 | [diff] [blame] | 3359 | quote! { |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 3360 | extern "C" void __rust_thunk___Z1fPKc(char const * str){ f(std::forward<decltype(str)>(str)) ; } |
Googler | db11153 | 2022-01-05 06:12:13 +0000 | [diff] [blame] | 3361 | } |
| 3362 | ); |
| 3363 | Ok(()) |
| 3364 | } |
| 3365 | |
| 3366 | #[test] |
Lukasz Anforowicz | cf230fd | 2022-02-18 19:20:39 +0000 | [diff] [blame] | 3367 | fn test_func_ptr_where_params_are_primitive_types() -> Result<()> { |
| 3368 | let ir = ir_from_cc(r#" int (*get_ptr_to_func())(float, double); "#)?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3369 | let BindingsTokens { rs_api, rs_api_impl } = generate_bindings_tokens(&ir)?; |
Lukasz Anforowicz | cf230fd | 2022-02-18 19:20:39 +0000 | [diff] [blame] | 3370 | assert_rs_matches!( |
| 3371 | rs_api, |
| 3372 | quote! { |
| 3373 | #[inline(always)] |
| 3374 | pub fn get_ptr_to_func() -> Option<extern "C" fn (f32, f64) -> i32> { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 3375 | unsafe { crate::detail::__rust_thunk___Z15get_ptr_to_funcv() } |
Lukasz Anforowicz | cf230fd | 2022-02-18 19:20:39 +0000 | [diff] [blame] | 3376 | } |
| 3377 | } |
| 3378 | ); |
| 3379 | assert_rs_matches!( |
| 3380 | rs_api, |
| 3381 | quote! { |
| 3382 | mod detail { |
| 3383 | #[allow(unused_imports)] |
| 3384 | use super::*; |
| 3385 | extern "C" { |
| 3386 | #[link_name = "_Z15get_ptr_to_funcv"] |
| 3387 | pub(crate) fn __rust_thunk___Z15get_ptr_to_funcv() |
| 3388 | -> Option<extern "C" fn(f32, f64) -> i32>; |
| 3389 | } |
| 3390 | } |
| 3391 | } |
| 3392 | ); |
| 3393 | // Verify that no C++ thunk got generated. |
| 3394 | assert_cc_not_matches!(rs_api_impl, quote! { __rust_thunk___Z15get_ptr_to_funcv }); |
| 3395 | |
| 3396 | // TODO(b/217419782): Add another test for more exotic calling conventions / |
| 3397 | // abis. |
| 3398 | |
| 3399 | // TODO(b/217419782): Add another test for pointer to a function that |
| 3400 | // takes/returns non-trivially-movable types by value. See also |
| 3401 | // <internal link> |
| 3402 | |
| 3403 | Ok(()) |
| 3404 | } |
| 3405 | |
| 3406 | #[test] |
Lukasz Anforowicz | 92c81c3 | 2022-03-04 19:03:56 +0000 | [diff] [blame] | 3407 | fn test_func_ref() -> Result<()> { |
| 3408 | let ir = ir_from_cc(r#" int (&get_ref_to_func())(float, double); "#)?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3409 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Lukasz Anforowicz | 92c81c3 | 2022-03-04 19:03:56 +0000 | [diff] [blame] | 3410 | assert_rs_matches!( |
| 3411 | rs_api, |
| 3412 | quote! { |
| 3413 | #[inline(always)] |
| 3414 | pub fn get_ref_to_func() -> extern "C" fn (f32, f64) -> i32 { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 3415 | unsafe { crate::detail::__rust_thunk___Z15get_ref_to_funcv() } |
Lukasz Anforowicz | 92c81c3 | 2022-03-04 19:03:56 +0000 | [diff] [blame] | 3416 | } |
| 3417 | } |
| 3418 | ); |
| 3419 | Ok(()) |
| 3420 | } |
| 3421 | |
| 3422 | #[test] |
Lukasz Anforowicz | cf230fd | 2022-02-18 19:20:39 +0000 | [diff] [blame] | 3423 | fn test_func_ptr_with_non_static_lifetime() -> Result<()> { |
| 3424 | let ir = ir_from_cc( |
| 3425 | r#" |
Googler | 53f6594 | 2022-02-23 11:23:30 +0000 | [diff] [blame] | 3426 | [[clang::annotate("lifetimes", "-> a")]] |
Lukasz Anforowicz | cf230fd | 2022-02-18 19:20:39 +0000 | [diff] [blame] | 3427 | int (*get_ptr_to_func())(float, double); "#, |
| 3428 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3429 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Lukasz Anforowicz | cf230fd | 2022-02-18 19:20:39 +0000 | [diff] [blame] | 3430 | assert_rs_matches!( |
| 3431 | rs_api, |
| 3432 | quote! { |
| 3433 | // Error while generating bindings for item 'get_ptr_to_func': |
| 3434 | // Return type is not supported: Function pointers with non-'static lifetimes are not supported: int (*)(float, double) |
| 3435 | } |
| 3436 | ); |
| 3437 | Ok(()) |
| 3438 | } |
| 3439 | |
| 3440 | #[test] |
| 3441 | fn test_func_ptr_where_params_are_raw_ptrs() -> Result<()> { |
| 3442 | let ir = ir_from_cc(r#" const int* (*get_ptr_to_func())(const int*); "#)?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3443 | let BindingsTokens { rs_api, rs_api_impl } = generate_bindings_tokens(&ir)?; |
Lukasz Anforowicz | cf230fd | 2022-02-18 19:20:39 +0000 | [diff] [blame] | 3444 | assert_rs_matches!( |
| 3445 | rs_api, |
| 3446 | quote! { |
| 3447 | #[inline(always)] |
| 3448 | pub fn get_ptr_to_func() -> Option<extern "C" fn (*const i32) -> *const i32> { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 3449 | unsafe { crate::detail::__rust_thunk___Z15get_ptr_to_funcv() } |
Lukasz Anforowicz | cf230fd | 2022-02-18 19:20:39 +0000 | [diff] [blame] | 3450 | } |
| 3451 | } |
| 3452 | ); |
| 3453 | assert_rs_matches!( |
| 3454 | rs_api, |
| 3455 | quote! { |
| 3456 | mod detail { |
| 3457 | #[allow(unused_imports)] |
| 3458 | use super::*; |
| 3459 | extern "C" { |
| 3460 | #[link_name = "_Z15get_ptr_to_funcv"] |
| 3461 | pub(crate) fn __rust_thunk___Z15get_ptr_to_funcv() |
| 3462 | -> Option<extern "C" fn(*const i32) -> *const i32>; |
| 3463 | } |
| 3464 | } |
| 3465 | } |
| 3466 | ); |
| 3467 | // Verify that no C++ thunk got generated. |
| 3468 | assert_cc_not_matches!(rs_api_impl, quote! { __rust_thunk___Z15get_ptr_to_funcv }); |
| 3469 | |
| 3470 | // TODO(b/217419782): Add another test where params (and the return |
| 3471 | // type) are references with lifetimes. Something like this: |
| 3472 | // #pragma clang lifetime_elision |
| 3473 | // const int& (*get_ptr_to_func())(const int&, const int&); "#)?; |
| 3474 | // 1) Need to investigate why this fails - seeing raw pointers in Rust |
| 3475 | // seems to indicate that no lifetimes are present at the `importer.cc` |
| 3476 | // level. Maybe lifetime elision doesn't support this scenario? Unclear |
Googler | 53f6594 | 2022-02-23 11:23:30 +0000 | [diff] [blame] | 3477 | // how to explicitly apply [[clang::annotate("lifetimes", "a, b -> a")]] |
Lukasz Anforowicz | cf230fd | 2022-02-18 19:20:39 +0000 | [diff] [blame] | 3478 | // to the _inner_ function. |
| 3479 | // 2) It is important to have 2 reference parameters, so see if the problem |
| 3480 | // of passing `lifetimes` by value would have been caught - see: |
| 3481 | // cl/428079010/depot/rs_bindings_from_cc/ |
| 3482 | // importer.cc?version=s6#823 |
| 3483 | |
| 3484 | // TODO(b/217419782): Decide what to do if the C++ pointer is *not* |
| 3485 | // annotated with a lifetime - emit `unsafe fn(...) -> ...` in that |
| 3486 | // case? |
| 3487 | |
| 3488 | Ok(()) |
| 3489 | } |
| 3490 | |
| 3491 | #[test] |
Lukasz Anforowicz | 71e9b59 | 2022-03-04 19:03:02 +0000 | [diff] [blame] | 3492 | fn test_func_ptr_with_custom_abi() -> Result<()> { |
| 3493 | let ir = ir_from_cc(r#" int (*get_ptr_to_func())(float, double) [[clang::vectorcall]]; "#)?; |
| 3494 | |
| 3495 | // Verify that the test input correctly represents what we intend to |
| 3496 | // test - we want [[clang::vectorcall]] to apply to the returned |
| 3497 | // function pointer, but *not* apply to the `get_ptr_to_func` function. |
Lukasz Anforowicz | 71e9b59 | 2022-03-04 19:03:02 +0000 | [diff] [blame] | 3498 | assert_ir_matches!( |
| 3499 | ir, |
| 3500 | quote! { |
| 3501 | Func(Func { |
| 3502 | name: "get_ptr_to_func", ... |
| 3503 | return_type: MappedType { |
| 3504 | rs_type: RsType { |
| 3505 | name: Some("Option"), ... |
| 3506 | type_args: [RsType { name: Some("#funcPtr vectorcall"), ... }], ... |
| 3507 | }, |
| 3508 | cc_type: CcType { |
| 3509 | name: Some("*"), ... |
| 3510 | type_args: [CcType { name: Some("#funcValue vectorcall"), ... }], ... |
| 3511 | }, |
Lukasz Anforowicz | 0b6a6ac | 2022-03-22 22:32:23 +0000 | [diff] [blame] | 3512 | }, ... |
| 3513 | has_c_calling_convention: true, ... |
Lukasz Anforowicz | 71e9b59 | 2022-03-04 19:03:02 +0000 | [diff] [blame] | 3514 | }), |
| 3515 | } |
| 3516 | ); |
| 3517 | |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3518 | let BindingsTokens { rs_api, rs_api_impl } = generate_bindings_tokens(&ir)?; |
Lukasz Anforowicz | 71e9b59 | 2022-03-04 19:03:02 +0000 | [diff] [blame] | 3519 | // Check that the custom "vectorcall" ABI gets propagated into the |
| 3520 | // return type (i.e. into `extern "vectorcall" fn`). |
Lukasz Anforowicz | 71e9b59 | 2022-03-04 19:03:02 +0000 | [diff] [blame] | 3521 | assert_rs_matches!( |
| 3522 | rs_api, |
| 3523 | quote! { |
| 3524 | #[inline(always)] |
| 3525 | pub fn get_ptr_to_func() -> Option<extern "vectorcall" fn (f32, f64) -> i32> { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 3526 | unsafe { crate::detail::__rust_thunk___Z15get_ptr_to_funcv() } |
Lukasz Anforowicz | 71e9b59 | 2022-03-04 19:03:02 +0000 | [diff] [blame] | 3527 | } |
| 3528 | } |
| 3529 | ); |
| 3530 | |
| 3531 | // The usual `extern "C"` ABI should be used for "get_ptr_to_func". |
| 3532 | assert_rs_matches!( |
| 3533 | rs_api, |
| 3534 | quote! { |
| 3535 | mod detail { |
| 3536 | #[allow(unused_imports)] |
| 3537 | use super::*; |
| 3538 | extern "C" { |
| 3539 | #[link_name = "_Z15get_ptr_to_funcv"] |
| 3540 | pub(crate) fn __rust_thunk___Z15get_ptr_to_funcv() |
| 3541 | -> Option<extern "vectorcall" fn(f32, f64) -> i32>; |
| 3542 | } |
| 3543 | } |
| 3544 | } |
| 3545 | ); |
| 3546 | |
| 3547 | // Verify that no C++ thunk got generated. |
Lukasz Anforowicz | 71e9b59 | 2022-03-04 19:03:02 +0000 | [diff] [blame] | 3548 | assert_cc_not_matches!(rs_api_impl, quote! { __rust_thunk___Z15get_ptr_to_funcv }); |
| 3549 | Ok(()) |
| 3550 | } |
| 3551 | |
| 3552 | #[test] |
| 3553 | fn test_func_ptr_thunk() -> Result<()> { |
| 3554 | // Using an `inline` keyword forces generation of a C++ thunk in |
| 3555 | // `rs_api_impl` (i.e. exercises `format_cc_type` and similar code). |
| 3556 | let ir = ir_from_cc( |
| 3557 | r#" |
| 3558 | int multiply(int x, int y); |
| 3559 | inline int (*inline_get_pointer_to_function())(int, int) { |
| 3560 | return multiply; |
| 3561 | } |
| 3562 | "#, |
| 3563 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3564 | let rs_api_impl = generate_bindings_tokens(&ir)?.rs_api_impl; |
Lukasz Anforowicz | 71e9b59 | 2022-03-04 19:03:02 +0000 | [diff] [blame] | 3565 | assert_cc_matches!( |
| 3566 | rs_api_impl, |
| 3567 | quote! { |
Lukasz Anforowicz | 2317154 | 2022-04-11 15:26:17 -0700 | [diff] [blame] | 3568 | extern "C" crubit::type_identity_t<int(int , int)>* |
Lukasz Anforowicz | 71e9b59 | 2022-03-04 19:03:02 +0000 | [diff] [blame] | 3569 | __rust_thunk___Z30inline_get_pointer_to_functionv() { |
| 3570 | return inline_get_pointer_to_function(); |
| 3571 | } |
| 3572 | } |
| 3573 | ); |
| 3574 | Ok(()) |
| 3575 | } |
| 3576 | |
| 3577 | #[test] |
Lukasz Anforowicz | 0b6a6ac | 2022-03-22 22:32:23 +0000 | [diff] [blame] | 3578 | fn test_func_ptr_with_custom_abi_thunk() -> Result<()> { |
| 3579 | // Using an `inline` keyword forces generation of a C++ thunk in |
| 3580 | // `rs_api_impl` (i.e. exercises `format_cc_type`, |
| 3581 | // `format_cc_call_conv_as_clang_attribute` and similar code). |
| 3582 | let ir = ir_from_cc( |
| 3583 | r#" |
| 3584 | inline int (*inline_get_ptr_to_func())(float, double) [[clang::vectorcall]]; |
| 3585 | "#, |
| 3586 | )?; |
| 3587 | |
| 3588 | // Verify that the test input correctly represents what we intend to |
| 3589 | // test - we want [[clang::vectorcall]] to apply to the returned |
| 3590 | // function pointer, but *not* apply to the `get_ptr_to_func` function. |
| 3591 | assert_ir_matches!( |
| 3592 | ir, |
| 3593 | quote! { |
| 3594 | Func(Func { |
| 3595 | name: "inline_get_ptr_to_func", ... |
| 3596 | return_type: MappedType { |
| 3597 | rs_type: RsType { |
| 3598 | name: Some("Option"), ... |
| 3599 | type_args: [RsType { name: Some("#funcPtr vectorcall"), ... }], ... |
| 3600 | }, |
| 3601 | cc_type: CcType { |
| 3602 | name: Some("*"), ... |
| 3603 | type_args: [CcType { name: Some("#funcValue vectorcall"), ... }], ... |
| 3604 | }, |
| 3605 | }, ... |
| 3606 | has_c_calling_convention: true, ... |
| 3607 | }), |
| 3608 | } |
| 3609 | ); |
| 3610 | |
| 3611 | // This test is quite similar to `test_func_ptr_thunk` - the main |
| 3612 | // difference is verification of the `__attribute__((vectorcall))` in |
| 3613 | // the expected signature of the generated thunk below. |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3614 | let rs_api_impl = generate_bindings_tokens(&ir)?.rs_api_impl; |
Lukasz Anforowicz | 0b6a6ac | 2022-03-22 22:32:23 +0000 | [diff] [blame] | 3615 | assert_cc_matches!( |
| 3616 | rs_api_impl, |
| 3617 | quote! { |
Lukasz Anforowicz | 2317154 | 2022-04-11 15:26:17 -0700 | [diff] [blame] | 3618 | extern "C" crubit::type_identity_t< |
Lukasz Anforowicz | 0b6a6ac | 2022-03-22 22:32:23 +0000 | [diff] [blame] | 3619 | int(float , double) __attribute__((vectorcall)) |
| 3620 | >* __rust_thunk___Z22inline_get_ptr_to_funcv() { |
| 3621 | return inline_get_ptr_to_func(); |
| 3622 | } |
| 3623 | } |
| 3624 | ); |
| 3625 | Ok(()) |
| 3626 | } |
| 3627 | |
| 3628 | #[test] |
Michael Forster | ed64202 | 2021-10-04 09:48:25 +0000 | [diff] [blame] | 3629 | fn test_item_order() -> Result<()> { |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 3630 | let ir = ir_from_cc( |
| 3631 | "int first_func(); |
| 3632 | struct FirstStruct {}; |
| 3633 | int second_func(); |
| 3634 | struct SecondStruct {};", |
| 3635 | )?; |
Michael Forster | ed64202 | 2021-10-04 09:48:25 +0000 | [diff] [blame] | 3636 | |
Lukasz Anforowicz | 54ff318 | 2022-05-06 07:17:58 -0700 | [diff] [blame] | 3637 | let rs_api = |
| 3638 | rs_tokens_to_formatted_string_for_tests(generate_bindings_tokens(&ir)?.rs_api)?; |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 3639 | |
Lukasz Anforowicz | dd9ae0f | 2022-02-17 15:52:53 +0000 | [diff] [blame] | 3640 | let idx = |s: &str| rs_api.find(s).ok_or_else(|| anyhow!("'{}' missing", s)); |
Michael Forster | ed64202 | 2021-10-04 09:48:25 +0000 | [diff] [blame] | 3641 | |
| 3642 | let f1 = idx("fn first_func")?; |
| 3643 | let f2 = idx("fn second_func")?; |
| 3644 | let s1 = idx("struct FirstStruct")?; |
| 3645 | let s2 = idx("struct SecondStruct")?; |
Googler | a675ae0 | 2021-12-07 08:04:59 +0000 | [diff] [blame] | 3646 | let t1 = idx("fn __rust_thunk___Z10first_funcv")?; |
| 3647 | let t2 = idx("fn __rust_thunk___Z11second_funcv")?; |
Michael Forster | ed64202 | 2021-10-04 09:48:25 +0000 | [diff] [blame] | 3648 | |
| 3649 | assert!(f1 < s1); |
| 3650 | assert!(s1 < f2); |
| 3651 | assert!(f2 < s2); |
| 3652 | assert!(s2 < t1); |
| 3653 | assert!(t1 < t2); |
| 3654 | |
| 3655 | Ok(()) |
| 3656 | } |
Michael Forster | 028800b | 2021-10-05 12:39:59 +0000 | [diff] [blame] | 3657 | |
| 3658 | #[test] |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3659 | fn test_base_class_subobject_layout() -> Result<()> { |
| 3660 | let ir = ir_from_cc( |
| 3661 | r#" |
| 3662 | // We use a class here to force `Derived::z` to live inside the tail padding of `Base`. |
| 3663 | // On the Itanium ABI, this would not happen if `Base` were a POD type. |
Devin Jeanpierre | 5677702 | 2022-02-03 01:57:15 +0000 | [diff] [blame] | 3664 | class Base {__INT64_TYPE__ x; char y;}; |
| 3665 | struct Derived final : Base {__INT16_TYPE__ z;}; |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3666 | "#, |
| 3667 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3668 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3669 | assert_rs_matches!( |
| 3670 | rs_api, |
| 3671 | quote! { |
| 3672 | #[repr(C, align(8))] |
| 3673 | pub struct Derived { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 3674 | __non_field_data: [crate::rust_std::mem::MaybeUninit<u8>; 10], |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3675 | pub z: i16, |
| 3676 | } |
| 3677 | } |
| 3678 | ); |
| 3679 | Ok(()) |
| 3680 | } |
| 3681 | |
| 3682 | /// The same as test_base_class_subobject_layout, but with multiple |
| 3683 | /// inheritance. |
| 3684 | #[test] |
| 3685 | fn test_base_class_multiple_inheritance_subobject_layout() -> Result<()> { |
| 3686 | let ir = ir_from_cc( |
| 3687 | r#" |
Devin Jeanpierre | 5677702 | 2022-02-03 01:57:15 +0000 | [diff] [blame] | 3688 | class Base1 {__INT64_TYPE__ x;}; |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3689 | class Base2 {char y;}; |
Devin Jeanpierre | 5677702 | 2022-02-03 01:57:15 +0000 | [diff] [blame] | 3690 | struct Derived final : Base1, Base2 {__INT16_TYPE__ z;}; |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3691 | "#, |
| 3692 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3693 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3694 | assert_rs_matches!( |
| 3695 | rs_api, |
| 3696 | quote! { |
| 3697 | #[repr(C, align(8))] |
| 3698 | pub struct Derived { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 3699 | __non_field_data: [crate::rust_std::mem::MaybeUninit<u8>; 10], |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3700 | pub z: i16, |
| 3701 | } |
| 3702 | } |
| 3703 | ); |
| 3704 | Ok(()) |
| 3705 | } |
| 3706 | |
| 3707 | /// The same as test_base_class_subobject_layout, but with a chain of |
| 3708 | /// inheritance. |
| 3709 | #[test] |
| 3710 | fn test_base_class_deep_inheritance_subobject_layout() -> Result<()> { |
| 3711 | let ir = ir_from_cc( |
| 3712 | r#" |
Devin Jeanpierre | 5677702 | 2022-02-03 01:57:15 +0000 | [diff] [blame] | 3713 | class Base1 {__INT64_TYPE__ x;}; |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3714 | class Base2 : Base1 {char y;}; |
Devin Jeanpierre | 5677702 | 2022-02-03 01:57:15 +0000 | [diff] [blame] | 3715 | struct Derived final : Base2 {__INT16_TYPE__ z;}; |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3716 | "#, |
| 3717 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3718 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3719 | assert_rs_matches!( |
| 3720 | rs_api, |
| 3721 | quote! { |
| 3722 | #[repr(C, align(8))] |
| 3723 | pub struct Derived { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 3724 | __non_field_data: [crate::rust_std::mem::MaybeUninit<u8>; 10], |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3725 | pub z: i16, |
| 3726 | } |
| 3727 | } |
| 3728 | ); |
| 3729 | Ok(()) |
| 3730 | } |
| 3731 | |
| 3732 | /// For derived classes with no data members, we can't use the offset of the |
| 3733 | /// first member to determine the size of the base class subobjects. |
| 3734 | #[test] |
| 3735 | fn test_base_class_subobject_fieldless_layout() -> Result<()> { |
| 3736 | let ir = ir_from_cc( |
| 3737 | r#" |
Devin Jeanpierre | 5677702 | 2022-02-03 01:57:15 +0000 | [diff] [blame] | 3738 | class Base {__INT64_TYPE__ x; char y;}; |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3739 | struct Derived final : Base {}; |
| 3740 | "#, |
| 3741 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3742 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3743 | assert_rs_matches!( |
| 3744 | rs_api, |
| 3745 | quote! { |
| 3746 | #[repr(C, align(8))] |
| 3747 | pub struct Derived { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 3748 | __non_field_data: [crate::rust_std::mem::MaybeUninit<u8>; 16], |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3749 | } |
| 3750 | } |
| 3751 | ); |
| 3752 | Ok(()) |
| 3753 | } |
| 3754 | |
| 3755 | #[test] |
| 3756 | fn test_base_class_subobject_empty_fieldless() -> Result<()> { |
| 3757 | let ir = ir_from_cc( |
| 3758 | r#" |
| 3759 | class Base {}; |
| 3760 | struct Derived final : Base {}; |
| 3761 | "#, |
| 3762 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3763 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3764 | assert_rs_matches!( |
| 3765 | rs_api, |
| 3766 | quote! { |
| 3767 | #[repr(C)] |
| 3768 | pub struct Derived { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 3769 | __non_field_data: [crate::rust_std::mem::MaybeUninit<u8>; 1], |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3770 | } |
| 3771 | } |
| 3772 | ); |
| 3773 | Ok(()) |
| 3774 | } |
| 3775 | |
| 3776 | #[test] |
| 3777 | fn test_base_class_subobject_empty() -> Result<()> { |
| 3778 | let ir = ir_from_cc( |
| 3779 | r#" |
| 3780 | class Base {}; |
Devin Jeanpierre | 1221c2a | 2022-05-05 22:36:22 -0700 | [diff] [blame] | 3781 | struct Derived final : Base { |
| 3782 | __INT16_TYPE__ x; |
| 3783 | }; |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3784 | "#, |
| 3785 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3786 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3787 | assert_rs_matches!( |
| 3788 | rs_api, |
| 3789 | quote! { |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3790 | pub struct Derived { |
Devin Jeanpierre | a2be2a2 | 2022-05-18 18:59:05 -0700 | [diff] [blame] | 3791 | // TODO(b/232984274): delete this. |
| 3792 | // Currently, our tests use C++14 instead of C++17. In C++14, `Derived` |
| 3793 | // is not an aggregate, because it has a base class. C++17 removed this |
| 3794 | // restriction, and allows aggregates to have base classes. |
| 3795 | __non_field_data: [crate::rust_std::mem::MaybeUninit<u8>; 0], |
| 3796 | pub x: i16, |
| 3797 | } |
| 3798 | } |
| 3799 | ); |
| 3800 | Ok(()) |
| 3801 | } |
| 3802 | |
| 3803 | /// Non-aggregate structs can't be directly initialized, because we add |
| 3804 | /// a zero-sized private field to the bindings. |
| 3805 | #[test] |
| 3806 | fn test_non_aggregate_struct_private_field() -> Result<()> { |
| 3807 | let ir = ir_from_cc( |
| 3808 | r#" |
| 3809 | struct NonAggregate { |
| 3810 | NonAggregate() {} |
| 3811 | |
| 3812 | __INT16_TYPE__ x = 0; |
| 3813 | }; |
| 3814 | "#, |
| 3815 | )?; |
| 3816 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
| 3817 | assert_rs_matches!( |
| 3818 | rs_api, |
| 3819 | quote! { |
| 3820 | pub struct NonAggregate { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 3821 | __non_field_data: [crate::rust_std::mem::MaybeUninit<u8>; 0], |
Devin Jeanpierre | 1221c2a | 2022-05-05 22:36:22 -0700 | [diff] [blame] | 3822 | pub x: i16, |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3823 | } |
| 3824 | } |
| 3825 | ); |
| 3826 | Ok(()) |
| 3827 | } |
| 3828 | |
Devin Jeanpierre | b69bcae | 2022-02-03 09:45:50 +0000 | [diff] [blame] | 3829 | /// When a field is [[no_unique_address]], it occupies the space up to the |
| 3830 | /// next field. |
| 3831 | #[test] |
| 3832 | fn test_no_unique_address() -> Result<()> { |
| 3833 | let ir = ir_from_cc( |
| 3834 | r#" |
| 3835 | class Field1 {__INT64_TYPE__ x;}; |
| 3836 | class Field2 {char y;}; |
| 3837 | struct Struct final { |
| 3838 | [[no_unique_address]] Field1 field1; |
| 3839 | [[no_unique_address]] Field2 field2; |
| 3840 | __INT16_TYPE__ z; |
| 3841 | }; |
| 3842 | "#, |
| 3843 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3844 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Devin Jeanpierre | b69bcae | 2022-02-03 09:45:50 +0000 | [diff] [blame] | 3845 | assert_rs_matches!( |
| 3846 | rs_api, |
| 3847 | quote! { |
| 3848 | #[derive(Clone, Copy)] |
| 3849 | #[repr(C, align(8))] |
| 3850 | pub struct Struct { |
Rosica Dejanovska | 6676ad8 | 2022-06-07 14:28:59 -0700 | [diff] [blame] | 3851 | pub(crate) field1: [crate::rust_std::mem::MaybeUninit<u8>; 8], |
| 3852 | pub(crate) field2: [crate::rust_std::mem::MaybeUninit<u8>; 2], |
Devin Jeanpierre | b69bcae | 2022-02-03 09:45:50 +0000 | [diff] [blame] | 3853 | pub z: i16, |
| 3854 | } |
Devin Jeanpierre | c0543eb | 2022-04-20 16:00:34 -0700 | [diff] [blame] | 3855 | } |
| 3856 | ); |
Devin Jeanpierre | 2745013 | 2022-04-11 13:52:01 -0700 | [diff] [blame] | 3857 | assert_rs_matches!( |
| 3858 | rs_api, |
| 3859 | quote! { |
Devin Jeanpierre | 58181ac | 2022-02-14 21:30:05 +0000 | [diff] [blame] | 3860 | impl Struct { |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 3861 | pub fn field1(&self) -> &crate::Field1 { |
| 3862 | unsafe {&* (&self.field1 as *const _ as *const crate::Field1)} |
Devin Jeanpierre | 58181ac | 2022-02-14 21:30:05 +0000 | [diff] [blame] | 3863 | } |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 3864 | pub fn field2(&self) -> &crate::Field2 { |
| 3865 | unsafe {&* (&self.field2 as *const _ as *const crate::Field2)} |
Devin Jeanpierre | 58181ac | 2022-02-14 21:30:05 +0000 | [diff] [blame] | 3866 | } |
| 3867 | } |
Devin Jeanpierre | b69bcae | 2022-02-03 09:45:50 +0000 | [diff] [blame] | 3868 | } |
| 3869 | ); |
| 3870 | Ok(()) |
| 3871 | } |
| 3872 | |
| 3873 | /// When a [[no_unique_address]] field is the last one, it occupies the rest |
| 3874 | /// of the object. |
| 3875 | #[test] |
| 3876 | fn test_no_unique_address_last_field() -> Result<()> { |
| 3877 | let ir = ir_from_cc( |
| 3878 | r#" |
| 3879 | class Field1 {__INT64_TYPE__ x;}; |
| 3880 | class Field2 {char y;}; |
| 3881 | struct Struct final { |
| 3882 | [[no_unique_address]] Field1 field1; |
| 3883 | [[no_unique_address]] Field2 field2; |
| 3884 | }; |
| 3885 | "#, |
| 3886 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3887 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Devin Jeanpierre | b69bcae | 2022-02-03 09:45:50 +0000 | [diff] [blame] | 3888 | assert_rs_matches!( |
| 3889 | rs_api, |
| 3890 | quote! { |
| 3891 | #[derive(Clone, Copy)] |
| 3892 | #[repr(C, align(8))] |
| 3893 | pub struct Struct { |
Rosica Dejanovska | 6676ad8 | 2022-06-07 14:28:59 -0700 | [diff] [blame] | 3894 | pub(crate) field1: [crate::rust_std::mem::MaybeUninit<u8>; 8], |
| 3895 | pub(crate) field2: [crate::rust_std::mem::MaybeUninit<u8>; 8], |
Devin Jeanpierre | b69bcae | 2022-02-03 09:45:50 +0000 | [diff] [blame] | 3896 | } |
| 3897 | } |
| 3898 | ); |
| 3899 | Ok(()) |
| 3900 | } |
| 3901 | |
| 3902 | #[test] |
| 3903 | fn test_no_unique_address_empty() -> Result<()> { |
| 3904 | let ir = ir_from_cc( |
| 3905 | r#" |
| 3906 | class Field {}; |
| 3907 | struct Struct final { |
| 3908 | [[no_unique_address]] Field field; |
| 3909 | int x; |
| 3910 | }; |
| 3911 | "#, |
| 3912 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3913 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Devin Jeanpierre | b69bcae | 2022-02-03 09:45:50 +0000 | [diff] [blame] | 3914 | assert_rs_matches!( |
| 3915 | rs_api, |
| 3916 | quote! { |
| 3917 | #[repr(C, align(4))] |
| 3918 | pub struct Struct { |
Rosica Dejanovska | 6676ad8 | 2022-06-07 14:28:59 -0700 | [diff] [blame] | 3919 | pub(crate) field: [crate::rust_std::mem::MaybeUninit<u8>; 0], |
Devin Jeanpierre | b69bcae | 2022-02-03 09:45:50 +0000 | [diff] [blame] | 3920 | pub x: i32, |
| 3921 | } |
| 3922 | } |
| 3923 | ); |
| 3924 | Ok(()) |
| 3925 | } |
| 3926 | |
| 3927 | #[test] |
| 3928 | fn test_base_class_subobject_empty_last_field() -> Result<()> { |
| 3929 | let ir = ir_from_cc( |
| 3930 | r#" |
| 3931 | class Field {}; |
| 3932 | struct Struct final { |
| 3933 | [[no_unique_address]] Field field; |
| 3934 | }; |
| 3935 | "#, |
| 3936 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3937 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Devin Jeanpierre | b69bcae | 2022-02-03 09:45:50 +0000 | [diff] [blame] | 3938 | assert_rs_matches!( |
| 3939 | rs_api, |
| 3940 | quote! { |
| 3941 | #[repr(C)] |
| 3942 | pub struct Struct { |
Rosica Dejanovska | 6676ad8 | 2022-06-07 14:28:59 -0700 | [diff] [blame] | 3943 | pub(crate) field: [crate::rust_std::mem::MaybeUninit<u8>; 1], |
Devin Jeanpierre | b69bcae | 2022-02-03 09:45:50 +0000 | [diff] [blame] | 3944 | } |
| 3945 | } |
| 3946 | ); |
| 3947 | Ok(()) |
| 3948 | } |
| 3949 | |
Devin Jeanpierre | c80e624 | 2022-02-03 01:56:40 +0000 | [diff] [blame] | 3950 | #[test] |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 3951 | fn test_generate_enum_basic() -> Result<()> { |
| 3952 | let ir = ir_from_cc("enum Color { kRed = 5, kBlue };")?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3953 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 3954 | assert_rs_matches!( |
| 3955 | rs_api, |
| 3956 | quote! { |
| 3957 | #[repr(transparent)] |
| 3958 | #[derive(Debug, PartialEq, Eq, Copy, Clone, Hash, PartialOrd, Ord)] |
| 3959 | pub struct Color(u32); |
| 3960 | impl Color { |
| 3961 | pub const kRed: Color = Color(5); |
| 3962 | pub const kBlue: Color = Color(6); |
| 3963 | } |
| 3964 | impl From<u32> for Color { |
| 3965 | fn from(value: u32) -> Color { |
Marcel Hlopko | 872b41a | 2022-05-10 01:49:33 -0700 | [diff] [blame] | 3966 | Color(value) |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 3967 | } |
| 3968 | } |
| 3969 | impl From<Color> for u32 { |
| 3970 | fn from(value: Color) -> u32 { |
Marcel Hlopko | 872b41a | 2022-05-10 01:49:33 -0700 | [diff] [blame] | 3971 | value.0 |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 3972 | } |
| 3973 | } |
| 3974 | } |
| 3975 | ); |
| 3976 | Ok(()) |
| 3977 | } |
| 3978 | |
| 3979 | #[test] |
| 3980 | fn test_generate_scoped_enum_basic() -> Result<()> { |
| 3981 | let ir = ir_from_cc("enum class Color { kRed = -5, kBlue };")?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 3982 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 3983 | assert_rs_matches!( |
| 3984 | rs_api, |
| 3985 | quote! { |
| 3986 | #[repr(transparent)] |
| 3987 | #[derive(Debug, PartialEq, Eq, Copy, Clone, Hash, PartialOrd, Ord)] |
| 3988 | pub struct Color(i32); |
| 3989 | impl Color { |
| 3990 | pub const kRed: Color = Color(-5); |
| 3991 | pub const kBlue: Color = Color(-4); |
| 3992 | } |
| 3993 | impl From<i32> for Color { |
| 3994 | fn from(value: i32) -> Color { |
Marcel Hlopko | 872b41a | 2022-05-10 01:49:33 -0700 | [diff] [blame] | 3995 | Color(value) |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 3996 | } |
| 3997 | } |
| 3998 | impl From<Color> for i32 { |
| 3999 | fn from(value: Color) -> i32 { |
Marcel Hlopko | 872b41a | 2022-05-10 01:49:33 -0700 | [diff] [blame] | 4000 | value.0 |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 4001 | } |
| 4002 | } |
| 4003 | } |
| 4004 | ); |
| 4005 | Ok(()) |
| 4006 | } |
| 4007 | |
| 4008 | #[test] |
| 4009 | fn test_generate_enum_with_64_bit_signed_vals() -> Result<()> { |
| 4010 | let ir = ir_from_cc( |
| 4011 | "enum Color : long { kViolet = -9223372036854775807 - 1LL, kRed = -5, kBlue, kGreen = 3, kMagenta = 9223372036854775807 };", |
| 4012 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4013 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 4014 | assert_rs_matches!( |
| 4015 | rs_api, |
| 4016 | quote! { |
| 4017 | #[repr(transparent)] |
| 4018 | #[derive(Debug, PartialEq, Eq, Copy, Clone, Hash, PartialOrd, Ord)] |
| 4019 | pub struct Color(i64); |
| 4020 | impl Color { |
| 4021 | pub const kViolet: Color = Color(-9223372036854775808); |
| 4022 | pub const kRed: Color = Color(-5); |
| 4023 | pub const kBlue: Color = Color(-4); |
| 4024 | pub const kGreen: Color = Color(3); |
| 4025 | pub const kMagenta: Color = Color(9223372036854775807); |
| 4026 | } |
| 4027 | impl From<i64> for Color { |
| 4028 | fn from(value: i64) -> Color { |
Marcel Hlopko | 872b41a | 2022-05-10 01:49:33 -0700 | [diff] [blame] | 4029 | Color(value) |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 4030 | } |
| 4031 | } |
| 4032 | impl From<Color> for i64 { |
| 4033 | fn from(value: Color) -> i64 { |
Marcel Hlopko | 872b41a | 2022-05-10 01:49:33 -0700 | [diff] [blame] | 4034 | value.0 |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 4035 | } |
| 4036 | } |
| 4037 | } |
| 4038 | ); |
| 4039 | Ok(()) |
| 4040 | } |
| 4041 | |
| 4042 | #[test] |
| 4043 | fn test_generate_enum_with_64_bit_unsigned_vals() -> Result<()> { |
| 4044 | let ir = ir_from_cc( |
| 4045 | "enum Color: unsigned long { kRed, kBlue, kLimeGreen = 18446744073709551615 };", |
| 4046 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4047 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 4048 | assert_rs_matches!( |
| 4049 | rs_api, |
| 4050 | quote! { |
| 4051 | #[repr(transparent)] |
| 4052 | #[derive(Debug, PartialEq, Eq, Copy, Clone, Hash, PartialOrd, Ord)] |
| 4053 | pub struct Color(u64); |
| 4054 | impl Color { |
| 4055 | pub const kRed: Color = Color(0); |
| 4056 | pub const kBlue: Color = Color(1); |
| 4057 | pub const kLimeGreen: Color = Color(18446744073709551615); |
| 4058 | } |
| 4059 | impl From<u64> for Color { |
| 4060 | fn from(value: u64) -> Color { |
Marcel Hlopko | 872b41a | 2022-05-10 01:49:33 -0700 | [diff] [blame] | 4061 | Color(value) |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 4062 | } |
| 4063 | } |
| 4064 | impl From<Color> for u64 { |
| 4065 | fn from(value: Color) -> u64 { |
Marcel Hlopko | 872b41a | 2022-05-10 01:49:33 -0700 | [diff] [blame] | 4066 | value.0 |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 4067 | } |
| 4068 | } |
| 4069 | } |
| 4070 | ); |
| 4071 | Ok(()) |
| 4072 | } |
| 4073 | |
| 4074 | #[test] |
| 4075 | fn test_generate_enum_with_32_bit_signed_vals() -> Result<()> { |
| 4076 | let ir = ir_from_cc( |
| 4077 | "enum Color { kViolet = -2147483647 - 1, kRed = -5, kBlue, kGreen = 3, kMagenta = 2147483647 };", |
| 4078 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4079 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 4080 | assert_rs_matches!( |
| 4081 | rs_api, |
| 4082 | quote! { |
| 4083 | #[repr(transparent)] |
| 4084 | #[derive(Debug, PartialEq, Eq, Copy, Clone, Hash, PartialOrd, Ord)] |
| 4085 | pub struct Color(i32); |
| 4086 | impl Color { |
| 4087 | pub const kViolet: Color = Color(-2147483648); |
| 4088 | pub const kRed: Color = Color(-5); |
| 4089 | pub const kBlue: Color = Color(-4); |
| 4090 | pub const kGreen: Color = Color(3); |
| 4091 | pub const kMagenta: Color = Color(2147483647); |
| 4092 | } |
| 4093 | impl From<i32> for Color { |
| 4094 | fn from(value: i32) -> Color { |
Marcel Hlopko | 872b41a | 2022-05-10 01:49:33 -0700 | [diff] [blame] | 4095 | Color(value) |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 4096 | } |
| 4097 | } |
| 4098 | impl From<Color> for i32 { |
| 4099 | fn from(value: Color) -> i32 { |
Marcel Hlopko | 872b41a | 2022-05-10 01:49:33 -0700 | [diff] [blame] | 4100 | value.0 |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 4101 | } |
| 4102 | } |
| 4103 | } |
| 4104 | ); |
| 4105 | Ok(()) |
| 4106 | } |
| 4107 | |
| 4108 | #[test] |
| 4109 | fn test_generate_enum_with_32_bit_unsigned_vals() -> Result<()> { |
| 4110 | let ir = ir_from_cc("enum Color: unsigned int { kRed, kBlue, kLimeGreen = 4294967295 };")?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4111 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 4112 | assert_rs_matches!( |
| 4113 | rs_api, |
| 4114 | quote! { |
| 4115 | #[repr(transparent)] |
| 4116 | #[derive(Debug, PartialEq, Eq, Copy, Clone, Hash, PartialOrd, Ord)] |
| 4117 | pub struct Color(u32); |
| 4118 | impl Color { |
| 4119 | pub const kRed: Color = Color(0); |
| 4120 | pub const kBlue: Color = Color(1); |
| 4121 | pub const kLimeGreen: Color = Color(4294967295); |
| 4122 | } |
| 4123 | impl From<u32> for Color { |
| 4124 | fn from(value: u32) -> Color { |
Marcel Hlopko | 872b41a | 2022-05-10 01:49:33 -0700 | [diff] [blame] | 4125 | Color(value) |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 4126 | } |
| 4127 | } |
| 4128 | impl From<Color> for u32 { |
| 4129 | fn from(value: Color) -> u32 { |
Marcel Hlopko | 872b41a | 2022-05-10 01:49:33 -0700 | [diff] [blame] | 4130 | value.0 |
Teddy Katz | 76fa42b | 2022-02-23 01:22:56 +0000 | [diff] [blame] | 4131 | } |
| 4132 | } |
| 4133 | } |
| 4134 | ); |
| 4135 | Ok(()) |
| 4136 | } |
| 4137 | |
| 4138 | #[test] |
Michael Forster | 409d941 | 2021-10-07 08:35:29 +0000 | [diff] [blame] | 4139 | fn test_doc_comment_func() -> Result<()> { |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 4140 | let ir = ir_from_cc( |
| 4141 | " |
| 4142 | // Doc Comment |
| 4143 | // with two lines |
| 4144 | int func();", |
| 4145 | )?; |
Michael Forster | 409d941 | 2021-10-07 08:35:29 +0000 | [diff] [blame] | 4146 | |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 4147 | assert_rs_matches!( |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4148 | generate_bindings_tokens(&ir)?.rs_api, |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 4149 | // leading space is intentional so there is a space between /// and the text of the |
| 4150 | // comment |
| 4151 | quote! { |
| 4152 | #[doc = " Doc Comment\n with two lines"] |
| 4153 | #[inline(always)] |
| 4154 | pub fn func |
| 4155 | } |
Michael Forster | 409d941 | 2021-10-07 08:35:29 +0000 | [diff] [blame] | 4156 | ); |
| 4157 | |
| 4158 | Ok(()) |
| 4159 | } |
| 4160 | |
| 4161 | #[test] |
| 4162 | fn test_doc_comment_record() -> Result<()> { |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 4163 | let ir = ir_from_cc( |
| 4164 | "// Doc Comment\n\ |
| 4165 | //\n\ |
| 4166 | // * with bullet\n\ |
Devin Jeanpierre | 88343c7 | 2022-01-15 01:10:23 +0000 | [diff] [blame] | 4167 | struct SomeStruct final {\n\ |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 4168 | // Field doc\n\ |
| 4169 | int field;\ |
| 4170 | };", |
| 4171 | )?; |
Michael Forster | 028800b | 2021-10-05 12:39:59 +0000 | [diff] [blame] | 4172 | |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 4173 | assert_rs_matches!( |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4174 | generate_bindings_tokens(&ir)?.rs_api, |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 4175 | quote! { |
| 4176 | #[doc = " Doc Comment\n \n * with bullet"] |
| 4177 | #[derive(Clone, Copy)] |
| 4178 | #[repr(C)] |
| 4179 | pub struct SomeStruct { |
| 4180 | # [doc = " Field doc"] |
| 4181 | pub field: i32, |
| 4182 | } |
| 4183 | } |
Michael Forster | cc5941a | 2021-10-07 07:12:24 +0000 | [diff] [blame] | 4184 | ); |
Michael Forster | 028800b | 2021-10-05 12:39:59 +0000 | [diff] [blame] | 4185 | Ok(()) |
| 4186 | } |
Devin Jeanpierre | 91de701 | 2021-10-21 12:53:51 +0000 | [diff] [blame] | 4187 | |
Devin Jeanpierre | 96839c1 | 2021-12-14 00:27:38 +0000 | [diff] [blame] | 4188 | #[test] |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4189 | fn test_basic_union() -> Result<()> { |
| 4190 | let ir = ir_from_cc( |
| 4191 | r#" |
| 4192 | union SomeUnion { |
| 4193 | int some_field; |
| 4194 | long long some_bigger_field; |
| 4195 | }; |
| 4196 | "#, |
| 4197 | )?; |
Marcel Hlopko | 4c29c6f | 2022-05-04 00:49:14 -0700 | [diff] [blame] | 4198 | let BindingsTokens { rs_api, rs_api_impl } = generate_bindings_tokens(&ir)?; |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4199 | |
| 4200 | assert_rs_matches!( |
| 4201 | rs_api, |
| 4202 | quote! { |
| 4203 | #[derive(Clone, Copy)] |
| 4204 | #[repr(C)] |
| 4205 | pub union SomeUnion { |
| 4206 | pub some_field: i32, |
| 4207 | pub some_bigger_field: i64, |
| 4208 | } |
| 4209 | } |
| 4210 | ); |
Marcel Hlopko | 4c29c6f | 2022-05-04 00:49:14 -0700 | [diff] [blame] | 4211 | assert_cc_matches!( |
| 4212 | rs_api_impl, |
| 4213 | quote! { |
| 4214 | extern "C" void __rust_thunk___ZN9SomeUnionC1Ev(union SomeUnion*__this) {...} |
| 4215 | } |
| 4216 | ); |
| 4217 | assert_cc_matches!( |
| 4218 | rs_api_impl, |
| 4219 | quote! { |
| 4220 | extern "C" void __rust_thunk___ZN9SomeUnionD1Ev(union SomeUnion*__this) {...} |
| 4221 | } |
| 4222 | ); |
| 4223 | assert_cc_matches!( |
| 4224 | rs_api_impl, |
| 4225 | quote! { |
| 4226 | extern "C" union SomeUnion&__rust_thunk___ZN9SomeUnionaSERKS_( |
| 4227 | union SomeUnion*__this, const union SomeUnion&__param_0) { ... } |
| 4228 | } |
| 4229 | ); |
| 4230 | assert_cc_matches!(rs_api_impl, quote! { static_assert(sizeof(union SomeUnion)==8) }); |
| 4231 | assert_cc_matches!(rs_api_impl, quote! { static_assert(alignof(union SomeUnion)==8) }); |
| 4232 | assert_cc_matches!( |
| 4233 | rs_api_impl, |
Lukasz Anforowicz | 30360ba | 2022-05-23 12:15:12 -0700 | [diff] [blame] | 4234 | quote! { static_assert(CRUBIT_OFFSET_OF(some_field, union SomeUnion)==0) } |
Marcel Hlopko | 4c29c6f | 2022-05-04 00:49:14 -0700 | [diff] [blame] | 4235 | ); |
| 4236 | assert_cc_matches!( |
| 4237 | rs_api_impl, |
Lukasz Anforowicz | 30360ba | 2022-05-23 12:15:12 -0700 | [diff] [blame] | 4238 | quote! { static_assert(CRUBIT_OFFSET_OF(some_bigger_field, union SomeUnion)==0) } |
Marcel Hlopko | 4c29c6f | 2022-05-04 00:49:14 -0700 | [diff] [blame] | 4239 | ); |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4240 | Ok(()) |
| 4241 | } |
| 4242 | |
| 4243 | #[test] |
Marcel Hlopko | f05621b | 2022-05-25 00:26:06 -0700 | [diff] [blame] | 4244 | fn test_union_with_opaque_field() -> Result<()> { |
| 4245 | let ir = ir_from_cc( |
| 4246 | r#" |
| 4247 | union MyUnion { |
| 4248 | char first_field[56]; |
| 4249 | int second_field; |
| 4250 | }; |
| 4251 | "#, |
| 4252 | )?; |
| 4253 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
| 4254 | |
| 4255 | assert_rs_matches!( |
| 4256 | rs_api, |
| 4257 | quote! { |
| 4258 | #[repr(C, align(4))] |
| 4259 | pub union MyUnion { ... |
| 4260 | first_field: [crate::rust_std::mem::MaybeUninit<u8>; 56], |
| 4261 | pub second_field: i32, |
| 4262 | } |
| 4263 | } |
| 4264 | ); |
| 4265 | |
| 4266 | assert_rs_matches!( |
| 4267 | rs_api, |
| 4268 | quote! { const _: () = assert!(rust_std::mem::size_of::<crate::MyUnion>() == 56); } |
| 4269 | ); |
| 4270 | assert_rs_matches!( |
| 4271 | rs_api, |
| 4272 | quote! { const _: () = assert!(rust_std::mem::align_of::<crate::MyUnion>() == 4); } |
| 4273 | ); |
| 4274 | Ok(()) |
| 4275 | } |
| 4276 | |
| 4277 | #[test] |
Marcel Hlopko | fa9a395 | 2022-05-10 01:34:13 -0700 | [diff] [blame] | 4278 | // TODO(https://github.com/Gilnaa/memoffset/issues/66): generate assertions for unions once |
| 4279 | // offsetof supports them. |
| 4280 | fn test_currently_no_offset_assertions_for_unions() -> Result<()> { |
| 4281 | let ir = ir_from_cc( |
| 4282 | r#" |
| 4283 | union SomeUnion { |
| 4284 | int some_field; |
| 4285 | long long some_bigger_field; |
| 4286 | }; |
| 4287 | "#, |
| 4288 | )?; |
| 4289 | let BindingsTokens { rs_api, .. } = generate_bindings_tokens(&ir)?; |
| 4290 | |
| 4291 | assert_rs_not_matches!(rs_api, quote! { offset_of! }); |
| 4292 | Ok(()) |
| 4293 | } |
| 4294 | |
| 4295 | #[test] |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4296 | fn test_union_with_private_fields() -> Result<()> { |
| 4297 | let ir = ir_from_cc( |
| 4298 | r#" |
| 4299 | union SomeUnionWithPrivateFields { |
| 4300 | public: |
| 4301 | int public_field; |
| 4302 | private: |
| 4303 | long long private_field; |
| 4304 | }; |
| 4305 | "#, |
| 4306 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4307 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4308 | |
| 4309 | assert_rs_matches!( |
| 4310 | rs_api, |
| 4311 | quote! { |
| 4312 | #[derive(Clone, Copy)] |
Lukasz Anforowicz | df8fcae | 2022-06-02 14:54:43 -0700 | [diff] [blame] | 4313 | #[repr(C, align(8))] |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4314 | pub union SomeUnionWithPrivateFields { |
| 4315 | pub public_field: i32, |
Lukasz Anforowicz | df8fcae | 2022-06-02 14:54:43 -0700 | [diff] [blame] | 4316 | #[doc = " Reason for representing this field as a blob of bytes:\n Types of non-public C++ fields can be elided away"] |
Rosica Dejanovska | 6676ad8 | 2022-06-07 14:28:59 -0700 | [diff] [blame] | 4317 | pub(crate) private_field: [crate::rust_std::mem::MaybeUninit<u8>; 8], |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4318 | } |
| 4319 | } |
| 4320 | ); |
| 4321 | |
| 4322 | assert_rs_matches!( |
| 4323 | rs_api, |
| 4324 | quote! { |
Lukasz Anforowicz | dc37d6d | 2022-05-17 08:20:13 -0700 | [diff] [blame] | 4325 | const _: () = assert!(rust_std::mem::size_of::<crate::SomeUnionWithPrivateFields>() == 8); |
| 4326 | const _: () = assert!(rust_std::mem::align_of::<crate::SomeUnionWithPrivateFields>() == 8); |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4327 | const _: () = { |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 4328 | static_assertions::assert_impl_all!(crate::SomeUnionWithPrivateFields: Clone); |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4329 | }; |
| 4330 | const _: () = { |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 4331 | static_assertions::assert_impl_all!(crate::SomeUnionWithPrivateFields: Copy); |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4332 | }; |
| 4333 | const _: () = { |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 4334 | static_assertions::assert_not_impl_all!(crate::SomeUnionWithPrivateFields: Drop); |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4335 | }; |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4336 | } |
| 4337 | ); |
| 4338 | Ok(()) |
| 4339 | } |
| 4340 | |
| 4341 | #[test] |
Marcel Hlopko | 4546573 | 2022-05-24 00:51:04 -0700 | [diff] [blame] | 4342 | fn test_nontrivial_unions() -> Result<()> { |
| 4343 | let ir = ir_from_cc_dependency( |
| 4344 | r#" |
| 4345 | union UnionWithNontrivialField { |
| 4346 | NonTrivialStruct my_field; |
| 4347 | }; |
| 4348 | "#, |
| 4349 | r#" |
| 4350 | struct NonTrivialStruct { |
| 4351 | NonTrivialStruct(NonTrivialStruct&&); |
| 4352 | }; |
| 4353 | "#, |
| 4354 | )?; |
| 4355 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
| 4356 | |
| 4357 | assert_rs_not_matches!(rs_api, quote! {derive ( ... Copy ... )}); |
| 4358 | assert_rs_not_matches!(rs_api, quote! {derive ( ... Clone ... )}); |
Devin Jeanpierre | 190b90a | 2022-05-24 06:00:34 -0700 | [diff] [blame] | 4359 | assert_rs_matches!( |
| 4360 | rs_api, |
| 4361 | quote! { |
| 4362 | #[ctor::recursively_pinned] |
| 4363 | #[repr(C)] |
| 4364 | pub union UnionWithNontrivialField { ... } |
| 4365 | } |
| 4366 | ); |
Marcel Hlopko | 4546573 | 2022-05-24 00:51:04 -0700 | [diff] [blame] | 4367 | Ok(()) |
| 4368 | } |
| 4369 | |
| 4370 | #[test] |
Devin Jeanpierre | 1221c2a | 2022-05-05 22:36:22 -0700 | [diff] [blame] | 4371 | fn test_empty_struct() -> Result<()> { |
| 4372 | let ir = ir_from_cc( |
| 4373 | r#" |
| 4374 | struct EmptyStruct final {}; |
| 4375 | "#, |
| 4376 | )?; |
| 4377 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
| 4378 | |
| 4379 | assert_rs_matches!( |
| 4380 | rs_api, |
| 4381 | quote! { |
| 4382 | #[derive(Clone, Copy)] |
| 4383 | #[repr(C)] |
| 4384 | pub struct EmptyStruct { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 4385 | __non_field_data: [crate::rust_std::mem::MaybeUninit<u8>; 1], |
Devin Jeanpierre | 1221c2a | 2022-05-05 22:36:22 -0700 | [diff] [blame] | 4386 | } |
| 4387 | } |
| 4388 | ); |
| 4389 | |
| 4390 | assert_rs_matches!( |
| 4391 | rs_api, |
| 4392 | quote! { |
Lukasz Anforowicz | dc37d6d | 2022-05-17 08:20:13 -0700 | [diff] [blame] | 4393 | const _: () = assert!(rust_std::mem::size_of::<crate::EmptyStruct>() == 1); |
| 4394 | const _: () = assert!(rust_std::mem::align_of::<crate::EmptyStruct>() == 1); |
Devin Jeanpierre | 1221c2a | 2022-05-05 22:36:22 -0700 | [diff] [blame] | 4395 | } |
| 4396 | ); |
| 4397 | |
| 4398 | Ok(()) |
| 4399 | } |
| 4400 | |
| 4401 | #[test] |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4402 | fn test_empty_union() -> Result<()> { |
| 4403 | let ir = ir_from_cc( |
| 4404 | r#" |
| 4405 | union EmptyUnion {}; |
| 4406 | "#, |
| 4407 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4408 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4409 | |
| 4410 | assert_rs_matches!( |
| 4411 | rs_api, |
| 4412 | quote! { |
| 4413 | #[derive(Clone, Copy)] |
| 4414 | #[repr(C)] |
| 4415 | pub union EmptyUnion { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 4416 | __non_field_data: [crate::rust_std::mem::MaybeUninit<u8>; 1], |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4417 | } |
| 4418 | } |
| 4419 | ); |
| 4420 | |
| 4421 | assert_rs_matches!( |
| 4422 | rs_api, |
| 4423 | quote! { |
Lukasz Anforowicz | dc37d6d | 2022-05-17 08:20:13 -0700 | [diff] [blame] | 4424 | const _: () = assert!(rust_std::mem::size_of::<crate::EmptyUnion>() == 1); |
| 4425 | const _: () = assert!(rust_std::mem::align_of::<crate::EmptyUnion>() == 1); |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4426 | } |
| 4427 | ); |
| 4428 | |
| 4429 | Ok(()) |
| 4430 | } |
| 4431 | |
| 4432 | #[test] |
| 4433 | fn test_union_field_with_nontrivial_destructor() -> Result<()> { |
| 4434 | let ir = ir_from_cc( |
| 4435 | r#" |
| 4436 | struct NontrivialStruct { ~NontrivialStruct(); }; |
| 4437 | union UnionWithNontrivialField { |
| 4438 | int trivial_field; |
| 4439 | NontrivialStruct nontrivial_field; |
| 4440 | }; |
| 4441 | "#, |
| 4442 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4443 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4444 | |
| 4445 | assert_rs_matches!( |
| 4446 | rs_api, |
| 4447 | quote! { |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4448 | #[repr(C)] |
| 4449 | pub union UnionWithNontrivialField { |
| 4450 | pub trivial_field: i32, |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 4451 | pub nontrivial_field: crate::rust_std::mem::ManuallyDrop<crate::NontrivialStruct>, |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4452 | } |
| 4453 | } |
| 4454 | ); |
| 4455 | |
| 4456 | assert_rs_matches!( |
| 4457 | rs_api, |
| 4458 | quote! { |
Lukasz Anforowicz | dc37d6d | 2022-05-17 08:20:13 -0700 | [diff] [blame] | 4459 | const _: () = assert!(rust_std::mem::size_of::<crate::UnionWithNontrivialField>() == 4); |
| 4460 | const _: () = assert!(rust_std::mem::align_of::<crate::UnionWithNontrivialField>() == 4); |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4461 | } |
| 4462 | ); |
| 4463 | Ok(()) |
| 4464 | } |
| 4465 | |
| 4466 | #[test] |
| 4467 | fn test_union_with_constructors() -> Result<()> { |
| 4468 | let ir = ir_from_cc( |
| 4469 | r#" |
| 4470 | #pragma clang lifetime_elision |
| 4471 | union UnionWithDefaultConstructors { |
| 4472 | int a; |
| 4473 | }; |
| 4474 | "#, |
| 4475 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4476 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4477 | |
| 4478 | assert_rs_matches!( |
| 4479 | rs_api, |
| 4480 | quote! { |
| 4481 | #[derive(Clone, Copy)] |
| 4482 | #[repr(C)] |
| 4483 | pub union UnionWithDefaultConstructors { |
| 4484 | pub a: i32, |
| 4485 | } |
| 4486 | } |
| 4487 | ); |
| 4488 | |
| 4489 | assert_rs_matches!( |
| 4490 | rs_api, |
| 4491 | quote! { |
| 4492 | impl Default for UnionWithDefaultConstructors { |
| 4493 | #[inline(always)] |
| 4494 | fn default() -> Self { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 4495 | let mut tmp = crate::rust_std::mem::MaybeUninit::<Self>::zeroed(); |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4496 | unsafe { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 4497 | crate::detail::__rust_thunk___ZN28UnionWithDefaultConstructorsC1Ev(&mut tmp); |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4498 | tmp.assume_init() |
| 4499 | } |
| 4500 | } |
| 4501 | } |
| 4502 | } |
| 4503 | ); |
| 4504 | |
| 4505 | assert_rs_matches!( |
| 4506 | rs_api, |
| 4507 | quote! { |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 4508 | impl<'b> From<ctor::RvalueReference<'b, crate::UnionWithDefaultConstructors>> for UnionWithDefaultConstructors { |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4509 | #[inline(always)] |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 4510 | fn from(__param_0: ctor::RvalueReference<'b, crate::UnionWithDefaultConstructors>) -> Self { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 4511 | let mut tmp = crate::rust_std::mem::MaybeUninit::<Self>::zeroed(); |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4512 | unsafe { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 4513 | crate::detail::__rust_thunk___ZN28UnionWithDefaultConstructorsC1EOS_(&mut tmp, __param_0); |
Teddy Katz | d2cd142 | 2022-04-04 09:41:33 -0700 | [diff] [blame] | 4514 | tmp.assume_init() |
| 4515 | } |
| 4516 | } |
| 4517 | } |
| 4518 | } |
| 4519 | ); |
| 4520 | |
| 4521 | Ok(()) |
| 4522 | } |
| 4523 | |
| 4524 | #[test] |
Devin Jeanpierre | 5677702 | 2022-02-03 01:57:15 +0000 | [diff] [blame] | 4525 | fn test_unambiguous_public_bases() -> Result<()> { |
| 4526 | let ir = ir_from_cc_dependency( |
| 4527 | " |
| 4528 | struct VirtualBase {}; |
| 4529 | struct PrivateBase {}; |
| 4530 | struct ProtectedBase {}; |
| 4531 | struct UnambiguousPublicBase {}; |
| 4532 | struct AmbiguousPublicBase {}; |
| 4533 | struct MultipleInheritance : UnambiguousPublicBase, AmbiguousPublicBase {}; |
| 4534 | struct Derived : private PrivateBase, protected ProtectedBase, MultipleInheritance, AmbiguousPublicBase, virtual VirtualBase {}; |
| 4535 | ", |
| 4536 | "", |
| 4537 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4538 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Devin Jeanpierre | f99db3e | 2022-04-27 23:10:33 -0700 | [diff] [blame] | 4539 | assert_rs_matches!( |
| 4540 | rs_api, |
| 4541 | quote! { |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 4542 | unsafe impl oops::Inherits<crate::VirtualBase> for Derived { |
| 4543 | unsafe fn upcast_ptr(derived: *const Self) -> *const crate::VirtualBase { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 4544 | crate::detail::__crubit_dynamic_upcast__Derived__to__VirtualBase(derived) |
Devin Jeanpierre | f99db3e | 2022-04-27 23:10:33 -0700 | [diff] [blame] | 4545 | } |
| 4546 | } |
| 4547 | } |
| 4548 | ); |
Devin Jeanpierre | b368e68 | 2022-05-03 02:23:44 -0700 | [diff] [blame] | 4549 | assert_rs_matches!( |
| 4550 | rs_api, |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 4551 | quote! { unsafe impl oops::Inherits<crate::UnambiguousPublicBase> for Derived } |
Devin Jeanpierre | b368e68 | 2022-05-03 02:23:44 -0700 | [diff] [blame] | 4552 | ); |
| 4553 | assert_rs_matches!( |
| 4554 | rs_api, |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 4555 | quote! { unsafe impl oops::Inherits<crate::MultipleInheritance> for Derived } |
Devin Jeanpierre | b368e68 | 2022-05-03 02:23:44 -0700 | [diff] [blame] | 4556 | ); |
| 4557 | assert_rs_not_matches!( |
| 4558 | rs_api, |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 4559 | quote! {unsafe impl oops::Inherits<crate::PrivateBase> for Derived} |
Devin Jeanpierre | b368e68 | 2022-05-03 02:23:44 -0700 | [diff] [blame] | 4560 | ); |
| 4561 | assert_rs_not_matches!( |
| 4562 | rs_api, |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 4563 | quote! {unsafe impl oops::Inherits<crate::ProtectedBase> for Derived} |
Devin Jeanpierre | b368e68 | 2022-05-03 02:23:44 -0700 | [diff] [blame] | 4564 | ); |
| 4565 | assert_rs_not_matches!( |
| 4566 | rs_api, |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 4567 | quote! {unsafe impl oops::Inherits<crate::AmbiguousPublicBase> for Derived} |
Devin Jeanpierre | b368e68 | 2022-05-03 02:23:44 -0700 | [diff] [blame] | 4568 | ); |
Devin Jeanpierre | 5677702 | 2022-02-03 01:57:15 +0000 | [diff] [blame] | 4569 | Ok(()) |
| 4570 | } |
| 4571 | |
| 4572 | /// Contrary to intuitions: a base class conversion is ambiguous even if the |
| 4573 | /// ambiguity is from a private base class cast that you can't even |
| 4574 | /// perform. |
| 4575 | /// |
| 4576 | /// Explanation (courtesy James Dennett): |
| 4577 | /// |
| 4578 | /// > Once upon a time, there was a rule in C++ that changing all access |
| 4579 | /// > specifiers to "public" would not change the meaning of code. |
| 4580 | /// > That's no longer true, but some of its effects can still be seen. |
| 4581 | /// |
| 4582 | /// So, we need to be sure to not allow casting to privately-ambiguous |
| 4583 | /// bases. |
| 4584 | #[test] |
| 4585 | fn test_unambiguous_public_bases_private_ambiguity() -> Result<()> { |
| 4586 | let ir = ir_from_cc_dependency( |
| 4587 | " |
| 4588 | struct Base {}; |
| 4589 | struct Intermediate : public Base {}; |
| 4590 | struct Derived : Base, private Intermediate {}; |
| 4591 | ", |
| 4592 | "", |
| 4593 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4594 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 4595 | assert_rs_not_matches!( |
| 4596 | rs_api, |
| 4597 | quote! { unsafe impl oops::Inherits<crate::Base> for Derived } |
| 4598 | ); |
Devin Jeanpierre | 5677702 | 2022-02-03 01:57:15 +0000 | [diff] [blame] | 4599 | Ok(()) |
| 4600 | } |
| 4601 | |
| 4602 | #[test] |
Devin Jeanpierre | 96839c1 | 2021-12-14 00:27:38 +0000 | [diff] [blame] | 4603 | fn test_virtual_thunk() -> Result<()> { |
| 4604 | let ir = ir_from_cc("struct Polymorphic { virtual void Foo(); };")?; |
| 4605 | |
| 4606 | assert_cc_matches!( |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4607 | generate_bindings_tokens(&ir)?.rs_api_impl, |
Devin Jeanpierre | 96839c1 | 2021-12-14 00:27:38 +0000 | [diff] [blame] | 4608 | quote! { |
Googler | 972d358 | 2022-01-11 10:17:22 +0000 | [diff] [blame] | 4609 | extern "C" void __rust_thunk___ZN11Polymorphic3FooEv(class Polymorphic * __this) |
Devin Jeanpierre | 96839c1 | 2021-12-14 00:27:38 +0000 | [diff] [blame] | 4610 | } |
| 4611 | ); |
| 4612 | Ok(()) |
| 4613 | } |
| 4614 | |
Lukasz Anforowicz | 0b6a6ac | 2022-03-22 22:32:23 +0000 | [diff] [blame] | 4615 | #[test] |
| 4616 | fn test_custom_abi_thunk() -> Result<()> { |
| 4617 | let ir = ir_from_cc( |
| 4618 | r#" |
| 4619 | float f_vectorcall_calling_convention(float p1, float p2) [[clang::vectorcall]]; |
| 4620 | double f_c_calling_convention(double p1, double p2); |
| 4621 | "#, |
| 4622 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4623 | let BindingsTokens { rs_api, rs_api_impl } = generate_bindings_tokens(&ir)?; |
Lukasz Anforowicz | 0b6a6ac | 2022-03-22 22:32:23 +0000 | [diff] [blame] | 4624 | assert_rs_matches!( |
| 4625 | rs_api, |
| 4626 | quote! { |
| 4627 | #[inline(always)] |
| 4628 | pub fn f_vectorcall_calling_convention(p1: f32, p2: f32) -> f32 { |
| 4629 | unsafe { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 4630 | crate::detail::__rust_thunk___Z31f_vectorcall_calling_conventionff(p1, p2) |
Lukasz Anforowicz | 0b6a6ac | 2022-03-22 22:32:23 +0000 | [diff] [blame] | 4631 | } |
| 4632 | } |
| 4633 | } |
| 4634 | ); |
| 4635 | assert_rs_matches!( |
| 4636 | rs_api, |
| 4637 | quote! { |
| 4638 | #[inline(always)] |
| 4639 | pub fn f_c_calling_convention(p1: f64, p2: f64) -> f64 { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 4640 | unsafe { crate::detail::__rust_thunk___Z22f_c_calling_conventiondd(p1, p2) } |
Lukasz Anforowicz | 0b6a6ac | 2022-03-22 22:32:23 +0000 | [diff] [blame] | 4641 | } |
| 4642 | } |
| 4643 | ); |
| 4644 | // `link_name` (i.e. no thunk) for `f_c_calling_convention`. No |
| 4645 | // `link_name` (i.e. indicates presence of a thunk) for |
| 4646 | // `f_vectorcall_calling_convention`. |
| 4647 | assert_rs_matches!( |
| 4648 | rs_api, |
| 4649 | quote! { |
| 4650 | mod detail { |
| 4651 | #[allow(unused_imports)] |
| 4652 | use super::*; |
| 4653 | extern "C" { |
| 4654 | pub(crate) fn __rust_thunk___Z31f_vectorcall_calling_conventionff( |
| 4655 | p1: f32, p2: f32) -> f32; |
| 4656 | #[link_name = "_Z22f_c_calling_conventiondd"] |
| 4657 | pub(crate) fn __rust_thunk___Z22f_c_calling_conventiondd( |
| 4658 | p1: f64, p2: f64) -> f64; |
| 4659 | } |
| 4660 | } |
| 4661 | } |
| 4662 | ); |
| 4663 | // C++ thunk needed for `f_vectorcall_calling_convention`. |
| 4664 | assert_cc_matches!( |
| 4665 | rs_api_impl, |
| 4666 | quote! { |
| 4667 | extern "C" float __rust_thunk___Z31f_vectorcall_calling_conventionff( |
| 4668 | float p1, float p2) { |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 4669 | return f_vectorcall_calling_convention (std::forward<decltype(p1)>(p1), std::forward<decltype(p2)>(p2)); |
Lukasz Anforowicz | 0b6a6ac | 2022-03-22 22:32:23 +0000 | [diff] [blame] | 4670 | } |
| 4671 | } |
| 4672 | ); |
| 4673 | // No C++ thunk expected for `f_c_calling_convention`. |
| 4674 | assert_cc_not_matches!(rs_api_impl, quote! { f_c_calling_convention }); |
| 4675 | Ok(()) |
| 4676 | } |
| 4677 | |
Devin Jeanpierre | e6e1665 | 2021-12-22 15:54:46 +0000 | [diff] [blame] | 4678 | /// A trivially relocatable final struct is safe to use in Rust as normal, |
| 4679 | /// and is Unpin. |
| 4680 | #[test] |
| 4681 | fn test_no_negative_impl_unpin() -> Result<()> { |
| 4682 | let ir = ir_from_cc("struct Trivial final {};")?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4683 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 4684 | assert_rs_not_matches!(rs_api, quote! {#[ctor::recursively_pinned]}); |
Devin Jeanpierre | e6e1665 | 2021-12-22 15:54:46 +0000 | [diff] [blame] | 4685 | Ok(()) |
| 4686 | } |
| 4687 | |
| 4688 | /// A non-final struct, even if it's trivial, is not usable by mut |
| 4689 | /// reference, and so is !Unpin. |
| 4690 | #[test] |
| 4691 | fn test_negative_impl_unpin_nonfinal() -> Result<()> { |
| 4692 | let ir = ir_from_cc("struct Nonfinal {};")?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4693 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 4694 | assert_rs_matches!(rs_api, quote! {#[ctor::recursively_pinned]}); |
Devin Jeanpierre | e6e1665 | 2021-12-22 15:54:46 +0000 | [diff] [blame] | 4695 | Ok(()) |
| 4696 | } |
| 4697 | |
Devin Jeanpierre | 91de701 | 2021-10-21 12:53:51 +0000 | [diff] [blame] | 4698 | /// At the least, a trivial type should have no drop impl if or until we add |
| 4699 | /// empty drop impls. |
| 4700 | #[test] |
| 4701 | fn test_no_impl_drop() -> Result<()> { |
Googler | 7cced42 | 2021-12-06 11:58:39 +0000 | [diff] [blame] | 4702 | let ir = ir_from_cc("struct Trivial {};")?; |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 4703 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
| 4704 | assert_rs_not_matches!(rs_api, quote! {impl Drop}); |
| 4705 | assert_rs_not_matches!(rs_api, quote! {impl ::ctor::PinnedDrop}); |
Devin Jeanpierre | 91de701 | 2021-10-21 12:53:51 +0000 | [diff] [blame] | 4706 | Ok(()) |
| 4707 | } |
| 4708 | |
Devin Jeanpierre | 7e9a1de | 2021-12-03 08:04:22 +0000 | [diff] [blame] | 4709 | /// User-defined destructors *must* become Drop impls with ManuallyDrop |
| 4710 | /// fields |
Devin Jeanpierre | 91de701 | 2021-10-21 12:53:51 +0000 | [diff] [blame] | 4711 | #[test] |
Devin Jeanpierre | 7e9a1de | 2021-12-03 08:04:22 +0000 | [diff] [blame] | 4712 | fn test_impl_drop_user_defined_destructor() -> Result<()> { |
Googler | 7cced42 | 2021-12-06 11:58:39 +0000 | [diff] [blame] | 4713 | let ir = ir_from_cc( |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 4714 | r#" struct NontrivialStruct { ~NontrivialStruct(); }; |
| 4715 | struct UserDefinedDestructor { |
Devin Jeanpierre | 91de701 | 2021-10-21 12:53:51 +0000 | [diff] [blame] | 4716 | ~UserDefinedDestructor(); |
Devin Jeanpierre | 7e9a1de | 2021-12-03 08:04:22 +0000 | [diff] [blame] | 4717 | int x; |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 4718 | NontrivialStruct nts; |
Devin Jeanpierre | 91de701 | 2021-10-21 12:53:51 +0000 | [diff] [blame] | 4719 | };"#, |
| 4720 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4721 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Lukasz Anforowicz | 6d55363 | 2022-01-06 21:36:14 +0000 | [diff] [blame] | 4722 | assert_rs_matches!( |
| 4723 | rs_api, |
| 4724 | quote! { |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 4725 | impl ::ctor::PinnedDrop for UserDefinedDestructor { |
Lukasz Anforowicz | 6d55363 | 2022-01-06 21:36:14 +0000 | [diff] [blame] | 4726 | #[inline(always)] |
Devin Jeanpierre | 108e9c0 | 2022-06-02 07:10:09 -0700 | [diff] [blame] | 4727 | unsafe fn pinned_drop<'a>(self: crate::rust_std::pin::Pin<&'a mut Self>) { |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 4728 | crate::detail::__rust_thunk___ZN21UserDefinedDestructorD1Ev(self) |
Lukasz Anforowicz | 6d55363 | 2022-01-06 21:36:14 +0000 | [diff] [blame] | 4729 | } |
| 4730 | } |
| 4731 | } |
| 4732 | ); |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 4733 | assert_rs_matches!(rs_api, quote! {pub x: i32,}); |
Rosica Dejanovska | accf00b | 2022-04-01 13:28:04 -0700 | [diff] [blame] | 4734 | assert_rs_matches!( |
| 4735 | rs_api, |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 4736 | quote! {pub nts: crate::rust_std::mem::ManuallyDrop<crate::NontrivialStruct>,} |
Rosica Dejanovska | accf00b | 2022-04-01 13:28:04 -0700 | [diff] [blame] | 4737 | ); |
Devin Jeanpierre | 7e9a1de | 2021-12-03 08:04:22 +0000 | [diff] [blame] | 4738 | Ok(()) |
| 4739 | } |
| 4740 | |
Lukasz Anforowicz | 6d55363 | 2022-01-06 21:36:14 +0000 | [diff] [blame] | 4741 | /// nontrivial types without user-defined destructors should invoke |
| 4742 | /// the C++ destructor to preserve the order of field destructions. |
Devin Jeanpierre | 7e9a1de | 2021-12-03 08:04:22 +0000 | [diff] [blame] | 4743 | #[test] |
| 4744 | fn test_impl_drop_nontrivial_member_destructor() -> Result<()> { |
| 4745 | // TODO(jeanpierreda): This would be cleaner if the UserDefinedDestructor code were |
| 4746 | // omitted. For example, we simulate it so that UserDefinedDestructor |
| 4747 | // comes from another library. |
Googler | 7cced42 | 2021-12-06 11:58:39 +0000 | [diff] [blame] | 4748 | let ir = ir_from_cc( |
Devin Jeanpierre | 88343c7 | 2022-01-15 01:10:23 +0000 | [diff] [blame] | 4749 | r#"struct UserDefinedDestructor final { |
Devin Jeanpierre | 7e9a1de | 2021-12-03 08:04:22 +0000 | [diff] [blame] | 4750 | ~UserDefinedDestructor(); |
| 4751 | }; |
Devin Jeanpierre | 88343c7 | 2022-01-15 01:10:23 +0000 | [diff] [blame] | 4752 | struct TrivialStruct final { int i; }; |
| 4753 | struct NontrivialMembers final { |
Devin Jeanpierre | 7e9a1de | 2021-12-03 08:04:22 +0000 | [diff] [blame] | 4754 | UserDefinedDestructor udd; |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 4755 | TrivialStruct ts; |
Devin Jeanpierre | 7e9a1de | 2021-12-03 08:04:22 +0000 | [diff] [blame] | 4756 | int x; |
| 4757 | };"#, |
| 4758 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4759 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Lukasz Anforowicz | 6d55363 | 2022-01-06 21:36:14 +0000 | [diff] [blame] | 4760 | assert_rs_matches!( |
| 4761 | rs_api, |
| 4762 | quote! { |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 4763 | impl ::ctor::PinnedDrop for NontrivialMembers { |
Lukasz Anforowicz | 6d55363 | 2022-01-06 21:36:14 +0000 | [diff] [blame] | 4764 | #[inline(always)] |
Devin Jeanpierre | 108e9c0 | 2022-06-02 07:10:09 -0700 | [diff] [blame] | 4765 | unsafe fn pinned_drop<'a>(self: crate::rust_std::pin::Pin<&'a mut Self>) { |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 4766 | crate::detail::__rust_thunk___ZN17NontrivialMembersD1Ev(self) |
Lukasz Anforowicz | 6d55363 | 2022-01-06 21:36:14 +0000 | [diff] [blame] | 4767 | } |
| 4768 | } |
| 4769 | } |
| 4770 | ); |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 4771 | assert_rs_matches!(rs_api, quote! {pub x: i32,}); |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 4772 | assert_rs_matches!(rs_api, quote! {pub ts: crate::TrivialStruct,}); |
Lukasz Anforowicz | 6d55363 | 2022-01-06 21:36:14 +0000 | [diff] [blame] | 4773 | assert_rs_matches!( |
| 4774 | rs_api, |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 4775 | quote! {pub udd: crate::rust_std::mem::ManuallyDrop<crate::UserDefinedDestructor>,} |
Lukasz Anforowicz | 6d55363 | 2022-01-06 21:36:14 +0000 | [diff] [blame] | 4776 | ); |
Devin Jeanpierre | 7e9a1de | 2021-12-03 08:04:22 +0000 | [diff] [blame] | 4777 | Ok(()) |
| 4778 | } |
| 4779 | |
| 4780 | /// Trivial types (at least those that are mapped to Copy rust types) do not |
| 4781 | /// get a Drop impl. |
| 4782 | #[test] |
| 4783 | fn test_impl_drop_trivial() -> Result<()> { |
Googler | 7cced42 | 2021-12-06 11:58:39 +0000 | [diff] [blame] | 4784 | let ir = ir_from_cc( |
Devin Jeanpierre | 88343c7 | 2022-01-15 01:10:23 +0000 | [diff] [blame] | 4785 | r#"struct Trivial final { |
Devin Jeanpierre | 7e9a1de | 2021-12-03 08:04:22 +0000 | [diff] [blame] | 4786 | ~Trivial() = default; |
| 4787 | int x; |
| 4788 | };"#, |
| 4789 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4790 | let BindingsTokens { rs_api, rs_api_impl } = generate_bindings_tokens(&ir)?; |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 4791 | assert_rs_not_matches!(rs_api, quote! {impl Drop}); |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 4792 | assert_rs_not_matches!(rs_api, quote! {impl ::ctor::PinnedDrop}); |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 4793 | assert_rs_matches!(rs_api, quote! {pub x: i32}); |
Lukasz Anforowicz | 2f07416 | 2022-01-06 22:50:51 +0000 | [diff] [blame] | 4794 | // TODO(b/213326125): Avoid generating thunk impls that are never called. |
| 4795 | // (The test assertion below should be reversed once this bug is fixed.) |
| 4796 | assert_cc_matches!(rs_api_impl, quote! { std::destroy_at }); |
Devin Jeanpierre | 91de701 | 2021-10-21 12:53:51 +0000 | [diff] [blame] | 4797 | Ok(()) |
| 4798 | } |
Devin Jeanpierre | 45cb116 | 2021-10-27 10:54:28 +0000 | [diff] [blame] | 4799 | |
| 4800 | #[test] |
Lukasz Anforowicz | e643ec9 | 2021-12-22 15:45:15 +0000 | [diff] [blame] | 4801 | fn test_impl_default_explicitly_defaulted_constructor() -> Result<()> { |
| 4802 | let ir = ir_from_cc( |
Lukasz Anforowicz | 9555127 | 2022-01-20 00:02:24 +0000 | [diff] [blame] | 4803 | r#"#pragma clang lifetime_elision |
| 4804 | struct DefaultedConstructor final { |
Lukasz Anforowicz | e643ec9 | 2021-12-22 15:45:15 +0000 | [diff] [blame] | 4805 | DefaultedConstructor() = default; |
| 4806 | };"#, |
| 4807 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4808 | let BindingsTokens { rs_api, rs_api_impl } = generate_bindings_tokens(&ir)?; |
Lukasz Anforowicz | e643ec9 | 2021-12-22 15:45:15 +0000 | [diff] [blame] | 4809 | assert_rs_matches!( |
| 4810 | rs_api, |
| 4811 | quote! { |
| 4812 | impl Default for DefaultedConstructor { |
| 4813 | #[inline(always)] |
| 4814 | fn default() -> Self { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 4815 | let mut tmp = crate::rust_std::mem::MaybeUninit::<Self>::zeroed(); |
Lukasz Anforowicz | e643ec9 | 2021-12-22 15:45:15 +0000 | [diff] [blame] | 4816 | unsafe { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 4817 | crate::detail::__rust_thunk___ZN20DefaultedConstructorC1Ev(&mut tmp); |
Lukasz Anforowicz | e643ec9 | 2021-12-22 15:45:15 +0000 | [diff] [blame] | 4818 | tmp.assume_init() |
| 4819 | } |
| 4820 | } |
| 4821 | } |
| 4822 | } |
| 4823 | ); |
Lukasz Anforowicz | e643ec9 | 2021-12-22 15:45:15 +0000 | [diff] [blame] | 4824 | assert_cc_matches!( |
| 4825 | rs_api_impl, |
| 4826 | quote! { |
| 4827 | extern "C" void __rust_thunk___ZN20DefaultedConstructorC1Ev( |
Googler | 972d358 | 2022-01-11 10:17:22 +0000 | [diff] [blame] | 4828 | class DefaultedConstructor* __this) { |
Lukasz Anforowicz | 2317154 | 2022-04-11 15:26:17 -0700 | [diff] [blame] | 4829 | crubit::construct_at (std::forward<decltype(__this)>(__this)) ; |
Lukasz Anforowicz | e643ec9 | 2021-12-22 15:45:15 +0000 | [diff] [blame] | 4830 | } |
| 4831 | } |
| 4832 | ); |
| 4833 | Ok(()) |
| 4834 | } |
| 4835 | |
| 4836 | #[test] |
Lukasz Anforowicz | 326c4e4 | 2022-01-27 14:43:00 +0000 | [diff] [blame] | 4837 | fn test_impl_clone_that_propagates_lifetime() -> Result<()> { |
| 4838 | // This test covers the case where a single lifetime applies to 1) |
| 4839 | // the `__this` parameter and 2) other constructor parameters. For |
| 4840 | // example, maybe the newly constructed object needs to have the |
| 4841 | // same lifetime as the constructor's parameter. (This might require |
| 4842 | // annotating the whole C++ struct with a lifetime, so maybe the |
| 4843 | // example below is not fully realistic/accurate...). |
| 4844 | let mut ir = ir_from_cc( |
| 4845 | r#"#pragma clang lifetime_elision |
| 4846 | struct Foo final { |
Googler | 53f6594 | 2022-02-23 11:23:30 +0000 | [diff] [blame] | 4847 | [[clang::annotate("lifetimes", "a: a")]] |
Lukasz Anforowicz | 326c4e4 | 2022-01-27 14:43:00 +0000 | [diff] [blame] | 4848 | Foo(const int& i); |
| 4849 | };"#, |
| 4850 | )?; |
| 4851 | let ctor: &mut Func = ir |
| 4852 | .items_mut() |
| 4853 | .filter_map(|item| match item { |
| 4854 | Item::Func(func) => Some(func), |
| 4855 | _ => None, |
| 4856 | }) |
| 4857 | .find(|f| { |
| 4858 | matches!(&f.name, UnqualifiedIdentifier::Constructor) |
| 4859 | && f.params.get(1).map(|p| p.identifier.identifier == "i").unwrap_or_default() |
| 4860 | }) |
| 4861 | .unwrap(); |
| 4862 | { |
| 4863 | // Double-check that the test scenario set up above uses the same lifetime |
| 4864 | // for both of the constructor's parameters: `__this` and `i`. |
| 4865 | assert_eq!(ctor.params.len(), 2); |
| 4866 | let this_lifetime: LifetimeId = |
| 4867 | *ctor.params[0].type_.rs_type.lifetime_args.first().unwrap(); |
| 4868 | let i_lifetime: LifetimeId = |
| 4869 | *ctor.params[1].type_.rs_type.lifetime_args.first_mut().unwrap(); |
| 4870 | assert_eq!(i_lifetime, this_lifetime); |
| 4871 | } |
| 4872 | |
| 4873 | // Before cl/423346348 the generated Rust code would incorrectly look |
| 4874 | // like this (note the mismatched 'a and 'b lifetimes): |
| 4875 | // fn from<'b>(i: &'a i32) -> Self |
| 4876 | // After this CL, this scenario will result in an explicit error. |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4877 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Devin Jeanpierre | d7b4810 | 2022-03-31 04:15:03 -0700 | [diff] [blame] | 4878 | assert_rs_not_matches!(rs_api, quote! {impl From}); |
| 4879 | let rs_api_str = tokens_to_string(rs_api)?; |
| 4880 | assert!(rs_api_str.contains( |
| 4881 | "// The lifetime of `__this` is unexpectedly also used by another parameter" |
| 4882 | )); |
Lukasz Anforowicz | 326c4e4 | 2022-01-27 14:43:00 +0000 | [diff] [blame] | 4883 | Ok(()) |
| 4884 | } |
| 4885 | |
| 4886 | #[test] |
Lukasz Anforowicz | 9bab835 | 2021-12-22 17:35:31 +0000 | [diff] [blame] | 4887 | fn test_impl_default_non_trivial_struct() -> Result<()> { |
| 4888 | let ir = ir_from_cc( |
Lukasz Anforowicz | 71716b7 | 2022-01-26 17:05:05 +0000 | [diff] [blame] | 4889 | r#"#pragma clang lifetime_elision |
| 4890 | struct NonTrivialStructWithConstructors final { |
Lukasz Anforowicz | 9bab835 | 2021-12-22 17:35:31 +0000 | [diff] [blame] | 4891 | NonTrivialStructWithConstructors(); |
| 4892 | ~NonTrivialStructWithConstructors(); // Non-trivial |
| 4893 | };"#, |
| 4894 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4895 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Lukasz Anforowicz | 9bab835 | 2021-12-22 17:35:31 +0000 | [diff] [blame] | 4896 | assert_rs_not_matches!(rs_api, quote! {impl Default}); |
| 4897 | Ok(()) |
| 4898 | } |
| 4899 | |
| 4900 | #[test] |
Lukasz Anforowicz | 71716b7 | 2022-01-26 17:05:05 +0000 | [diff] [blame] | 4901 | fn test_impl_from_for_explicit_conversion_constructor() -> Result<()> { |
| 4902 | let ir = ir_from_cc( |
| 4903 | r#"#pragma clang lifetime_elision |
| 4904 | struct SomeStruct final { |
| 4905 | explicit SomeStruct(int i); |
| 4906 | };"#, |
| 4907 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4908 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Lukasz Anforowicz | 71716b7 | 2022-01-26 17:05:05 +0000 | [diff] [blame] | 4909 | // As discussed in b/214020567 for now we only generate `From::from` bindings |
| 4910 | // for *implicit* C++ conversion constructors. |
| 4911 | assert_rs_not_matches!(rs_api, quote! {impl From}); |
| 4912 | Ok(()) |
| 4913 | } |
| 4914 | |
| 4915 | #[test] |
| 4916 | fn test_impl_from_for_implicit_conversion_constructor() -> Result<()> { |
| 4917 | let ir = ir_from_cc( |
| 4918 | r#"#pragma clang lifetime_elision |
| 4919 | struct SomeStruct final { |
| 4920 | SomeStruct(int i); // implicit - no `explicit` keyword |
| 4921 | };"#, |
| 4922 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4923 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Lukasz Anforowicz | 71716b7 | 2022-01-26 17:05:05 +0000 | [diff] [blame] | 4924 | // As discussed in b/214020567 we generate `From::from` bindings for |
| 4925 | // *implicit* C++ conversion constructors. |
| 4926 | assert_rs_matches!( |
| 4927 | rs_api, |
| 4928 | quote! { |
| 4929 | impl From<i32> for SomeStruct { |
| 4930 | #[inline(always)] |
| 4931 | fn from(i: i32) -> Self { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 4932 | let mut tmp = crate::rust_std::mem::MaybeUninit::<Self>::zeroed(); |
Lukasz Anforowicz | 71716b7 | 2022-01-26 17:05:05 +0000 | [diff] [blame] | 4933 | unsafe { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 4934 | crate::detail::__rust_thunk___ZN10SomeStructC1Ei(&mut tmp, i); |
Lukasz Anforowicz | 71716b7 | 2022-01-26 17:05:05 +0000 | [diff] [blame] | 4935 | tmp.assume_init() |
| 4936 | } |
| 4937 | } |
| 4938 | } |
| 4939 | } |
| 4940 | ); |
| 4941 | Ok(()) |
| 4942 | } |
| 4943 | |
| 4944 | #[test] |
Lukasz Anforowicz | 5e62378 | 2022-03-14 16:52:23 +0000 | [diff] [blame] | 4945 | fn test_impl_from_for_implicit_conversion_from_reference() -> Result<()> { |
| 4946 | let ir = ir_from_cc( |
| 4947 | r#"#pragma clang lifetime_elision |
| 4948 | struct SomeOtherStruct final { int i; }; |
| 4949 | struct StructUnderTest final { |
| 4950 | StructUnderTest(const SomeOtherStruct& other); // implicit - no `explicit` keyword |
| 4951 | };"#, |
| 4952 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4953 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Lukasz Anforowicz | 5e62378 | 2022-03-14 16:52:23 +0000 | [diff] [blame] | 4954 | // This is a regression test for b/223800038: We want to ensure that the |
| 4955 | // code says `impl<'b>` (instead of incorrectly declaring that lifetime |
| 4956 | // in `fn from<'b>`). |
| 4957 | assert_rs_matches!( |
| 4958 | rs_api, |
| 4959 | quote! { |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 4960 | impl<'b> From<&'b crate::SomeOtherStruct> for StructUnderTest { |
Lukasz Anforowicz | 5e62378 | 2022-03-14 16:52:23 +0000 | [diff] [blame] | 4961 | #[inline(always)] |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 4962 | fn from(other: &'b crate::SomeOtherStruct) -> Self { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 4963 | let mut tmp = crate::rust_std::mem::MaybeUninit::<Self>::zeroed(); |
Lukasz Anforowicz | 5e62378 | 2022-03-14 16:52:23 +0000 | [diff] [blame] | 4964 | unsafe { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 4965 | crate::detail::__rust_thunk___ZN15StructUnderTestC1ERK15SomeOtherStruct( |
Lukasz Anforowicz | 5e62378 | 2022-03-14 16:52:23 +0000 | [diff] [blame] | 4966 | &mut tmp, other); |
| 4967 | tmp.assume_init() |
| 4968 | } |
| 4969 | } |
| 4970 | } |
| 4971 | }, |
| 4972 | ); |
| 4973 | Ok(()) |
| 4974 | } |
| 4975 | |
| 4976 | #[test] |
Lukasz Anforowicz | 732ca64 | 2022-02-03 20:58:38 +0000 | [diff] [blame] | 4977 | fn test_impl_eq_for_member_function() -> Result<()> { |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 4978 | let ir = ir_from_cc( |
| 4979 | r#"#pragma clang lifetime_elision |
| 4980 | struct SomeStruct final { |
| 4981 | inline bool operator==(const SomeStruct& other) const { |
| 4982 | return i == other.i; |
| 4983 | } |
| 4984 | int i; |
| 4985 | };"#, |
| 4986 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 4987 | let BindingsTokens { rs_api, rs_api_impl } = generate_bindings_tokens(&ir)?; |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 4988 | assert_rs_matches!( |
| 4989 | rs_api, |
| 4990 | quote! { |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 4991 | impl PartialEq<crate::SomeStruct> for SomeStruct { |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 4992 | #[inline(always)] |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 4993 | fn eq<'a, 'b>(&'a self, other: &'b crate::SomeStruct) -> bool { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 4994 | unsafe { crate::detail::__rust_thunk___ZNK10SomeStructeqERKS_(self, other) } |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 4995 | } |
| 4996 | } |
| 4997 | } |
| 4998 | ); |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 4999 | assert_cc_matches!( |
| 5000 | rs_api_impl, |
| 5001 | quote! { |
| 5002 | extern "C" bool __rust_thunk___ZNK10SomeStructeqERKS_( |
| 5003 | const class SomeStruct* __this, const class SomeStruct& other) { |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 5004 | return __this->operator==(std::forward<decltype(other)>(other)); |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 5005 | } |
| 5006 | } |
| 5007 | ); |
| 5008 | Ok(()) |
| 5009 | } |
| 5010 | |
| 5011 | #[test] |
Lukasz Anforowicz | 732ca64 | 2022-02-03 20:58:38 +0000 | [diff] [blame] | 5012 | fn test_impl_eq_for_free_function() -> Result<()> { |
| 5013 | let ir = ir_from_cc( |
| 5014 | r#"#pragma clang lifetime_elision |
| 5015 | struct SomeStruct final { int i; }; |
| 5016 | bool operator==(const SomeStruct& lhs, const SomeStruct& rhs) { |
| 5017 | return lhs.i == rhs.i; |
| 5018 | }"#, |
| 5019 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5020 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Lukasz Anforowicz | 732ca64 | 2022-02-03 20:58:38 +0000 | [diff] [blame] | 5021 | assert_rs_matches!( |
| 5022 | rs_api, |
| 5023 | quote! { |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 5024 | impl PartialEq<crate::SomeStruct> for SomeStruct { |
Lukasz Anforowicz | 732ca64 | 2022-02-03 20:58:38 +0000 | [diff] [blame] | 5025 | #[inline(always)] |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 5026 | fn eq<'a, 'b>(&'a self, rhs: &'b crate::SomeStruct) -> bool { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 5027 | unsafe { crate::detail::__rust_thunk___ZeqRK10SomeStructS1_(self, rhs) } |
Lukasz Anforowicz | 732ca64 | 2022-02-03 20:58:38 +0000 | [diff] [blame] | 5028 | } |
| 5029 | } |
| 5030 | } |
| 5031 | ); |
| 5032 | Ok(()) |
| 5033 | } |
| 5034 | |
| 5035 | #[test] |
Devin Jeanpierre | 9ced4ef | 2022-06-08 12:39:10 -0700 | [diff] [blame^] | 5036 | fn test_assign() -> Result<()> { |
| 5037 | let ir = ir_from_cc( |
| 5038 | r#" |
| 5039 | #pragma clang lifetime_elision |
| 5040 | struct SomeStruct { |
| 5041 | SomeStruct& operator=(const SomeStruct& other); |
| 5042 | };"#, |
| 5043 | )?; |
| 5044 | let BindingsTokens { rs_api, .. } = generate_bindings_tokens(&ir)?; |
| 5045 | assert_rs_matches!( |
| 5046 | rs_api, |
| 5047 | quote! { |
| 5048 | impl<'b> ::ctor::Assign<&'b crate::SomeStruct> for SomeStruct { |
| 5049 | #[inline(always)] |
| 5050 | fn assign<'a>(self: crate::rust_std::pin::Pin<&'a mut Self>, other: &'b crate::SomeStruct) { |
| 5051 | unsafe { |
| 5052 | crate::detail::__rust_thunk___ZN10SomeStructaSERKS_(self, other); |
| 5053 | } |
| 5054 | } |
| 5055 | } |
| 5056 | } |
| 5057 | ); |
| 5058 | Ok(()) |
| 5059 | } |
| 5060 | |
| 5061 | #[test] |
| 5062 | fn test_assign_nonreference_other() -> Result<()> { |
| 5063 | let ir = ir_from_cc( |
| 5064 | r#" |
| 5065 | #pragma clang lifetime_elision |
| 5066 | struct SomeStruct { |
| 5067 | SomeStruct& operator=(int other); |
| 5068 | };"#, |
| 5069 | )?; |
| 5070 | let BindingsTokens { rs_api, .. } = generate_bindings_tokens(&ir)?; |
| 5071 | assert_rs_matches!( |
| 5072 | rs_api, |
| 5073 | quote! { |
| 5074 | impl<'b> ::ctor::Assign<&'b crate::SomeStruct> for SomeStruct { |
| 5075 | #[inline(always)] |
| 5076 | fn assign<'a>(self: crate::rust_std::pin::Pin<&'a mut Self>, __param_0: &'b crate::SomeStruct) { |
| 5077 | unsafe { |
| 5078 | crate::detail::__rust_thunk___ZN10SomeStructaSERKS_(self, __param_0); |
| 5079 | } |
| 5080 | } |
| 5081 | } |
| 5082 | } |
| 5083 | ); |
| 5084 | Ok(()) |
| 5085 | } |
| 5086 | |
| 5087 | #[test] |
| 5088 | fn test_assign_nonreference_return() -> Result<()> { |
| 5089 | let ir = ir_from_cc( |
| 5090 | r#" |
| 5091 | #pragma clang lifetime_elision |
| 5092 | struct SomeStruct { |
| 5093 | int operator=(const SomeStruct& other); |
| 5094 | };"#, |
| 5095 | )?; |
| 5096 | let BindingsTokens { rs_api, .. } = generate_bindings_tokens(&ir)?; |
| 5097 | assert_rs_matches!( |
| 5098 | rs_api, |
| 5099 | quote! { |
| 5100 | impl<'b> ::ctor::Assign<&'b crate::SomeStruct> for SomeStruct { |
| 5101 | #[inline(always)] |
| 5102 | fn assign<'a>(self: crate::rust_std::pin::Pin<&'a mut Self>, other: &'b crate::SomeStruct) { |
| 5103 | unsafe { |
| 5104 | crate::detail::__rust_thunk___ZN10SomeStructaSERKS_(self, other); |
| 5105 | } |
| 5106 | } |
| 5107 | } |
| 5108 | } |
| 5109 | ); |
| 5110 | Ok(()) |
| 5111 | } |
| 5112 | |
| 5113 | #[test] |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 5114 | fn test_impl_eq_non_const_member_function() -> Result<()> { |
| 5115 | let ir = ir_from_cc( |
| 5116 | r#"#pragma clang lifetime_elision |
| 5117 | struct SomeStruct final { |
| 5118 | bool operator==(const SomeStruct& other) /* no `const` here */; |
| 5119 | };"#, |
| 5120 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5121 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 5122 | assert_rs_not_matches!(rs_api, quote! {impl PartialEq}); |
| 5123 | Ok(()) |
| 5124 | } |
| 5125 | |
| 5126 | #[test] |
| 5127 | fn test_impl_eq_rhs_by_value() -> Result<()> { |
| 5128 | let ir = ir_from_cc( |
| 5129 | r#"#pragma clang lifetime_elision |
| 5130 | struct SomeStruct final { |
| 5131 | bool operator==(SomeStruct other) const; |
| 5132 | };"#, |
| 5133 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5134 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Lukasz Anforowicz | fae90a1 | 2022-02-03 20:58:15 +0000 | [diff] [blame] | 5135 | assert_rs_not_matches!(rs_api, quote! {impl PartialEq}); |
| 5136 | Ok(()) |
| 5137 | } |
| 5138 | |
| 5139 | #[test] |
Dmitri Gribenko | 67cbfd2 | 2022-03-24 13:39:34 +0000 | [diff] [blame] | 5140 | fn test_thunk_ident_function() -> Result<()> { |
| 5141 | let ir = ir_from_cc("inline int foo() {}")?; |
| 5142 | let func = retrieve_func(&ir, "foo"); |
| 5143 | assert_eq!(thunk_ident(func), make_rs_ident("__rust_thunk___Z3foov")); |
| 5144 | Ok(()) |
Devin Jeanpierre | 45cb116 | 2021-10-27 10:54:28 +0000 | [diff] [blame] | 5145 | } |
| 5146 | |
| 5147 | #[test] |
| 5148 | fn test_thunk_ident_special_names() { |
Marcel Hlopko | 4b13b96 | 2021-12-06 12:40:56 +0000 | [diff] [blame] | 5149 | let ir = ir_from_cc("struct Class {};").unwrap(); |
Devin Jeanpierre | 45cb116 | 2021-10-27 10:54:28 +0000 | [diff] [blame] | 5150 | |
Googler | 45ad275 | 2021-12-06 12:12:35 +0000 | [diff] [blame] | 5151 | let destructor = |
| 5152 | ir.functions().find(|f| f.name == UnqualifiedIdentifier::Destructor).unwrap(); |
Lukasz Anforowicz | dd9ae0f | 2022-02-17 15:52:53 +0000 | [diff] [blame] | 5153 | assert_eq!(thunk_ident(destructor), make_rs_ident("__rust_thunk___ZN5ClassD1Ev")); |
Devin Jeanpierre | 45cb116 | 2021-10-27 10:54:28 +0000 | [diff] [blame] | 5154 | |
Lukasz Anforowicz | 49b5bbc | 2022-02-04 23:40:10 +0000 | [diff] [blame] | 5155 | let default_constructor = ir |
| 5156 | .functions() |
| 5157 | .find(|f| f.name == UnqualifiedIdentifier::Constructor && f.params.len() == 1) |
| 5158 | .unwrap(); |
Lukasz Anforowicz | dd9ae0f | 2022-02-17 15:52:53 +0000 | [diff] [blame] | 5159 | assert_eq!(thunk_ident(default_constructor), make_rs_ident("__rust_thunk___ZN5ClassC1Ev")); |
Devin Jeanpierre | 45cb116 | 2021-10-27 10:54:28 +0000 | [diff] [blame] | 5160 | } |
Googler | 7cced42 | 2021-12-06 11:58:39 +0000 | [diff] [blame] | 5161 | |
| 5162 | #[test] |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 5163 | fn test_elided_lifetimes() -> Result<()> { |
Googler | 7cced42 | 2021-12-06 11:58:39 +0000 | [diff] [blame] | 5164 | let ir = ir_from_cc( |
| 5165 | r#"#pragma clang lifetime_elision |
Devin Jeanpierre | 88343c7 | 2022-01-15 01:10:23 +0000 | [diff] [blame] | 5166 | struct S final { |
Googler | 7cced42 | 2021-12-06 11:58:39 +0000 | [diff] [blame] | 5167 | int& f(int& i); |
| 5168 | };"#, |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 5169 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5170 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 5171 | assert_rs_matches!( |
| 5172 | rs_api, |
| 5173 | quote! { |
Lukasz Anforowicz | 231a3bb | 2022-01-12 14:05:59 +0000 | [diff] [blame] | 5174 | pub fn f<'a, 'b>(&'a mut self, i: &'b mut i32) -> &'a mut i32 { ... } |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 5175 | } |
Googler | 7cced42 | 2021-12-06 11:58:39 +0000 | [diff] [blame] | 5176 | ); |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 5177 | assert_rs_matches!( |
| 5178 | rs_api, |
| 5179 | quote! { |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 5180 | pub(crate) fn __rust_thunk___ZN1S1fERi<'a, 'b>(__this: &'a mut crate::S, i: &'b mut i32) |
Googler | 6804a01 | 2022-01-05 07:04:36 +0000 | [diff] [blame] | 5181 | -> &'a mut i32; |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 5182 | } |
Googler | 7cced42 | 2021-12-06 11:58:39 +0000 | [diff] [blame] | 5183 | ); |
Marcel Hlopko | 8954775 | 2021-12-10 09:39:41 +0000 | [diff] [blame] | 5184 | Ok(()) |
Googler | 7cced42 | 2021-12-06 11:58:39 +0000 | [diff] [blame] | 5185 | } |
Lukasz Anforowicz | daff040 | 2021-12-23 00:37:50 +0000 | [diff] [blame] | 5186 | |
| 5187 | #[test] |
Googler | 386e594 | 2022-02-24 08:53:29 +0000 | [diff] [blame] | 5188 | fn test_annotated_lifetimes() -> Result<()> { |
| 5189 | let ir = ir_from_cc( |
| 5190 | r#"[[clang::annotate("lifetimes", "a, a -> a")]] |
| 5191 | int& f(int& i1, int& i2); |
| 5192 | "#, |
| 5193 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5194 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Googler | 386e594 | 2022-02-24 08:53:29 +0000 | [diff] [blame] | 5195 | assert_rs_matches!( |
| 5196 | rs_api, |
| 5197 | quote! { |
| 5198 | pub fn f<'a>(i1: &'a mut i32, i2: &'a mut i32) -> &'a mut i32 { ... } |
| 5199 | } |
| 5200 | ); |
| 5201 | assert_rs_matches!( |
| 5202 | rs_api, |
| 5203 | quote! { |
| 5204 | pub(crate) fn __rust_thunk___Z1fRiS_<'a>(i1: &'a mut i32, i2: &'a mut i32) |
| 5205 | -> &'a mut i32; |
| 5206 | } |
| 5207 | ); |
| 5208 | Ok(()) |
| 5209 | } |
| 5210 | |
| 5211 | #[test] |
Lukasz Anforowicz | daff040 | 2021-12-23 00:37:50 +0000 | [diff] [blame] | 5212 | fn test_format_generic_params() -> Result<()> { |
| 5213 | assert_rs_matches!(format_generic_params(std::iter::empty::<syn::Ident>()), quote! {}); |
| 5214 | |
Marcel Hlopko | eaae9b7 | 2022-01-21 15:54:11 +0000 | [diff] [blame] | 5215 | let idents = ["T1", "T2"].iter().map(|s| make_rs_ident(s)); |
Lukasz Anforowicz | daff040 | 2021-12-23 00:37:50 +0000 | [diff] [blame] | 5216 | assert_rs_matches!(format_generic_params(idents), quote! { < T1, T2 > }); |
| 5217 | |
| 5218 | let lifetimes = ["a", "b"] |
| 5219 | .iter() |
| 5220 | .map(|s| syn::Lifetime::new(&format!("'{}", s), proc_macro2::Span::call_site())); |
| 5221 | assert_rs_matches!(format_generic_params(lifetimes), quote! { < 'a, 'b > }); |
| 5222 | |
| 5223 | Ok(()) |
| 5224 | } |
Googler | d03d05b | 2022-01-07 10:10:57 +0000 | [diff] [blame] | 5225 | |
| 5226 | #[test] |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 5227 | fn test_format_tuple_except_singleton() { |
| 5228 | fn format(xs: &[TokenStream]) -> TokenStream { |
| 5229 | format_tuple_except_singleton(xs) |
| 5230 | } |
| 5231 | assert_rs_matches!(format(&[]), quote! {()}); |
| 5232 | assert_rs_matches!(format(&[quote! {a}]), quote! {a}); |
| 5233 | assert_rs_matches!(format(&[quote! {a}, quote! {b}]), quote! {(a, b)}); |
| 5234 | } |
| 5235 | |
| 5236 | #[test] |
Googler | d03d05b | 2022-01-07 10:10:57 +0000 | [diff] [blame] | 5237 | fn test_overloaded_functions() -> Result<()> { |
| 5238 | // TODO(b/213280424): We don't support creating bindings for overloaded |
| 5239 | // functions yet, except in the case of overloaded constructors with a |
| 5240 | // single parameter. |
| 5241 | let ir = ir_from_cc( |
Lukasz Anforowicz | 55673c9 | 2022-01-27 19:37:26 +0000 | [diff] [blame] | 5242 | r#" #pragma clang lifetime_elision |
| 5243 | void f(); |
Googler | d03d05b | 2022-01-07 10:10:57 +0000 | [diff] [blame] | 5244 | void f(int i); |
Devin Jeanpierre | 88343c7 | 2022-01-15 01:10:23 +0000 | [diff] [blame] | 5245 | struct S1 final { |
Googler | d03d05b | 2022-01-07 10:10:57 +0000 | [diff] [blame] | 5246 | void f(); |
| 5247 | void f(int i); |
| 5248 | }; |
Devin Jeanpierre | 88343c7 | 2022-01-15 01:10:23 +0000 | [diff] [blame] | 5249 | struct S2 final { |
Googler | d03d05b | 2022-01-07 10:10:57 +0000 | [diff] [blame] | 5250 | void f(); |
| 5251 | }; |
Devin Jeanpierre | 88343c7 | 2022-01-15 01:10:23 +0000 | [diff] [blame] | 5252 | struct S3 final { |
Googler | d03d05b | 2022-01-07 10:10:57 +0000 | [diff] [blame] | 5253 | S3(int i); |
| 5254 | S3(double d); |
| 5255 | }; |
| 5256 | "#, |
| 5257 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5258 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Googler | d03d05b | 2022-01-07 10:10:57 +0000 | [diff] [blame] | 5259 | let rs_api_str = tokens_to_string(rs_api.clone())?; |
| 5260 | |
| 5261 | // Cannot overload free functions. |
| 5262 | assert!(rs_api_str.contains("Error while generating bindings for item 'f'")); |
| 5263 | assert_rs_not_matches!(rs_api, quote! {pub fn f()}); |
| 5264 | assert_rs_not_matches!(rs_api, quote! {pub fn f(i: i32)}); |
| 5265 | |
| 5266 | // Cannot overload member functions. |
| 5267 | assert!(rs_api_str.contains("Error while generating bindings for item 'S1::f'")); |
| 5268 | assert_rs_not_matches!(rs_api, quote! {pub fn f(... S1 ...)}); |
| 5269 | |
| 5270 | // But we can import member functions that have the same name as a free |
| 5271 | // function. |
Lukasz Anforowicz | 55673c9 | 2022-01-27 19:37:26 +0000 | [diff] [blame] | 5272 | assert_rs_matches!(rs_api, quote! {pub fn f<'a>(&'a mut self)}); |
Googler | d03d05b | 2022-01-07 10:10:57 +0000 | [diff] [blame] | 5273 | |
| 5274 | // We can also import overloaded single-parameter constructors. |
| 5275 | assert_rs_matches!(rs_api, quote! {impl From<i32> for S3}); |
| 5276 | assert_rs_matches!(rs_api, quote! {impl From<f64> for S3}); |
| 5277 | Ok(()) |
| 5278 | } |
Googler | dcca7f7 | 2022-01-10 12:30:43 +0000 | [diff] [blame] | 5279 | |
| 5280 | #[test] |
| 5281 | fn test_type_alias() -> Result<()> { |
| 5282 | let ir = ir_from_cc( |
| 5283 | r#" |
Lukasz Anforowicz | c503af4 | 2022-03-04 23:18:15 +0000 | [diff] [blame] | 5284 | // MyTypedefDecl doc comment |
Googler | dcca7f7 | 2022-01-10 12:30:43 +0000 | [diff] [blame] | 5285 | typedef int MyTypedefDecl; |
Lukasz Anforowicz | c503af4 | 2022-03-04 23:18:15 +0000 | [diff] [blame] | 5286 | |
Googler | dcca7f7 | 2022-01-10 12:30:43 +0000 | [diff] [blame] | 5287 | using MyTypeAliasDecl = int; |
Googler | 6a0a525 | 2022-01-11 14:08:09 +0000 | [diff] [blame] | 5288 | using MyTypeAliasDecl_Alias = MyTypeAliasDecl; |
| 5289 | |
Devin Jeanpierre | 88343c7 | 2022-01-15 01:10:23 +0000 | [diff] [blame] | 5290 | struct S final {}; |
Googler | 6a0a525 | 2022-01-11 14:08:09 +0000 | [diff] [blame] | 5291 | using S_Alias = S; |
| 5292 | using S_Alias_Alias = S_Alias; |
| 5293 | |
| 5294 | inline void f(MyTypedefDecl t) {} |
Googler | dcca7f7 | 2022-01-10 12:30:43 +0000 | [diff] [blame] | 5295 | "#, |
| 5296 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5297 | let BindingsTokens { rs_api, rs_api_impl } = generate_bindings_tokens(&ir)?; |
Lukasz Anforowicz | c503af4 | 2022-03-04 23:18:15 +0000 | [diff] [blame] | 5298 | assert_rs_matches!( |
| 5299 | rs_api, |
| 5300 | quote! { |
| 5301 | #[doc = " MyTypedefDecl doc comment"] |
| 5302 | pub type MyTypedefDecl = i32; |
| 5303 | } |
| 5304 | ); |
Googler | 6a0a525 | 2022-01-11 14:08:09 +0000 | [diff] [blame] | 5305 | assert_rs_matches!(rs_api, quote! { pub type MyTypeAliasDecl = i32; }); |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 5306 | assert_rs_matches!( |
| 5307 | rs_api, |
| 5308 | quote! { pub type MyTypeAliasDecl_Alias = crate::MyTypeAliasDecl; } |
| 5309 | ); |
| 5310 | assert_rs_matches!(rs_api, quote! { pub type S_Alias = crate::S; }); |
| 5311 | assert_rs_matches!(rs_api, quote! { pub type S_Alias_Alias = crate::S_Alias; }); |
| 5312 | assert_rs_matches!(rs_api, quote! { pub fn f(t: crate::MyTypedefDecl) }); |
Googler | 6a0a525 | 2022-01-11 14:08:09 +0000 | [diff] [blame] | 5313 | assert_cc_matches!( |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5314 | rs_api_impl, |
Googler | 6a0a525 | 2022-01-11 14:08:09 +0000 | [diff] [blame] | 5315 | quote! { |
Devin Jeanpierre | deea789 | 2022-03-29 02:13:31 -0700 | [diff] [blame] | 5316 | extern "C" void __rust_thunk___Z1fi(MyTypedefDecl t){ f (std::forward<decltype(t)>(t)) ; } |
Googler | 6a0a525 | 2022-01-11 14:08:09 +0000 | [diff] [blame] | 5317 | } |
| 5318 | ); |
Googler | dcca7f7 | 2022-01-10 12:30:43 +0000 | [diff] [blame] | 5319 | Ok(()) |
| 5320 | } |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 5321 | |
| 5322 | #[test] |
| 5323 | fn test_rs_type_kind_implements_copy() -> Result<()> { |
Lukasz Anforowicz | 20651e3 | 2022-02-10 14:52:15 +0000 | [diff] [blame] | 5324 | let template = r#" LIFETIMES |
Devin Jeanpierre | 88343c7 | 2022-01-15 01:10:23 +0000 | [diff] [blame] | 5325 | struct [[clang::trivial_abi]] TrivialStruct final { int i; }; |
| 5326 | struct [[clang::trivial_abi]] UserDefinedCopyConstructor final { |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 5327 | UserDefinedCopyConstructor(const UserDefinedCopyConstructor&); |
| 5328 | }; |
| 5329 | using IntAlias = int; |
| 5330 | using TrivialAlias = TrivialStruct; |
| 5331 | using NonTrivialAlias = UserDefinedCopyConstructor; |
| 5332 | void func(PARAM_TYPE some_param); |
| 5333 | "#; |
| 5334 | assert_impl_all!(i32: Copy); |
| 5335 | assert_impl_all!(&i32: Copy); |
| 5336 | assert_not_impl_all!(&mut i32: Copy); |
Lukasz Anforowicz | 20651e3 | 2022-02-10 14:52:15 +0000 | [diff] [blame] | 5337 | assert_impl_all!(Option<&i32>: Copy); |
| 5338 | assert_not_impl_all!(Option<&mut i32>: Copy); |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 5339 | assert_impl_all!(*const i32: Copy); |
| 5340 | assert_impl_all!(*mut i32: Copy); |
Lukasz Anforowicz | 20651e3 | 2022-02-10 14:52:15 +0000 | [diff] [blame] | 5341 | struct Test { |
| 5342 | // Test inputs: |
| 5343 | cc: &'static str, |
| 5344 | lifetimes: bool, |
| 5345 | // Expected test outputs: |
| 5346 | rs: &'static str, |
| 5347 | is_copy: bool, |
| 5348 | } |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 5349 | let tests = vec![ |
| 5350 | // Validity of the next few tests is verified via |
| 5351 | // `assert_[not_]impl_all!` static assertions above. |
Lukasz Anforowicz | 20651e3 | 2022-02-10 14:52:15 +0000 | [diff] [blame] | 5352 | Test { cc: "int", lifetimes: true, rs: "i32", is_copy: true }, |
| 5353 | Test { cc: "const int&", lifetimes: true, rs: "&'a i32", is_copy: true }, |
| 5354 | Test { cc: "int&", lifetimes: true, rs: "&'a mut i32", is_copy: false }, |
| 5355 | Test { cc: "const int*", lifetimes: true, rs: "Option<&'a i32>", is_copy: true }, |
| 5356 | Test { cc: "int*", lifetimes: true, rs: "Option<&'a mut i32>", is_copy: false }, |
| 5357 | Test { cc: "const int*", lifetimes: false, rs: "*const i32", is_copy: true }, |
| 5358 | Test { cc: "int*", lifetimes: false, rs: "*mut i32", is_copy: true }, |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 5359 | // Tests below have been thought-through and verified "manually". |
Lukasz Anforowicz | 20651e3 | 2022-02-10 14:52:15 +0000 | [diff] [blame] | 5360 | // TrivialStruct is expected to derive Copy. |
Marcel Hlopko | 3623489 | 2022-05-10 00:39:54 -0700 | [diff] [blame] | 5361 | Test { |
| 5362 | cc: "TrivialStruct", |
| 5363 | lifetimes: true, |
| 5364 | rs: "crate::TrivialStruct", |
| 5365 | is_copy: true, |
| 5366 | }, |
Lukasz Anforowicz | 20651e3 | 2022-02-10 14:52:15 +0000 | [diff] [blame] | 5367 | Test { |
| 5368 | cc: "UserDefinedCopyConstructor", |
| 5369 | lifetimes: true, |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 5370 | rs: "crate::UserDefinedCopyConstructor", |
Lukasz Anforowicz | 20651e3 | 2022-02-10 14:52:15 +0000 | [diff] [blame] | 5371 | is_copy: false, |
| 5372 | }, |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 5373 | Test { cc: "IntAlias", lifetimes: true, rs: "crate::IntAlias", is_copy: true }, |
| 5374 | Test { cc: "TrivialAlias", lifetimes: true, rs: "crate::TrivialAlias", is_copy: true }, |
Marcel Hlopko | 3623489 | 2022-05-10 00:39:54 -0700 | [diff] [blame] | 5375 | Test { |
| 5376 | cc: "NonTrivialAlias", |
| 5377 | lifetimes: true, |
| 5378 | rs: "crate::NonTrivialAlias", |
| 5379 | is_copy: false, |
| 5380 | }, |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 5381 | ]; |
Lukasz Anforowicz | 20651e3 | 2022-02-10 14:52:15 +0000 | [diff] [blame] | 5382 | for test in tests.iter() { |
| 5383 | let test_name = format!("cc='{}', lifetimes={}", test.cc, test.lifetimes); |
| 5384 | let cc_input = template.replace("PARAM_TYPE", test.cc).replace( |
| 5385 | "LIFETIMES", |
| 5386 | if test.lifetimes { "#pragma clang lifetime_elision" } else { "" }, |
| 5387 | ); |
| 5388 | let ir = ir_from_cc(&cc_input)?; |
Lukasz Anforowicz | 9c663ca | 2022-02-09 01:33:31 +0000 | [diff] [blame] | 5389 | let f = retrieve_func(&ir, "func"); |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 5390 | let t = RsTypeKind::new(&f.params[0].type_.rs_type, &ir)?; |
Lukasz Anforowicz | 20651e3 | 2022-02-10 14:52:15 +0000 | [diff] [blame] | 5391 | |
Devin Jeanpierre | 92ca261 | 2022-04-06 11:35:13 -0700 | [diff] [blame] | 5392 | let fmt = tokens_to_string(t.to_token_stream())?; |
Lukasz Anforowicz | 20651e3 | 2022-02-10 14:52:15 +0000 | [diff] [blame] | 5393 | assert_eq!(test.rs, fmt, "Testing: {}", test_name); |
| 5394 | |
| 5395 | assert_eq!(test.is_copy, t.implements_copy(), "Testing: {}", test_name); |
Lukasz Anforowicz | e57215c | 2022-01-12 14:54:16 +0000 | [diff] [blame] | 5396 | } |
| 5397 | Ok(()) |
| 5398 | } |
Lukasz Anforowicz | a94ab70 | 2022-01-14 22:40:25 +0000 | [diff] [blame] | 5399 | |
| 5400 | #[test] |
| 5401 | fn test_rs_type_kind_is_shared_ref_to_with_lifetimes() -> Result<()> { |
| 5402 | let ir = ir_from_cc( |
| 5403 | "#pragma clang lifetime_elision |
| 5404 | struct SomeStruct {}; |
| 5405 | void foo(const SomeStruct& foo_param); |
| 5406 | void bar(SomeStruct& bar_param);", |
| 5407 | )?; |
| 5408 | let record = ir.records().next().unwrap(); |
Lukasz Anforowicz | 9c663ca | 2022-02-09 01:33:31 +0000 | [diff] [blame] | 5409 | let foo_func = retrieve_func(&ir, "foo"); |
| 5410 | let bar_func = retrieve_func(&ir, "bar"); |
Lukasz Anforowicz | a94ab70 | 2022-01-14 22:40:25 +0000 | [diff] [blame] | 5411 | |
| 5412 | // const-ref + lifetimes in C++ ===> shared-ref in Rust |
| 5413 | assert_eq!(foo_func.params.len(), 1); |
| 5414 | let foo_param = &foo_func.params[0]; |
| 5415 | assert_eq!(&foo_param.identifier.identifier, "foo_param"); |
| 5416 | let foo_type = RsTypeKind::new(&foo_param.type_.rs_type, &ir)?; |
| 5417 | assert!(foo_type.is_shared_ref_to(record)); |
| 5418 | assert!(matches!(foo_type, RsTypeKind::Reference { mutability: Mutability::Const, .. })); |
| 5419 | |
| 5420 | // non-const-ref + lifetimes in C++ ===> mutable-ref in Rust |
| 5421 | assert_eq!(bar_func.params.len(), 1); |
| 5422 | let bar_param = &bar_func.params[0]; |
| 5423 | assert_eq!(&bar_param.identifier.identifier, "bar_param"); |
| 5424 | let bar_type = RsTypeKind::new(&bar_param.type_.rs_type, &ir)?; |
| 5425 | assert!(!bar_type.is_shared_ref_to(record)); |
| 5426 | assert!(matches!(bar_type, RsTypeKind::Reference { mutability: Mutability::Mut, .. })); |
| 5427 | |
| 5428 | Ok(()) |
| 5429 | } |
| 5430 | |
| 5431 | #[test] |
| 5432 | fn test_rs_type_kind_is_shared_ref_to_without_lifetimes() -> Result<()> { |
| 5433 | let ir = ir_from_cc( |
| 5434 | "struct SomeStruct {}; |
| 5435 | void foo(const SomeStruct& foo_param);", |
| 5436 | )?; |
| 5437 | let record = ir.records().next().unwrap(); |
Lukasz Anforowicz | 9c663ca | 2022-02-09 01:33:31 +0000 | [diff] [blame] | 5438 | let foo_func = retrieve_func(&ir, "foo"); |
Lukasz Anforowicz | a94ab70 | 2022-01-14 22:40:25 +0000 | [diff] [blame] | 5439 | |
| 5440 | // const-ref + *no* lifetimes in C++ ===> const-pointer in Rust |
| 5441 | assert_eq!(foo_func.params.len(), 1); |
| 5442 | let foo_param = &foo_func.params[0]; |
| 5443 | assert_eq!(&foo_param.identifier.identifier, "foo_param"); |
| 5444 | let foo_type = RsTypeKind::new(&foo_param.type_.rs_type, &ir)?; |
| 5445 | assert!(!foo_type.is_shared_ref_to(record)); |
| 5446 | assert!(matches!(foo_type, RsTypeKind::Pointer { mutability: Mutability::Const, .. })); |
| 5447 | |
| 5448 | Ok(()) |
| 5449 | } |
Marcel Hlopko | eaae9b7 | 2022-01-21 15:54:11 +0000 | [diff] [blame] | 5450 | |
| 5451 | #[test] |
Lukasz Anforowicz | 90bdb96 | 2022-02-14 21:07:45 +0000 | [diff] [blame] | 5452 | fn test_rs_type_kind_dfs_iter_ordering() { |
| 5453 | // Set up a test input representing: A<B<C>, D<E>>. |
| 5454 | let a = { |
| 5455 | let b = { |
| 5456 | let c = RsTypeKind::Other { name: "C", type_args: vec![] }; |
| 5457 | RsTypeKind::Other { name: "B", type_args: vec![c] } |
| 5458 | }; |
| 5459 | let d = { |
| 5460 | let e = RsTypeKind::Other { name: "E", type_args: vec![] }; |
| 5461 | RsTypeKind::Other { name: "D", type_args: vec![e] } |
| 5462 | }; |
| 5463 | RsTypeKind::Other { name: "A", type_args: vec![b, d] } |
| 5464 | }; |
| 5465 | let dfs_names = a |
| 5466 | .dfs_iter() |
| 5467 | .map(|t| match t { |
| 5468 | RsTypeKind::Other { name, .. } => *name, |
| 5469 | _ => unreachable!("Only 'other' types are used in this test"), |
| 5470 | }) |
| 5471 | .collect_vec(); |
| 5472 | assert_eq!(vec!["A", "B", "C", "D", "E"], dfs_names); |
| 5473 | } |
| 5474 | |
| 5475 | #[test] |
Lukasz Anforowicz | cf230fd | 2022-02-18 19:20:39 +0000 | [diff] [blame] | 5476 | fn test_rs_type_kind_dfs_iter_ordering_for_func_ptr() { |
| 5477 | // Set up a test input representing: fn(A, B) -> C |
| 5478 | let f = { |
| 5479 | let a = RsTypeKind::Other { name: "A", type_args: vec![] }; |
| 5480 | let b = RsTypeKind::Other { name: "B", type_args: vec![] }; |
| 5481 | let c = RsTypeKind::Other { name: "C", type_args: vec![] }; |
| 5482 | RsTypeKind::FuncPtr { abi: "blah", param_types: vec![a, b], return_type: Box::new(c) } |
| 5483 | }; |
| 5484 | let dfs_names = f |
| 5485 | .dfs_iter() |
| 5486 | .map(|t| match t { |
| 5487 | RsTypeKind::FuncPtr { .. } => "fn", |
| 5488 | RsTypeKind::Other { name, .. } => *name, |
| 5489 | _ => unreachable!("Only FuncPtr and Other kinds are used in this test"), |
| 5490 | }) |
| 5491 | .collect_vec(); |
| 5492 | assert_eq!(vec!["fn", "A", "B", "C"], dfs_names); |
| 5493 | } |
| 5494 | |
| 5495 | #[test] |
Lukasz Anforowicz | 90bdb96 | 2022-02-14 21:07:45 +0000 | [diff] [blame] | 5496 | fn test_rs_type_kind_lifetimes() -> Result<()> { |
| 5497 | let ir = ir_from_cc( |
| 5498 | r#" |
| 5499 | #pragma clang lifetime_elision |
| 5500 | using TypeAlias = int&; |
| 5501 | struct SomeStruct {}; |
Devin Jeanpierre | 48cb5bc | 2022-06-02 00:50:43 -0700 | [diff] [blame] | 5502 | void foo(int a, int& b, int&& c, int* d, int** e, TypeAlias f, SomeStruct g); "#, |
Lukasz Anforowicz | 90bdb96 | 2022-02-14 21:07:45 +0000 | [diff] [blame] | 5503 | )?; |
Devin Jeanpierre | 48cb5bc | 2022-06-02 00:50:43 -0700 | [diff] [blame] | 5504 | let func = retrieve_func(&ir, "foo"); |
| 5505 | let ret = RsTypeKind::new(&func.return_type.rs_type, &ir)?; |
| 5506 | let a = RsTypeKind::new(&func.params[0].type_.rs_type, &ir)?; |
| 5507 | let b = RsTypeKind::new(&func.params[1].type_.rs_type, &ir)?; |
| 5508 | let c = RsTypeKind::new(&func.params[2].type_.rs_type, &ir)?; |
| 5509 | let d = RsTypeKind::new(&func.params[3].type_.rs_type, &ir)?; |
| 5510 | let e = RsTypeKind::new(&func.params[4].type_.rs_type, &ir)?; |
| 5511 | let f = RsTypeKind::new(&func.params[5].type_.rs_type, &ir)?; |
| 5512 | let g = RsTypeKind::new(&func.params[6].type_.rs_type, &ir)?; |
Lukasz Anforowicz | 90bdb96 | 2022-02-14 21:07:45 +0000 | [diff] [blame] | 5513 | |
| 5514 | assert_eq!(0, ret.lifetimes().count()); // No lifetimes on `void`. |
| 5515 | assert_eq!(0, a.lifetimes().count()); // No lifetimes on `int`. |
| 5516 | assert_eq!(1, b.lifetimes().count()); // `&'a i32` has a single lifetime. |
Devin Jeanpierre | 48cb5bc | 2022-06-02 00:50:43 -0700 | [diff] [blame] | 5517 | assert_eq!(1, c.lifetimes().count()); // `RvalueReference<'a, i32>` has a single lifetime. |
| 5518 | assert_eq!(1, d.lifetimes().count()); // `Option<&'b i32>` has a single lifetime. |
| 5519 | assert_eq!(2, e.lifetimes().count()); // `&'c Option<&'d i32>` has two lifetimes. |
| 5520 | assert_eq!(1, f.lifetimes().count()); // Lifetime of underlying type should show through. |
| 5521 | assert_eq!(0, g.lifetimes().count()); // No lifetimes on structs (yet). |
Lukasz Anforowicz | 90bdb96 | 2022-02-14 21:07:45 +0000 | [diff] [blame] | 5522 | Ok(()) |
| 5523 | } |
| 5524 | |
| 5525 | #[test] |
| 5526 | fn test_rs_type_kind_lifetimes_raw_ptr() -> Result<()> { |
| 5527 | let ir = ir_from_cc("void foo(int* a);")?; |
| 5528 | let f = retrieve_func(&ir, "foo"); |
| 5529 | let a = RsTypeKind::new(&f.params[0].type_.rs_type, &ir)?; |
| 5530 | assert_eq!(0, a.lifetimes().count()); // No lifetimes on `int*`. |
| 5531 | Ok(()) |
| 5532 | } |
| 5533 | |
| 5534 | #[test] |
Marcel Hlopko | eaae9b7 | 2022-01-21 15:54:11 +0000 | [diff] [blame] | 5535 | fn test_rust_keywords_are_escaped_in_rs_api_file() -> Result<()> { |
| 5536 | let ir = ir_from_cc("struct type { int dyn; };")?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5537 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Marcel Hlopko | eaae9b7 | 2022-01-21 15:54:11 +0000 | [diff] [blame] | 5538 | assert_rs_matches!(rs_api, quote! { struct r#type { ... r#dyn: i32 ... } }); |
| 5539 | Ok(()) |
| 5540 | } |
| 5541 | |
| 5542 | #[test] |
| 5543 | fn test_rust_keywords_are_not_escaped_in_rs_api_impl_file() -> Result<()> { |
| 5544 | let ir = ir_from_cc("struct type { int dyn; };")?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5545 | let rs_api_impl = generate_bindings_tokens(&ir)?.rs_api_impl; |
Lukasz Anforowicz | 4ee9c22 | 2022-04-13 09:33:36 -0700 | [diff] [blame] | 5546 | assert_cc_matches!( |
| 5547 | rs_api_impl, |
| 5548 | quote! { static_assert(CRUBIT_OFFSET_OF(dyn, class type) ... ) } |
| 5549 | ); |
Marcel Hlopko | eaae9b7 | 2022-01-21 15:54:11 +0000 | [diff] [blame] | 5550 | Ok(()) |
| 5551 | } |
Marcel Hlopko | 14ee3c8 | 2022-02-09 09:46:23 +0000 | [diff] [blame] | 5552 | |
| 5553 | #[test] |
| 5554 | fn test_no_aligned_attr() { |
| 5555 | let ir = ir_from_cc("struct SomeStruct {};").unwrap(); |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5556 | let rs_api = generate_bindings_tokens(&ir).unwrap().rs_api; |
Marcel Hlopko | 14ee3c8 | 2022-02-09 09:46:23 +0000 | [diff] [blame] | 5557 | |
| 5558 | assert_rs_matches! {rs_api, quote! { |
| 5559 | #[repr(C)] |
| 5560 | pub struct SomeStruct { ... } |
| 5561 | }}; |
| 5562 | } |
| 5563 | |
| 5564 | #[test] |
| 5565 | fn test_aligned_attr() { |
| 5566 | let ir = ir_from_cc("struct SomeStruct {} __attribute__((aligned(64)));").unwrap(); |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5567 | let rs_api = generate_bindings_tokens(&ir).unwrap().rs_api; |
Marcel Hlopko | 14ee3c8 | 2022-02-09 09:46:23 +0000 | [diff] [blame] | 5568 | |
| 5569 | assert_rs_matches! {rs_api, quote! { |
| 5570 | #[repr(C, align(64))] |
| 5571 | pub struct SomeStruct { ... } |
| 5572 | } |
| 5573 | }; |
| 5574 | } |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5575 | |
| 5576 | /// !Unpin references should not be pinned. |
| 5577 | #[test] |
| 5578 | fn test_nonunpin_ref_param() -> Result<()> { |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5579 | let rs_api = generate_bindings_tokens(&ir_from_cc( |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5580 | r#" |
| 5581 | #pragma clang lifetime_elision |
| 5582 | struct S {~S();}; |
| 5583 | void Function(const S& s); |
| 5584 | "#, |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5585 | )?)? |
| 5586 | .rs_api; |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5587 | assert_rs_matches!( |
Devin Jeanpierre | 448322b | 2022-04-26 15:43:40 -0700 | [diff] [blame] | 5588 | rs_api, |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5589 | quote! { |
Rosica Dejanovska | 8283fe6 | 2022-05-09 10:04:28 -0700 | [diff] [blame] | 5590 | fn Function<'a>(s: &'a crate::S) { ... } |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5591 | } |
| 5592 | ); |
| 5593 | Ok(()) |
| 5594 | } |
| 5595 | |
| 5596 | /// !Unpin mut references must be pinned. |
| 5597 | #[test] |
| 5598 | fn test_nonunpin_mut_param() -> Result<()> { |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5599 | let rs_api = generate_bindings_tokens(&ir_from_cc( |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5600 | r#" |
| 5601 | #pragma clang lifetime_elision |
| 5602 | struct S {~S();}; |
| 5603 | void Function(S& s); |
| 5604 | "#, |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5605 | )?)? |
| 5606 | .rs_api; |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5607 | assert_rs_matches!( |
Devin Jeanpierre | 448322b | 2022-04-26 15:43:40 -0700 | [diff] [blame] | 5608 | rs_api, |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5609 | quote! { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 5610 | fn Function<'a>(s: crate::rust_std::pin::Pin<&'a mut crate::S>) { ... } |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5611 | } |
| 5612 | ); |
| 5613 | Ok(()) |
| 5614 | } |
| 5615 | |
| 5616 | /// !Unpin &self should not be pinned. |
| 5617 | #[test] |
| 5618 | fn test_nonunpin_ref_self() -> Result<()> { |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5619 | let rs_api = generate_bindings_tokens(&ir_from_cc( |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5620 | r#" |
| 5621 | #pragma clang lifetime_elision |
| 5622 | struct S { |
| 5623 | ~S(); |
| 5624 | void Function() const; |
| 5625 | }; |
| 5626 | "#, |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5627 | )?)? |
| 5628 | .rs_api; |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5629 | assert_rs_matches!( |
Devin Jeanpierre | 448322b | 2022-04-26 15:43:40 -0700 | [diff] [blame] | 5630 | rs_api, |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5631 | quote! { |
| 5632 | fn Function<'a>(&'a self) { ... } |
| 5633 | } |
| 5634 | ); |
| 5635 | Ok(()) |
| 5636 | } |
| 5637 | |
| 5638 | /// !Unpin &mut self must be pinned. |
| 5639 | #[test] |
| 5640 | fn test_nonunpin_mut_self() -> Result<()> { |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5641 | let rs_api = generate_bindings_tokens(&ir_from_cc( |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5642 | r#" |
| 5643 | #pragma clang lifetime_elision |
| 5644 | struct S { |
| 5645 | ~S(); |
| 5646 | void Function(); |
| 5647 | }; |
| 5648 | "#, |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5649 | )?)? |
| 5650 | .rs_api; |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5651 | assert_rs_matches!( |
Devin Jeanpierre | 448322b | 2022-04-26 15:43:40 -0700 | [diff] [blame] | 5652 | rs_api, |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5653 | quote! { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 5654 | fn Function<'a>(self: crate::rust_std::pin::Pin<&'a mut Self>) { ... } |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5655 | } |
| 5656 | ); |
| 5657 | Ok(()) |
| 5658 | } |
| 5659 | |
| 5660 | /// Drop::drop must not use self : Pin<...>. |
| 5661 | #[test] |
| 5662 | fn test_nonunpin_drop() -> Result<()> { |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5663 | let rs_api = generate_bindings_tokens(&ir_from_cc( |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5664 | r#" |
| 5665 | struct S {~S();}; |
| 5666 | "#, |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5667 | )?)? |
| 5668 | .rs_api; |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5669 | assert_rs_matches!( |
Devin Jeanpierre | 448322b | 2022-04-26 15:43:40 -0700 | [diff] [blame] | 5670 | rs_api, |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5671 | quote! { |
Devin Jeanpierre | 108e9c0 | 2022-06-02 07:10:09 -0700 | [diff] [blame] | 5672 | unsafe fn pinned_drop<'a>(self: crate::rust_std::pin::Pin<&'a mut Self>) { ... } |
Devin Jeanpierre | 149950d | 2022-02-22 21:02:02 +0000 | [diff] [blame] | 5673 | } |
| 5674 | ); |
| 5675 | Ok(()) |
| 5676 | } |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 5677 | |
| 5678 | #[test] |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 5679 | fn test_nonunpin_0_arg_constructor() -> Result<()> { |
| 5680 | let ir = ir_from_cc( |
| 5681 | r#"#pragma clang lifetime_elision |
| 5682 | // This type must be `!Unpin`. |
| 5683 | struct HasConstructor {explicit HasConstructor() {}};"#, |
| 5684 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5685 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 5686 | assert_rs_matches!(rs_api, quote! {#[ctor::recursively_pinned]}); |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 5687 | assert_rs_matches!( |
| 5688 | rs_api, |
| 5689 | quote! { |
| 5690 | impl ctor::CtorNew<()> for HasConstructor { |
| 5691 | type CtorType = impl ctor::Ctor<Output = Self>; |
| 5692 | |
| 5693 | #[inline (always)] |
| 5694 | fn ctor_new(args: ()) -> Self::CtorType { |
| 5695 | let () = args; |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 5696 | ctor::FnCtor::new(move |dest: crate::rust_std::pin::Pin<&mut crate::rust_std::mem::MaybeUninit<Self>>| { |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 5697 | unsafe { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 5698 | crate::detail::__rust_thunk___ZN14HasConstructorC1Ev(crate::rust_std::pin::Pin::into_inner_unchecked(dest)); |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 5699 | } |
| 5700 | }) |
| 5701 | } |
| 5702 | } |
| 5703 | } |
| 5704 | ); |
| 5705 | Ok(()) |
| 5706 | } |
| 5707 | |
| 5708 | #[test] |
| 5709 | fn test_nonunpin_1_arg_constructor() -> Result<()> { |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 5710 | let ir = ir_from_cc( |
| 5711 | r#"#pragma clang lifetime_elision |
| 5712 | // This type must be `!Unpin`. |
| 5713 | struct HasConstructor {explicit HasConstructor(unsigned char input) {}};"#, |
| 5714 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5715 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 5716 | assert_rs_matches!(rs_api, quote! {#[ctor::recursively_pinned]}); |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 5717 | assert_rs_matches!( |
| 5718 | rs_api, |
| 5719 | quote! { |
| 5720 | impl ctor::CtorNew<u8> for HasConstructor { |
| 5721 | type CtorType = impl ctor::Ctor<Output = Self>; |
| 5722 | |
| 5723 | #[inline (always)] |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 5724 | fn ctor_new(args: u8) -> Self::CtorType { |
| 5725 | let input = args; |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 5726 | ctor::FnCtor::new(move |dest: crate::rust_std::pin::Pin<&mut crate::rust_std::mem::MaybeUninit<Self>>| { |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 5727 | unsafe { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 5728 | crate::detail::__rust_thunk___ZN14HasConstructorC1Eh(crate::rust_std::pin::Pin::into_inner_unchecked(dest), input); |
Devin Jeanpierre | 6f60737 | 2022-03-22 21:34:38 +0000 | [diff] [blame] | 5729 | } |
| 5730 | }) |
| 5731 | } |
| 5732 | } |
| 5733 | } |
| 5734 | ); |
| 5735 | Ok(()) |
| 5736 | } |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 5737 | |
| 5738 | #[test] |
| 5739 | fn test_nonunpin_2_arg_constructor() -> Result<()> { |
| 5740 | let ir = ir_from_cc( |
| 5741 | r#"#pragma clang lifetime_elision |
| 5742 | // This type must be `!Unpin`. |
| 5743 | struct HasConstructor {explicit HasConstructor(unsigned char input1, signed char input2) {}};"#, |
| 5744 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5745 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Devin Jeanpierre | 215ee8e | 2022-05-16 16:09:41 -0700 | [diff] [blame] | 5746 | assert_rs_matches!(rs_api, quote! {#[ctor::recursively_pinned]}); |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 5747 | assert_rs_matches!( |
| 5748 | rs_api, |
| 5749 | quote! { |
| 5750 | impl ctor::CtorNew<(u8, i8)> for HasConstructor { |
| 5751 | type CtorType = impl ctor::Ctor<Output = Self>; |
| 5752 | |
| 5753 | #[inline (always)] |
| 5754 | fn ctor_new(args: (u8, i8)) -> Self::CtorType { |
| 5755 | let (input1, input2) = args; |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 5756 | ctor::FnCtor::new(move |dest: crate::rust_std::pin::Pin<&mut crate::rust_std::mem::MaybeUninit<Self>>| { |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 5757 | unsafe { |
Rosica Dejanovska | 68c11ac | 2022-05-12 03:48:59 -0700 | [diff] [blame] | 5758 | crate::detail::__rust_thunk___ZN14HasConstructorC1Eha(crate::rust_std::pin::Pin::into_inner_unchecked(dest), input1, input2); |
Devin Jeanpierre | ad12574 | 2022-04-11 13:50:28 -0700 | [diff] [blame] | 5759 | } |
| 5760 | }) |
| 5761 | } |
| 5762 | } |
| 5763 | } |
| 5764 | ); |
| 5765 | Ok(()) |
| 5766 | } |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 5767 | |
| 5768 | #[test] |
Devin Jeanpierre | c0543eb | 2022-04-20 16:00:34 -0700 | [diff] [blame] | 5769 | fn test_forward_declared() -> Result<()> { |
| 5770 | let ir = ir_from_cc( |
| 5771 | r#"#pragma clang lifetime_elision |
| 5772 | struct ForwardDeclared;"#, |
| 5773 | )?; |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5774 | let rs_api = generate_bindings_tokens(&ir)?.rs_api; |
Devin Jeanpierre | c0543eb | 2022-04-20 16:00:34 -0700 | [diff] [blame] | 5775 | assert_rs_matches!( |
| 5776 | rs_api, |
| 5777 | quote! { |
| 5778 | forward_declare::forward_declare!(pub ForwardDeclared = forward_declare::symbol!("ForwardDeclared")); |
| 5779 | } |
| 5780 | ); |
| 5781 | assert_rs_not_matches!(rs_api, quote! {struct ForwardDeclared}); |
| 5782 | Ok(()) |
| 5783 | } |
| 5784 | |
| 5785 | #[test] |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 5786 | fn test_namespace_module_items() -> Result<()> { |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5787 | let rs_api = generate_bindings_tokens(&ir_from_cc( |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 5788 | r#" |
| 5789 | namespace test_namespace_bindings { |
| 5790 | int func(); |
| 5791 | struct S {}; |
| 5792 | namespace inner { |
| 5793 | int inner_func(); |
| 5794 | struct InnerS {}; |
| 5795 | } |
| 5796 | } |
| 5797 | "#, |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5798 | )?)? |
| 5799 | .rs_api; |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 5800 | assert_rs_matches!( |
Devin Jeanpierre | 448322b | 2022-04-26 15:43:40 -0700 | [diff] [blame] | 5801 | rs_api, |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 5802 | quote! { |
| 5803 | pub mod test_namespace_bindings { |
| 5804 | ... |
| 5805 | pub fn func() -> i32 { ... } |
| 5806 | ... |
| 5807 | pub struct S { ... } |
| 5808 | ... |
| 5809 | pub mod inner { |
| 5810 | ... |
| 5811 | pub fn inner_func() -> i32 { ... } |
| 5812 | ... |
| 5813 | pub struct InnerS { ... } |
| 5814 | ... |
| 5815 | } |
| 5816 | ... |
| 5817 | } |
| 5818 | } |
| 5819 | ); |
| 5820 | Ok(()) |
| 5821 | } |
| 5822 | |
| 5823 | #[test] |
Rosica Dejanovska | 5d9faaf | 2022-05-11 04:30:04 -0700 | [diff] [blame] | 5824 | fn test_detail_outside_of_namespace_module() -> Result<()> { |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5825 | let rs_api = generate_bindings_tokens(&ir_from_cc( |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 5826 | r#" |
| 5827 | namespace test_namespace_bindings { |
| 5828 | int f(); |
| 5829 | } |
| 5830 | "#, |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5831 | )?)? |
| 5832 | .rs_api; |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 5833 | assert_rs_matches!( |
Devin Jeanpierre | 448322b | 2022-04-26 15:43:40 -0700 | [diff] [blame] | 5834 | rs_api, |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 5835 | quote! { |
| 5836 | pub mod test_namespace_bindings { |
| 5837 | ... |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 5838 | } |
Rosica Dejanovska | 5d9faaf | 2022-05-11 04:30:04 -0700 | [diff] [blame] | 5839 | ... |
| 5840 | mod detail { |
| 5841 | #[allow(unused_imports)] |
| 5842 | use super::*; |
| 5843 | extern "C" { |
| 5844 | #[link_name = "_ZN23test_namespace_bindings1fEv"] |
| 5845 | pub(crate) fn __rust_thunk___ZN23test_namespace_bindings1fEv() -> i32; |
| 5846 | } |
| 5847 | } |
| 5848 | ... |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 5849 | } |
| 5850 | ); |
| 5851 | Ok(()) |
| 5852 | } |
| 5853 | |
| 5854 | #[test] |
Rosica Dejanovska | 5d9faaf | 2022-05-11 04:30:04 -0700 | [diff] [blame] | 5855 | fn test_assertions_outside_of_namespace_module() -> Result<()> { |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5856 | let rs_api = generate_bindings_tokens(&ir_from_cc( |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 5857 | r#" |
| 5858 | namespace test_namespace_bindings { |
| 5859 | struct S { |
| 5860 | int i; |
| 5861 | }; |
| 5862 | } |
| 5863 | "#, |
Devin Jeanpierre | 4f06f83 | 2022-04-26 15:51:30 -0700 | [diff] [blame] | 5864 | )?)? |
| 5865 | .rs_api; |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 5866 | assert_rs_matches!( |
Devin Jeanpierre | 448322b | 2022-04-26 15:43:40 -0700 | [diff] [blame] | 5867 | rs_api, |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 5868 | quote! { |
| 5869 | pub mod test_namespace_bindings { |
| 5870 | ... |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 5871 | } |
Rosica Dejanovska | 5d9faaf | 2022-05-11 04:30:04 -0700 | [diff] [blame] | 5872 | ... |
Lukasz Anforowicz | dc37d6d | 2022-05-17 08:20:13 -0700 | [diff] [blame] | 5873 | const _: () = assert!(rust_std::mem::size_of::<crate::test_namespace_bindings::S>() == 4); |
| 5874 | const _: () = assert!(rust_std::mem::align_of::<crate::test_namespace_bindings::S>() == 4); |
Rosica Dejanovska | 5d9faaf | 2022-05-11 04:30:04 -0700 | [diff] [blame] | 5875 | ... |
Lukasz Anforowicz | 30360ba | 2022-05-23 12:15:12 -0700 | [diff] [blame] | 5876 | const _: () = assert!(memoffset_unstable_const::offset_of!(crate::test_namespace_bindings::S, i) == 0); |
Rosica Dejanovska | dd9a903 | 2022-04-12 07:34:41 -0700 | [diff] [blame] | 5877 | } |
| 5878 | ); |
| 5879 | Ok(()) |
| 5880 | } |
Rosica Dejanovska | 93aeafb | 2022-06-01 07:05:31 -0700 | [diff] [blame] | 5881 | |
| 5882 | #[test] |
| 5883 | fn test_reopened_namespaces() -> Result<()> { |
| 5884 | let rs_api = generate_bindings_tokens(&ir_from_cc( |
| 5885 | r#" |
| 5886 | namespace test_namespace_bindings { |
| 5887 | namespace inner {} |
| 5888 | } // namespace test_namespace_bindings |
| 5889 | |
| 5890 | namespace test_namespace_bindings { |
| 5891 | namespace inner {} |
| 5892 | } // namespace test_namespace_bindings"#, |
| 5893 | )?)? |
| 5894 | .rs_api; |
| 5895 | |
| 5896 | assert_rs_matches!( |
| 5897 | rs_api, |
| 5898 | quote! { |
| 5899 | ... |
| 5900 | pub mod test_namespace_bindings_0 { |
| 5901 | pub mod inner_0 {} ... |
| 5902 | } |
| 5903 | ... |
| 5904 | pub mod test_namespace_bindings { |
| 5905 | pub use super::test_namespace_bindings_0::*; |
| 5906 | ... |
| 5907 | pub mod inner { |
| 5908 | pub use super::inner_0::*; |
| 5909 | ... |
| 5910 | } |
| 5911 | } |
| 5912 | ... |
| 5913 | } |
| 5914 | ); |
| 5915 | Ok(()) |
| 5916 | } |
Rosica Dejanovska | a08b386 | 2022-06-02 08:22:49 -0700 | [diff] [blame] | 5917 | |
| 5918 | #[test] |
| 5919 | fn test_qualified_identifiers_in_impl_file() -> Result<()> { |
| 5920 | let rs_api_impl = generate_bindings_tokens(&ir_from_cc( |
| 5921 | r#" |
| 5922 | namespace test_namespace_bindings { |
| 5923 | inline void f() {}; |
| 5924 | struct S{}; |
| 5925 | } |
| 5926 | inline void useS(test_namespace_bindings::S s) {};"#, |
| 5927 | )?)? |
| 5928 | .rs_api_impl; |
| 5929 | |
| 5930 | assert_cc_matches!( |
| 5931 | rs_api_impl, |
| 5932 | quote! { |
| 5933 | extern "C" void __rust_thunk___ZN23test_namespace_bindings1fEv() { |
| 5934 | test_namespace_bindings::f(); |
| 5935 | } |
| 5936 | ... |
| 5937 | extern "C" void __rust_thunk___ZN23test_namespace_bindings1SC1Ev( |
| 5938 | class test_namespace_bindings::S* __this) {...} |
| 5939 | ... |
| 5940 | extern "C" void __rust_thunk___Z4useSN23test_namespace_bindings1SE( |
| 5941 | class test_namespace_bindings::S s) { useS(std::forward<decltype(s)>(s)); } |
| 5942 | ... |
| 5943 | } |
| 5944 | ); |
| 5945 | Ok(()) |
| 5946 | } |
Marcel Hlopko | 42abfc8 | 2021-08-09 07:03:17 +0000 | [diff] [blame] | 5947 | } |