Home
last modified time | relevance | path

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

/wasmtime-44.0.1/crates/wasmtime/src/runtime/component/
H A Dcomponent.rs104 pub array_call: NonNull<VMArrayCallFunction>, field
509 let array_call = self in trampoline_ptrs() localVariable
515 array_call, in trampoline_ptrs()
526 let array_call = self in unsafe_intrinsic_ptrs() localVariable
531 array_call, in unsafe_intrinsic_ptrs()
H A Dinstance.rs786 ptrs.array_call, in run()
811 ptrs.array_call, in run()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dcomponent.rs608 array_call: NonNull<VMArrayCallFunction>, in set_trampoline()
617 array_call: array_call.into(), in set_trampoline()
629 array_call: NonNull<VMArrayCallFunction>, in set_intrinsic()
638 array_call: array_call.into(), in set_intrinsic()
H A Dvmcontext.rs79 pub array_call: VmPtr<VMArrayCallFunction>, field
113 offset_of!(VMFunctionImport, array_call), in check_vmfunction_import_offsets()
847 pub array_call: VmPtr<VMArrayCallFunction>, field
912 pub unsafe fn array_call( in array_call() method
940 me.as_ref().array_call.as_non_null().cast(), in array_call_interpreted()
960 ptr: me.as_ref().array_call.as_non_null(), in array_call_native()
989 offset_of!(VMFuncRef, array_call), in check_vm_func_ref_offsets()
H A Dinstance.rs809 array_call: NonNull::from( in construct_func_ref()
833 array_call: import.array_call, in construct_func_ref()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/vmcontext/
H A Dvm_host_func_context.rs42 array_call: NonNull::new(host_func as *mut u8).unwrap().cast().into(), in new()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dinstance.rs391 VMFuncRef::array_call(funcref, vm, caller_vmctx, NonNull::from(&mut [])) in start_raw()
742 array_call: f.array_call, in push_export()
H A Dfunc.rs1016 VMFuncRef::array_call(func_ref, vm, caller, params_and_returns) in call_unchecked_raw()
1220 array_call: f.as_ref().array_call, in vmimport()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/stack_switching/stack/
H A Dunix.rs328 VMFuncRef::array_call(func_ref, None, caller_vmxtx, params_and_returns); in fiber_start()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/func/
H A Dtyped.rs203 unsafe { VMFuncRef::array_call(*func_ref, vm, caller, storage) } in call_raw()