Home
last modified time | relevance | path

Searched refs:memory_alloc_index (Results 1 – 4 of 4) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/allocator/pooling/
H A Dgc_heap_pool.rs19 fn alloc(&mut self, memory_alloc_index: MemoryAllocationIndex) -> Option<Box<dyn GcHeap>> { in alloc()
23 *self = HeapSlot::InUse(memory_alloc_index); in alloc()
33 HeapSlot::InUse(memory_alloc_index) => { in dealloc()
35 memory_alloc_index in dealloc()
85 memory_alloc_index: MemoryAllocationIndex, in allocate()
102 heaps[allocation_index.index()].alloc(memory_alloc_index) in allocate()
131 let memory_alloc_index = { in deallocate() localVariable
138 (memory_alloc_index, memory) in deallocate()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/allocator/
H A Don_demand.rs232 memory_alloc_index: MemoryAllocationIndex, in allocate_gc_heap()
235 debug_assert_eq!(memory_alloc_index, MemoryAllocationIndex::default()); in allocate_gc_heap()
H A Dpooling.rs882 memory_alloc_index: MemoryAllocationIndex, in allocate_gc_heap()
887 .allocate(engine, gc_runtime, memory_alloc_index, memory)?; in allocate_gc_heap()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/
H A Dallocator.rs257 memory_alloc_index: MemoryAllocationIndex, in allocate_gc_heap()