2019-01-29 02:06:57 +00:00
|
|
|
#[macro_export]
|
|
|
|
#[cfg(feature = "debug")]
|
|
|
|
macro_rules! debug {
|
|
|
|
($fmt:expr) => (println!(concat!("wasmer-runtime(:{})::", $fmt), line!()));
|
|
|
|
($fmt:expr, $($arg:tt)*) => (println!(concat!("wasmer-runtime(:{})::", $fmt, "\n"), line!(), $($arg)*));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
#[cfg(not(feature = "debug"))]
|
2019-01-08 17:09:47 +00:00
|
|
|
macro_rules! debug {
|
2019-01-29 02:06:57 +00:00
|
|
|
($fmt:expr) => {};
|
|
|
|
($fmt:expr, $($arg:tt)*) => {};
|
2019-01-08 17:09:47 +00:00
|
|
|
}
|
2019-01-21 22:43:04 +00:00
|
|
|
|
|
|
|
#[macro_export]
|
2019-01-26 00:40:07 +00:00
|
|
|
macro_rules! func {
|
2019-01-31 02:03:54 +00:00
|
|
|
($func:path, [ $( $params:ident ),* ] -> [ $( $returns:ident ),* ] ) => {{
|
2019-01-22 19:02:06 +00:00
|
|
|
use $crate::{
|
2019-01-21 22:43:04 +00:00
|
|
|
export::{Context, Export, FuncPointer},
|
2019-02-01 21:10:59 +00:00
|
|
|
types::{FuncSig, Type, WasmExternType},
|
2019-01-21 23:10:07 +00:00
|
|
|
vm,
|
2019-01-21 22:43:04 +00:00
|
|
|
};
|
2019-01-21 23:21:51 +00:00
|
|
|
let func: extern fn( $( $params, )* &mut vm::Ctx) -> ($( $returns )*) = $func;
|
2019-01-21 22:43:04 +00:00
|
|
|
Export::Function {
|
2019-01-21 23:10:07 +00:00
|
|
|
func: unsafe { FuncPointer::new(func as _) },
|
2019-01-21 22:43:04 +00:00
|
|
|
ctx: Context::Internal,
|
2019-01-29 18:16:39 +00:00
|
|
|
signature: FuncSig::new(
|
2019-02-01 21:10:59 +00:00
|
|
|
&[ $( <$params as WasmExternType>::TYPE, )* ] as &[Type],
|
|
|
|
&[ $( <$returns as WasmExternType>::TYPE, )* ] as &[Type],
|
2019-01-29 18:16:39 +00:00
|
|
|
).into(),
|
2019-01-21 22:43:04 +00:00
|
|
|
}
|
|
|
|
}};
|
|
|
|
}
|
2019-01-21 23:10:07 +00:00
|
|
|
|
2019-01-23 20:34:15 +00:00
|
|
|
/// Generate an [`ImportObject`] safely.
|
|
|
|
///
|
|
|
|
/// [`ImportObject`]: struct.ImportObject.html
|
|
|
|
///
|
|
|
|
/// # Note:
|
|
|
|
/// The `import` macro currently only supports
|
|
|
|
/// importing functions.
|
|
|
|
///
|
|
|
|
///
|
|
|
|
/// # Usage:
|
|
|
|
/// ```
|
2019-01-28 18:59:05 +00:00
|
|
|
/// # use wasmer_runtime_core::{imports, func};
|
2019-01-23 20:34:15 +00:00
|
|
|
/// # use wasmer_runtime_core::vm::Ctx;
|
|
|
|
/// let import_object = imports! {
|
|
|
|
/// "env" => {
|
2019-01-28 18:59:05 +00:00
|
|
|
/// "foo" => func!(foo, [i32] -> [i32]),
|
2019-01-23 20:34:15 +00:00
|
|
|
/// },
|
|
|
|
/// };
|
|
|
|
///
|
|
|
|
/// 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, )* ) => {{
|
2019-01-22 19:02:06 +00:00
|
|
|
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 {
|
2019-01-26 00:40:07 +00:00
|
|
|
( { $( $imp_name:expr => $import_item:expr, )* } ) => {{
|
2019-01-22 00:24:49 +00:00
|
|
|
let mut ns = Namespace::new();
|
|
|
|
$(
|
2019-01-26 00:40:07 +00:00
|
|
|
ns.insert($imp_name, $import_item);
|
2019-01-22 00:24:49 +00:00
|
|
|
)*
|
|
|
|
ns
|
|
|
|
}};
|
|
|
|
($ns:ident) => {
|
|
|
|
$ns
|
|
|
|
};
|
|
|
|
}
|