wasmer/lib/runtime-core/src/macros.rs

115 lines
2.7 KiB
Rust
Raw Normal View History

#![allow(unused)]
2019-01-08 17:09:47 +00:00
macro_rules! debug {
($fmt:expr) => (if cfg!(any(debug_assertions, feature="debug")) { println!(concat!("wasmer-runtime(:{})::", $fmt), line!()) });
($fmt:expr, $($arg:tt)*) => (if cfg!(any(debug_assertions, feature="debug")) { println!(concat!("wasmer-runtime(:{})::", $fmt, "\n"), line!(), $($arg)*) });
}
#[macro_export]
macro_rules! export_func {
($func:ident, [ $( $params:ident ),* ] -> [ $( $returns:ident ),* ]) => {{
use $crate::{
export::{Context, Export, FuncPointer},
types::{FuncSig, Type},
2019-01-21 23:10:07 +00:00
vm,
};
2019-01-21 23:21:51 +00:00
let func: extern fn( $( $params, )* &mut vm::Ctx) -> ($( $returns )*) = $func;
2019-01-21 23:10:07 +00:00
Export::Function {
2019-01-21 23:10:07 +00:00
func: unsafe { FuncPointer::new(func as _) },
ctx: Context::Internal,
signature: FuncSig {
2019-01-21 23:21:51 +00:00
params: vec![$($crate::__export_func_convert_type!($params),)*],
2019-01-21 23:25:51 +00:00
returns: vec![$($crate::__export_func_convert_type!($returns),)*],
},
}
}};
}
2019-01-21 23:10:07 +00:00
#[macro_export]
#[doc(hidden)]
macro_rules! __export_func_convert_type {
2019-01-21 23:21:51 +00:00
(i32) => {
Type::I32
2019-01-21 23:10:07 +00:00
};
2019-01-21 23:21:51 +00:00
(u32) => {
Type::I32
2019-01-21 23:10:07 +00:00
};
2019-01-21 23:21:51 +00:00
(i64) => {
Type::I64
2019-01-21 23:10:07 +00:00
};
2019-01-21 23:21:51 +00:00
(u64) => {
Type::I32
2019-01-21 23:10:07 +00:00
};
2019-01-21 23:21:51 +00:00
(f32) => {
Type::F32
};
(f64) => {
Type::F64
};
($x:ty) => {
compile_error!("Only `i32`, `u32`, `i64`, `u64`, `f32`, and `f64` are supported for argument and return types")
};
2019-01-22 00:24:49 +00:00
}
/// Generate an [`ImportObject`] safely.
///
/// [`ImportObject`]: struct.ImportObject.html
///
/// # Note:
/// The `import` macro currently only supports
/// importing functions.
///
///
/// # Usage:
/// ```
/// # use wasmer_runtime_core::imports;
/// # use wasmer_runtime_core::vm::Ctx;
/// let import_object = imports! {
/// "env" => {
/// "foo" => foo<[i32] -> [i32]>,
/// },
/// };
///
/// extern fn foo(n: i32, _: &mut Ctx) -> i32 {
/// n
/// }
/// ```
2019-01-22 00:24:49 +00:00
#[macro_export]
macro_rules! imports {
( $( $ns_name:expr => $ns:tt, )* ) => {{
use $crate::{
2019-01-22 00:24:49 +00:00
import::{ImportObject, Namespace},
};
let mut import_object = ImportObject::new();
$({
let ns = $crate::__imports_internal!($ns);
import_object.register($ns_name, ns);
})*
import_object
}};
}
#[macro_export]
#[doc(hidden)]
macro_rules! __imports_internal {
( { $( $imp_name:expr => $func:ident < [ $( $params:ident ),* ] -> [ $( $returns:ident ),* ] >, )* } ) => {{
let mut ns = Namespace::new();
$(
ns.insert($imp_name, $crate::export_func!(
$func,
[ $( $params ),* ] -> [ $( $returns )* ]
));
)*
ns
}};
($ns:ident) => {
$ns
};
}