Home
last modified time | relevance | path

Searched refs:CompiledModuleId (Results 1 – 13 of 13) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dmodule_id.rs8 pub struct CompiledModuleId(NonZeroU64); struct
10 impl CompiledModuleId { implementation
17 CompiledModuleId(crate::store::StoreId::allocate().as_raw()) in new()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/allocator/pooling/
H A Dindex_allocator.rs5 use crate::runtime::vm::CompiledModuleId;
77 pub struct MemoryInModule(pub CompiledModuleId, pub DefinedMemoryIndex);
233 module_id: CompiledModuleId, in alloc_affine_and_clear_affinity() argument
555 let id1 = MemoryInModule(CompiledModuleId::new(), DefinedMemoryIndex::new(0)); in test_affinity_allocation_strategy()
556 let id2 = MemoryInModule(CompiledModuleId::new(), DefinedMemoryIndex::new(0)); in test_affinity_allocation_strategy()
611 let id = CompiledModuleId::new(); in clear_affine()
644 MemoryInModule(CompiledModuleId::new(), DefinedMemoryIndex::new(0)) in test_affinity_allocation_strategy_random()
687 let id1 = MemoryInModule(CompiledModuleId::new(), DefinedMemoryIndex::new(0)); in test_affinity_threshold()
725 CompiledModuleId::new(), in test_affinity_threshold()
734 CompiledModuleId::new(), in test_affinity_threshold()
[all …]
H A Dmemory_pool.rs59 CompiledModuleId, InstanceAllocationRequest, InstanceLimits, Memory, MemoryBase,
488 pub fn purge_module(&self, module: CompiledModuleId) { in purge_module() argument
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dinstantiate.rs9 use crate::runtime::vm::CompiledModuleId;
22 unique_id: CompiledModuleId,
56 unique_id: CompiledModuleId::new(), in from_artifacts()
85 pub fn unique_id(&self) -> CompiledModuleId { in unique_id() argument
H A Dmodule.rs4 use crate::runtime::vm::{CompiledModuleId, MmapVec, ModuleMemoryImages, VMWasmCallFunction};
1104 pub(crate) fn id(&self) -> CompiledModuleId { in id() argument
1238 pub(crate) module: CompiledModuleId,
H A Dvm.rs143 pub use module_id::CompiledModuleId;
362 fn unique_id(&self) -> Option<CompiledModuleId> { in unique_id() argument
H A Ddebug.rs14 vm::{CompiledModuleId, VMContext},
969 struct BreakpointKey(CompiledModuleId, ModulePC);
/wasmtime-44.0.1/crates/wasmtime/src/runtime/module/
H A Dregistry.rs8 use crate::vm::CompiledModuleId;
92 pub struct RegisteredModuleId(CompiledModuleId);
129 pub fn module_by_compiled_id(&self, id: CompiledModuleId) -> Option<&Module> { in module_by_compiled_id()
223 compiled_id: CompiledModuleId, in register() argument
/wasmtime-44.0.1/crates/wasmtime/src/runtime/component/
H A Dcomponent.rs7 use crate::runtime::vm::{CompiledModuleId, VMArrayCallFunction, VMFuncRef, VMWasmCallFunction};
67 id: CompiledModuleId,
460 id: CompiledModuleId::new(), in from_parts()
862 pub(crate) fn id(&self) -> CompiledModuleId { in id() argument
908 pub(crate) id: CompiledModuleId,
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/allocator/
H A Don_demand.rs5 use crate::runtime::vm::CompiledModuleId;
204 fn purge_module(&self, _: CompiledModuleId) {} in purge_module() argument
H A Dpooling.rs53 CompiledModuleId, Memory, Table,
861 fn purge_module(&self, module: CompiledModuleId) { in purge_module() argument
/wasmtime-44.0.1/crates/wasmtime/src/runtime/trampoline/
H A Dmemory.rs6 CompiledModuleId, InstanceAllocationRequest, InstanceAllocator, Memory, MemoryAllocationIndex,
241 fn purge_module(&self, _: CompiledModuleId) { in purge_module() argument
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/
H A Dallocator.rs8 use crate::runtime::vm::{CompiledModuleId, ModuleRuntimeInfo};
277 fn purge_module(&self, module: CompiledModuleId); in purge_module() argument