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

Method visit_i32_add

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

Source from the content-addressed store, hash-verified

1170 }
1171
1172 fn visit_i32_add(&mut self) -> Self::Output {
1173 self.context.i32_binop(self.masm, |masm, dst, src, size| {
1174 masm.add(writable!(dst), dst, src, size)?;
1175 Ok(TypedReg::i32(dst))
1176 })
1177 }
1178
1179 fn visit_i64_add(&mut self) -> Self::Output {
1180 self.context.i64_binop(self.masm, |masm, dst, src, size| {

Callers

nothing calls this directly

Calls 3

OkFunction · 0.85
i32_binopMethod · 0.80
addMethod · 0.45

Tested by

no test coverage detected