Forráskód Böngészése

Add ABI-compatibility assertion

Gary Guo 1 éve
szülő
commit
de5dd40a4f
1 módosított fájl, 12 hozzáadás és 1 törlés
  1. 12 1
      src/abi.rs

+ 12 - 1
src/abi.rs

@@ -118,7 +118,18 @@ macro_rules! binding {
     };
 }
 
-#[cfg(not(feature = "unwinder"))]
+#[cfg(feature = "unwinder")]
+macro_rules! binding {
+    () => {};
+    (unsafe extern $abi: literal fn $name: ident ($($arg: ident : $arg_ty: ty),*$(,)?) $(-> $ret: ty)?; $($rest: tt)*) => {
+        const _: unsafe extern $abi fn($($arg_ty),*) $(-> $ret)? = $name;
+    };
+
+    (extern $abi: literal fn $name: ident ($($arg: ident : $arg_ty: ty),*$(,)?) $(-> $ret: ty)?; $($rest: tt)*) => {
+        const _: extern $abi fn($($arg_ty),*) $(-> $ret)? = $name;
+    };
+}
+
 binding! {
     extern "C" fn _Unwind_GetGR(unwind_ctx: &UnwindContext<'_>, index: c_int) -> usize;
     extern "C" fn _Unwind_GetCFA(unwind_ctx: &UnwindContext<'_>) -> usize;