Home
last modified time | relevance | path

Searched refs:ExecutorRef (Results 1 – 2 of 2) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dtraphandlers.rs21 use crate::runtime::store::{ExecutorRef, StoreOpaque};
431 ExecutorRef::Interpreter(r) => closure(caller, Some(r)), in catch_traps()
433 ExecutorRef::Native => closure(caller, None), in catch_traps()
965 executor: ExecutorRef<'_>, in resume_to_exception_handler()
972 ExecutorRef::Interpreter(mut r) => { in resume_to_exception_handler()
976 ExecutorRef::Native => handler.resume_tailcc(payload1, payload2), in resume_to_exception_handler()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dstore.rs615 pub(crate) enum ExecutorRef<'a> { enum
2548 pub(crate) fn executor(&mut self) -> ExecutorRef<'_> { in executor()
2550 Executor::Interpreter(i) => ExecutorRef::Interpreter(i.as_interpreter_ref()), in executor()
2552 Executor::Native => ExecutorRef::Native, in executor()