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

Method visit_i32_mul

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

Source from the content-addressed store, hash-verified

1198 }
1199
1200 fn visit_i32_mul(&mut self) -> Self::Output {
1201 self.context.i32_binop(self.masm, |masm, dst, src, size| {
1202 masm.mul(writable!(dst), dst, src, size)?;
1203 Ok(TypedReg::i32(dst))
1204 })
1205 }
1206
1207 fn visit_i64_mul(&mut self) -> Self::Output {
1208 self.context.i64_binop(self.masm, |masm, dst, src, size| {

Callers

nothing calls this directly

Calls 3

OkFunction · 0.85
i32_binopMethod · 0.80
mulMethod · 0.45

Tested by

no test coverage detected