wasmtime/runtime/trampoline/
memory.rs
use crate::memory::{LinearMemory, MemoryCreator};
use crate::prelude::*;
use crate::runtime::vm::mpk::ProtectionKey;
use crate::runtime::vm::{
CompiledModuleId, Imports, InstanceAllocationRequest, InstanceAllocator, InstanceAllocatorImpl,
Memory, MemoryAllocationIndex, MemoryBase, ModuleRuntimeInfo, OnDemandInstanceAllocator,
RuntimeLinearMemory, RuntimeMemoryCreator, SharedMemory, StorePtr, Table, TableAllocationIndex,
};
use crate::store::{InstanceId, StoreOpaque};
use crate::MemoryType;
use alloc::sync::Arc;
use wasmtime_environ::{
DefinedMemoryIndex, DefinedTableIndex, EntityIndex, HostPtr, Module, Tunables, VMOffsets,
};
#[cfg(feature = "component-model")]
use wasmtime_environ::{
component::{Component, VMComponentOffsets},
StaticModuleIndex,
};
pub fn create_memory(
store: &mut StoreOpaque,
memory_ty: &MemoryType,
preallocation: Option<&SharedMemory>,
) -> Result<InstanceId> {
let mut module = Module::new();
let memory_id = module.memories.push(*memory_ty.wasmtime_memory());
debug_assert_eq!(memory_id.as_u32(), 0);
module
.exports
.insert(String::new(), EntityIndex::Memory(memory_id));
let runtime_info = &ModuleRuntimeInfo::bare_maybe_imported_func(Arc::new(module), None);
let host_state = Box::new(());
let imports = Imports::default();
let request = InstanceAllocationRequest {
imports,
host_state,
store: StorePtr::new(store.traitobj()),
runtime_info,
wmemcheck: false,
pkey: None,
tunables: store.engine().tunables(),
};
unsafe {
let handle = SingleMemoryInstance {
preallocation,
ondemand: OnDemandInstanceAllocator::default(),
}
.allocate_module(request)?;
let instance_id = store.add_dummy_instance(handle.clone());
Ok(instance_id)
}
}
struct LinearMemoryProxy {
mem: Box<dyn LinearMemory>,
}
impl RuntimeLinearMemory for LinearMemoryProxy {
fn byte_size(&self) -> usize {
self.mem.byte_size()
}
fn byte_capacity(&self) -> usize {
self.mem.byte_capacity()
}
fn grow_to(&mut self, new_size: usize) -> Result<()> {
self.mem.grow_to(new_size)
}
fn base(&self) -> MemoryBase {
MemoryBase::new_raw(self.mem.as_ptr())
}
}
#[derive(Clone)]
pub(crate) struct MemoryCreatorProxy(pub Arc<dyn MemoryCreator>);
impl RuntimeMemoryCreator for MemoryCreatorProxy {
fn new_memory(
&self,
ty: &wasmtime_environ::Memory,
tunables: &Tunables,
minimum: usize,
maximum: Option<usize>,
) -> Result<Box<dyn RuntimeLinearMemory>> {
let reserved_size_in_bytes = Some(tunables.memory_reservation.try_into().unwrap());
self.0
.new_memory(
MemoryType::from_wasmtime_memory(ty),
minimum,
maximum,
reserved_size_in_bytes,
usize::try_from(tunables.memory_guard_size).unwrap(),
)
.map(|mem| Box::new(LinearMemoryProxy { mem }) as Box<dyn RuntimeLinearMemory>)
.map_err(|e| anyhow!(e))
}
}
struct SingleMemoryInstance<'a> {
preallocation: Option<&'a SharedMemory>,
ondemand: OnDemandInstanceAllocator,
}
unsafe impl InstanceAllocatorImpl for SingleMemoryInstance<'_> {
#[cfg(feature = "component-model")]
fn validate_component_impl<'a>(
&self,
_component: &Component,
_offsets: &VMComponentOffsets<HostPtr>,
_get_module: &'a dyn Fn(StaticModuleIndex) -> &'a Module,
) -> Result<()> {
unreachable!("`SingleMemoryInstance` allocator never used with components")
}
fn validate_module_impl(&self, module: &Module, offsets: &VMOffsets<HostPtr>) -> Result<()> {
anyhow::ensure!(
module.memories.len() == 1,
"`SingleMemoryInstance` allocator can only be used for modules with a single memory"
);
self.ondemand.validate_module_impl(module, offsets)?;
Ok(())
}
fn increment_component_instance_count(&self) -> Result<()> {
self.ondemand.increment_component_instance_count()
}
fn decrement_component_instance_count(&self) {
self.ondemand.decrement_component_instance_count();
}
fn increment_core_instance_count(&self) -> Result<()> {
self.ondemand.increment_core_instance_count()
}
fn decrement_core_instance_count(&self) {
self.ondemand.decrement_core_instance_count();
}
unsafe fn allocate_memory(
&self,
request: &mut InstanceAllocationRequest,
ty: &wasmtime_environ::Memory,
tunables: &Tunables,
memory_index: DefinedMemoryIndex,
) -> Result<(MemoryAllocationIndex, Memory)> {
#[cfg(debug_assertions)]
{
let module = request.runtime_info.env_module();
let offsets = request.runtime_info.offsets();
self.validate_module_impl(module, offsets)
.expect("should have already validated the module before allocating memory");
}
match self.preallocation {
Some(shared_memory) => Ok((
MemoryAllocationIndex::default(),
shared_memory.clone().as_memory(),
)),
None => self
.ondemand
.allocate_memory(request, ty, tunables, memory_index),
}
}
unsafe fn deallocate_memory(
&self,
memory_index: DefinedMemoryIndex,
allocation_index: MemoryAllocationIndex,
memory: Memory,
) {
self.ondemand
.deallocate_memory(memory_index, allocation_index, memory)
}
unsafe fn allocate_table(
&self,
req: &mut InstanceAllocationRequest,
ty: &wasmtime_environ::Table,
tunables: &Tunables,
table_index: DefinedTableIndex,
) -> Result<(TableAllocationIndex, Table)> {
self.ondemand.allocate_table(req, ty, tunables, table_index)
}
unsafe fn deallocate_table(
&self,
table_index: DefinedTableIndex,
allocation_index: TableAllocationIndex,
table: Table,
) {
self.ondemand
.deallocate_table(table_index, allocation_index, table)
}
#[cfg(feature = "async")]
fn allocate_fiber_stack(&self) -> Result<wasmtime_fiber::FiberStack> {
unreachable!()
}
#[cfg(feature = "async")]
unsafe fn deallocate_fiber_stack(&self, _stack: wasmtime_fiber::FiberStack) {
unreachable!()
}
fn purge_module(&self, _: CompiledModuleId) {
unreachable!()
}
fn next_available_pkey(&self) -> Option<ProtectionKey> {
unreachable!()
}
fn restrict_to_pkey(&self, _: ProtectionKey) {
unreachable!()
}
fn allow_all_pkeys(&self) {
unreachable!()
}
#[cfg(feature = "gc")]
fn allocate_gc_heap(
&self,
_gc_runtime: &dyn crate::runtime::vm::GcRuntime,
) -> Result<(
crate::runtime::vm::GcHeapAllocationIndex,
Box<dyn crate::runtime::vm::GcHeap>,
)> {
unreachable!()
}
#[cfg(feature = "gc")]
fn deallocate_gc_heap(
&self,
_allocation_index: crate::runtime::vm::GcHeapAllocationIndex,
_gc_heap: Box<dyn crate::runtime::vm::GcHeap>,
) {
unreachable!()
}
}