mod func;
mod global;
mod memory;
mod table;
mod tag;
pub use self::func::*;
pub use self::global::*;
pub(crate) use memory::MemoryCreatorProxy;
use self::memory::create_memory;
use self::table::create_table;
use self::tag::create_tag;
use crate::prelude::*;
use crate::runtime::vm::SharedMemory;
use crate::store::StoreOpaque;
use crate::{MemoryType, TableType, TagType};
use wasmtime_environ::{MemoryIndex, TableIndex, TagIndex};
pub fn generate_memory_export(
store: &mut StoreOpaque,
m: &MemoryType,
preallocation: Option<&SharedMemory>,
) -> Result<crate::Memory> {
let id = store.id();
let instance = create_memory(store, m, preallocation)?;
Ok(store
.instance_mut(instance)
.get_exported_memory(id, MemoryIndex::from_u32(0)))
}
pub fn generate_table_export(store: &mut StoreOpaque, t: &TableType) -> Result<crate::Table> {
let id = store.id();
let instance = create_table(store, t)?;
Ok(store
.instance_mut(instance)
.get_exported_table(id, TableIndex::from_u32(0)))
}
pub fn generate_tag_export(store: &mut StoreOpaque, t: &TagType) -> Result<crate::Tag> {
let id = store.id();
let instance = create_tag(store, t)?;
Ok(store
.instance_mut(instance)
.get_exported_tag(id, TagIndex::from_u32(0)))
}