Implement further for compiler-cranelift; add ExternRef

This commit is contained in:
Mark McCaskey
2021-02-08 12:49:15 -08:00
parent ecf891e0ac
commit 6cfcc92d52
26 changed files with 682 additions and 116 deletions

View File

@@ -21,6 +21,7 @@
)]
mod export;
mod extern_ref;
mod func_data_registry;
mod global;
mod imports;
@@ -38,6 +39,7 @@ mod vmoffsets;
pub mod libcalls;
pub use crate::export::*;
pub use crate::extern_ref::VMExternRef;
pub use crate::func_data_registry::{FuncDataRegistry, VMFuncRef};
pub use crate::global::*;
pub use crate::imports::Imports;