Home
last modified time | relevance | path

Searched refs:ModuleRuntimeInfo (Results 1 – 9 of 9) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dvm.rs291 pub enum ModuleRuntimeInfo { enum
307 impl ModuleRuntimeInfo { impl
321 Ok(ModuleRuntimeInfo::Bare(info)) in bare_with_registered_type()
328 ModuleRuntimeInfo::Bare(b) => &b.module, in env_module()
337 ModuleRuntimeInfo::Module(m) => m in engine_type_index()
350 ModuleRuntimeInfo::Module(m) => { in memory_image()
354 ModuleRuntimeInfo::Bare(_) => Ok(None), in memory_image()
365 ModuleRuntimeInfo::Bare(_) => None, in unique_id()
373 ModuleRuntimeInfo::Bare(_) => &[], in wasm_data()
381 ModuleRuntimeInfo::Module(m) => m in type_ids()
[all …]
H A Dinstance.rs4 self, Imports, ModuleRuntimeInfo, VMFuncRef, VMFunctionImport, VMGlobalImport, VMMemoryImport,
321 &ModuleRuntimeInfo::Module(module.clone()), in new_raw()
H A Dstore.rs96 InstanceHandle, Interpreter, InterpreterRef, ModuleRuntimeInfo, OnDemandInstanceAllocator,
2607 runtime_info: &ModuleRuntimeInfo, in allocate_instance() argument
/wasmtime-44.0.1/crates/wasmtime/src/runtime/trampoline/
H A Dtable.rs3 use crate::runtime::vm::{Imports, ModuleRuntimeInfo, OnDemandInstanceAllocator};
42 &ModuleRuntimeInfo::bare_with_registered_type( in create_table()
H A Dtag.rs4 use crate::runtime::vm::{self, Imports, ModuleRuntimeInfo, OnDemandInstanceAllocator};
50 &ModuleRuntimeInfo::bare_with_registered_type(module, Some(func_ty))?, in create_tag()
H A Dmemory.rs7 MemoryBase, ModuleRuntimeInfo, OnDemandInstanceAllocator, RuntimeLinearMemory,
47 let info = ModuleRuntimeInfo::bare(try_new::<Arc<_>>(module)?)?; in create_memory()
/wasmtime-44.0.1/crates/wasmtime/src/
H A Dengine.rs9 use crate::runtime::vm::{GcRuntime, ModuleRuntimeInfo};
75 empty_module_runtime_info: ModuleRuntimeInfo,
133 let empty_module_runtime_info = ModuleRuntimeInfo::bare(try_new( in new()
662 pub(crate) fn empty_module_runtime_info(&self) -> &ModuleRuntimeInfo { in empty_module_runtime_info() argument
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dinstance.rs19 GcStore, HostResult, Imports, ModuleRuntimeInfo, SendSyncPtr, VMGlobalKind, VMStore,
109 runtime_info: ModuleRuntimeInfo,
358 ModuleRuntimeInfo::Module(m) => Some(m), in runtime_module()
359 ModuleRuntimeInfo::Bare(_) => None, in runtime_module()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/
H A Dallocator.rs8 use crate::runtime::vm::{CompiledModuleId, ModuleRuntimeInfo};
50 pub runtime_info: &'a ModuleRuntimeInfo,