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

Method visit_call

winch/codegen/src/visitor.rs:1680–1684  ·  view source on GitHub ↗
(&mut self, index: u32)

Source from the content-addressed store, hash-verified

1678 }
1679
1680 fn visit_call(&mut self, index: u32) -> Self::Output {
1681 let callee = self.env.callee_from_index(FuncIndex::from_u32(index));
1682 FnCall::emit::<M>(&mut self.env, self.masm, &mut self.context, callee)?;
1683 Ok(())
1684 }
1685
1686 fn visit_call_indirect(&mut self, type_index: u32, table_index: u32) -> Self::Output {
1687 // Spill now because `emit_table_get` and the `FnCall::emit`

Callers

nothing calls this directly

Calls 2

OkFunction · 0.85
callee_from_indexMethod · 0.80

Tested by

no test coverage detected