wasmer/lib/runtime/examples/simple/main.rs

62 lines
1.8 KiB
Rust
Raw Normal View History

2019-01-12 21:24:17 +00:00
use hashbrown::HashMap;
2019-01-11 03:59:57 +00:00
use std::rc::Rc;
use wabt::wat2wasm;
use wasmer_clif_backend::CraneliftCompiler;
2019-01-09 02:57:28 +00:00
use wasmer_runtime::{
self as runtime,
2019-01-12 22:52:14 +00:00
export::{Context, Export, FuncPointer},
2019-01-11 03:59:57 +00:00
import::Imports,
2019-01-09 02:57:28 +00:00
types::{FuncSig, Type, Value},
2019-01-12 22:52:14 +00:00
vm,
2019-01-09 02:57:28 +00:00
};
static EXAMPLE_WASM: &'static [u8] = include_bytes!("simple.wasm");
2019-01-09 02:57:28 +00:00
fn main() -> Result<(), String> {
2019-01-11 03:59:57 +00:00
let wasm_binary = wat2wasm(IMPORT_MODULE.as_bytes()).expect("WAST not valid or malformed");
let inner_module = runtime::compile(&wasm_binary, &CraneliftCompiler::new())?;
2019-01-09 02:57:28 +00:00
2019-01-12 21:24:17 +00:00
let mut env_namespace = HashMap::new();
env_namespace.insert(
2019-01-11 03:59:57 +00:00
"print_i32",
Export::Function {
2019-01-12 22:52:14 +00:00
func: unsafe { FuncPointer::new(print_num as _) },
2019-01-11 03:59:57 +00:00
ctx: Context::Internal,
signature: FuncSig {
2019-01-09 02:57:28 +00:00
params: vec![Type::I32],
returns: vec![Type::I32],
},
2019-01-11 03:59:57 +00:00
},
2019-01-09 02:57:28 +00:00
);
2019-01-12 21:24:17 +00:00
let mut imports = Imports::new();
imports.register("env", env_namespace);
2019-01-09 02:57:28 +00:00
2019-01-11 03:59:57 +00:00
let imports = Rc::new(imports);
2019-01-09 02:57:28 +00:00
2019-01-11 03:59:57 +00:00
let inner_instance = inner_module.instantiate(imports)?;
2019-01-09 02:57:28 +00:00
2019-01-11 03:59:57 +00:00
let mut outer_imports = Imports::new();
2019-01-12 21:24:17 +00:00
outer_imports.register("env", inner_instance);
2019-01-11 03:59:57 +00:00
let outer_imports = Rc::new(outer_imports);
let outer_module = runtime::compile(EXAMPLE_WASM, &CraneliftCompiler::new())?;
let mut outer_instance = outer_module.instantiate(outer_imports)?;
let ret = outer_instance.call("main", &[Value::I32(42)])?;
println!("ret: {:?}", ret);
2019-01-09 02:57:28 +00:00
Ok(())
}
extern "C" fn print_num(n: i32, _vmctx: *mut vm::Ctx) -> i32 {
println!("print_num({})", n);
n + 1
}
2019-01-11 03:59:57 +00:00
static IMPORT_MODULE: &str = r#"
(module
(type $t0 (func (param i32) (result i32)))
(import "env" "print_i32" (func $print_i32 (type $t0)))
(func $print_num (export "print_num") (type $t0) (param $p0 i32) (result i32)
get_local $p0
call $print_i32))
"#;