wasmer/lib/runtime/src/lib.rs

28 lines
573 B
Rust
Raw Normal View History

2019-01-09 06:06:24 +00:00
#[cfg(test)]
#[macro_use]
extern crate field_offset;
2019-01-08 17:09:47 +00:00
#[macro_use]
mod macros;
mod backing;
mod instance;
mod memory;
2019-01-09 02:57:28 +00:00
mod recovery;
mod sighandler;
mod sig_registry;
mod mmap;
pub mod module;
pub mod backend;
2019-01-09 06:06:24 +00:00
pub mod table;
2019-01-08 17:09:47 +00:00
pub mod types;
pub mod vm;
pub mod vmcalls;
pub use self::instance::{Import, ImportResolver, Imports, FuncRef, Instance};
2019-01-09 02:57:28 +00:00
pub use self::memory::LinearMemory;
2019-01-08 17:09:47 +00:00
/// Compile a webassembly module using the provided compiler.
pub fn compile(wasm: &[u8], compiler: &dyn backend::Compiler) -> Result<module::Module, String> {
2019-01-08 17:09:47 +00:00
compiler.compile(wasm)
2019-01-09 02:57:28 +00:00
}