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

Method visit_i64_mul

winch/codegen/src/visitor.rs:1207–1212  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

1205 }
1206
1207 fn visit_i64_mul(&mut self) -> Self::Output {
1208 self.context.i64_binop(self.masm, |masm, dst, src, size| {
1209 masm.mul(writable!(dst), dst, src, size)?;
1210 Ok(TypedReg::i64(dst))
1211 })
1212 }
1213
1214 fn visit_i32_div_s(&mut self) -> Self::Output {
1215 use DivKind::*;

Callers

nothing calls this directly

Calls 4

OkFunction · 0.85
i64Function · 0.85
i64_binopMethod · 0.80
mulMethod · 0.45

Tested by

no test coverage detected