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

Method xneg64

pulley/src/interp.rs:1909–1913  ·  view source on GitHub ↗
(&mut self, dst: XReg, src: XReg)

Source from the content-addressed store, hash-verified

1907 }
1908
1909 fn xneg64(&mut self, dst: XReg, src: XReg) -> ControlFlow<Done> {
1910 let a = self.state[src].get_i64();
1911 self.state[dst].set_i64(a.wrapping_neg());
1912 ControlFlow::Continue(())
1913 }
1914
1915 fn xeq64(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> {
1916 let a = self.state[operands.src1].get_u64();

Callers

nothing calls this directly

Calls 3

set_i64Method · 0.80
wrapping_negMethod · 0.80
get_i64Method · 0.45

Tested by

no test coverage detected