Home
last modified time | relevance | path

Searched refs:vm_func_ref (Results 1 – 10 of 10) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/func/
H A Dtyped.rs99 let func = self.func.vm_func_ref(store.0); in call()
134 let func = self.func.vm_func_ref(store.0); in call_async()
547 let abi = self.vm_func_ref(store); in store()
599 f.vm_func_ref(store).as_ptr() in store()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/component/
H A Dinstance.rs921 crate::runtime::vm::Export::Function(f) => f.vm_func_ref(store), in resource()
948 crate::runtime::vm::Export::Function(f) => f.vm_func_ref(store), in extract_realloc()
957 crate::runtime::vm::Export::Function(f) => f.vm_func_ref(store), in extract_callback()
966 crate::runtime::vm::Export::Function(f) => f.vm_func_ref(store), in extract_post_return()
1036 let actual = unsafe { f.vm_func_ref(store).as_ref().type_index }; in assert_type_matches()
H A Dfunc.rs522 Export::Function(f) => f.vm_func_ref(store), in lifted_core_func()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/trampoline/
H A Dglobal.rs47 f.map_or(ptr::null_mut(), |f| f.vm_func_ref(&store).as_ptr()); in generate_global_export()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/gc/enabled/
H A Darrayref.rs270 Some(f) => Some(SendSyncPtr::new(f.vm_func_ref(store))), in write_elem()
383 Some(f) => Some(SendSyncPtr::new(f.vm_func_ref(store))), in initialize_elem()
H A Dstructref.rs229 let f = f.map(|f| SendSyncPtr::new(f.vm_func_ref(store))); in write_field()
388 let f = f.map(|f| SendSyncPtr::new(f.vm_func_ref(store))); in initialize_field_impl()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dfunc.rs902 unsafe { self.vm_func_ref(data).as_ref().type_index } in type_index()
1000 let func_ref = self.vm_func_ref(store.0); in call_unchecked()
1060 self.vm_func_ref(store.as_context_mut().0).as_ptr().cast() in to_raw()
1186 pub(crate) fn vm_func_ref(&self, store: &StoreOpaque) -> NonNull<VMFuncRef> { in vm_func_ref() method
1193 let f = self.vm_func_ref(store); in vmimport()
1424 self.vm_func_ref(store).as_ptr().addr() in hash_key()
H A Dinstance.rs389 let funcref = f.vm_func_ref(store.0); in start_raw()
739 let f = unsafe { f.vm_func_ref(store).as_ref() }; in push_export()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/externals/
H A Dglobal.rs257 f.map_or(ptr::null_mut(), |f| f.vm_func_ref(&store).as_ptr().cast()); in set_unchecked()
H A Dtable.rs625 Ok(Some(f.vm_func_ref(store))) in into_table_func()