mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 14:25:32 +00:00
110 lines
2.8 KiB
Rust
110 lines
2.8 KiB
Rust
use wabt::wat2wasm;
|
|
use wasmer_runtime_core::{
|
|
backend::Compiler,
|
|
error,
|
|
global::Global,
|
|
memory::Memory,
|
|
prelude::*,
|
|
table::Table,
|
|
types::{ElementType, MemoryDescriptor, TableDescriptor, Value},
|
|
units::Pages,
|
|
};
|
|
|
|
#[cfg(feature = "clif")]
|
|
fn get_compiler() -> impl Compiler {
|
|
use wasmer_clif_backend::CraneliftCompiler;
|
|
CraneliftCompiler::new()
|
|
}
|
|
|
|
#[cfg(feature = "llvm")]
|
|
fn get_compiler() -> impl Compiler {
|
|
use wasmer_llvm_backend::LLVMCompiler;
|
|
LLVMCompiler::new()
|
|
}
|
|
|
|
#[cfg(feature = "dynasm")]
|
|
fn get_compiler() -> impl Compiler {
|
|
use wasmer_dynasm_backend::SinglePassCompiler;
|
|
SinglePassCompiler::new()
|
|
}
|
|
|
|
#[cfg(not(any(feature = "llvm", feature = "clif", feature = "dynasm")))]
|
|
fn get_compiler() -> impl Compiler {
|
|
panic!("compiler not specified, activate a compiler via features");
|
|
use wasmer_clif_backend::CraneliftCompiler;
|
|
CraneliftCompiler::new()
|
|
}
|
|
|
|
static EXAMPLE_WASM: &'static [u8] = include_bytes!("simple.wasm");
|
|
|
|
fn main() -> error::Result<()> {
|
|
let wasm_binary = wat2wasm(IMPORT_MODULE.as_bytes()).expect("WAST not valid or malformed");
|
|
|
|
let inner_module = wasmer_runtime_core::compile_with(&wasm_binary, &get_compiler())?;
|
|
|
|
let memory = Memory::new(MemoryDescriptor {
|
|
minimum: Pages(1),
|
|
maximum: Some(Pages(1)),
|
|
shared: false,
|
|
})
|
|
.unwrap();
|
|
|
|
let global = Global::new(Value::I32(42));
|
|
|
|
let table = Table::new(TableDescriptor {
|
|
element: ElementType::Anyfunc,
|
|
minimum: 10,
|
|
maximum: None,
|
|
})
|
|
.unwrap();
|
|
|
|
memory.view()[0].set(42);
|
|
|
|
let import_object = imports! {
|
|
"env" => {
|
|
"print_i32" => func!(print_num),
|
|
"memory" => memory,
|
|
"global" => global,
|
|
"table" => table,
|
|
},
|
|
};
|
|
|
|
let inner_instance = inner_module.instantiate(&import_object)?;
|
|
|
|
let outer_imports = imports! {
|
|
"env" => inner_instance,
|
|
};
|
|
|
|
let outer_module = wasmer_runtime_core::compile_with(EXAMPLE_WASM, &get_compiler())?;
|
|
let outer_instance = outer_module.instantiate(&outer_imports)?;
|
|
let ret = outer_instance.call("main", &[Value::I32(42)])?;
|
|
println!("ret: {:?}", ret);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn print_num(ctx: &mut vm::Ctx, n: i32) -> Result<i32, ()> {
|
|
println!("print_num({})", n);
|
|
|
|
let memory: &Memory = ctx.memory(0);
|
|
|
|
let a: i32 = memory.view()[0].get();
|
|
|
|
Ok(a + n + 1)
|
|
}
|
|
|
|
static IMPORT_MODULE: &str = r#"
|
|
(module
|
|
(type $t0 (func (param i32) (result i32)))
|
|
(import "env" "memory" (memory 1 1))
|
|
(import "env" "table" (table 10 anyfunc))
|
|
(import "env" "global" (global i32))
|
|
(import "env" "print_i32" (func $print_i32 (type $t0)))
|
|
(func $identity (type $t0) (param $p0 i32) (result i32)
|
|
get_local $p0)
|
|
(func $print_num (export "print_num") (type $t0) (param $p0 i32) (result i32)
|
|
get_global 0
|
|
call $identity
|
|
call $print_i32))
|
|
"#;
|