Add clif-backend crate and runtime example

This commit is contained in:
Lachlan Sneff
2019-01-08 16:04:03 -05:00
parent 8a73ff71af
commit 7324c85749
14 changed files with 2378 additions and 10 deletions

View File

@ -4,19 +4,19 @@ mod backend;
mod backing;
mod instance;
mod memory;
mod module;
mod sig_registry;
mod table;
mod recovery;
mod sighandler;
mod mmap;
pub mod mmap;
pub mod module;
pub mod types;
pub mod vm;
pub mod vmcalls;
pub use self::backend::{Compiler, FuncResolver};
pub use self::instance::{Import, ImportResolver, Imports, Instance};
pub use self::module::Module;
pub use self::module::{Module, ModuleInner};
pub use self::sig_registry::SigRegistry;
pub use self::memory::LinearMemory;