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

Method visit_i64_sub

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

Source from the content-addressed store, hash-verified

1191 }
1192
1193 fn visit_i64_sub(&mut self) -> Self::Output {
1194 self.context.i64_binop(self.masm, |masm, dst, src, size| {
1195 masm.sub(writable!(dst), dst, src, size)?;
1196 Ok(TypedReg::i64(dst))
1197 })
1198 }
1199
1200 fn visit_i32_mul(&mut self) -> Self::Output {
1201 self.context.i32_binop(self.masm, |masm, dst, src, size| {

Callers

nothing calls this directly

Calls 4

OkFunction · 0.85
i64Function · 0.85
i64_binopMethod · 0.80
subMethod · 0.45

Tested by

no test coverage detected