MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / done_call_indirect_host

Method done_call_indirect_host

pulley/src/interp.rs:992–998  ·  view source on GitHub ↗
(&mut self, id: u8)

Source from the content-addressed store, hash-verified

990 /// Finishes execution by recording `DoneReason::CallIndirectHost`.
991 #[cold]
992 pub fn done_call_indirect_host(&mut self, id: u8) -> ControlFlow<Done> {
993 self.state.done_reason = Some(DoneReason::CallIndirectHost {
994 id,
995 resume: self.pc.as_ptr(),
996 });
997 ControlFlow::Break(Done { _priv: () })
998 }
999
1000 /// Finishes execution by recording `DoneReason::ReturnToHost`.
1001 #[cold]

Callers 1

call_indirect_hostMethod · 0.80

Calls 1

as_ptrMethod · 0.45

Tested by

no test coverage detected