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

Method xeq64

pulley/src/interp.rs:1915–1920  ·  view source on GitHub ↗
(&mut self, operands: BinaryOperands<XReg>)

Source from the content-addressed store, hash-verified

1913 }
1914
1915 fn xeq64(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> {
1916 let a = self.state[operands.src1].get_u64();
1917 let b = self.state[operands.src2].get_u64();
1918 self.state[operands.dst].set_u32(u32::from(a == b));
1919 ControlFlow::Continue(())
1920 }
1921
1922 fn xneq64(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> {
1923 let a = self.state[operands.src1].get_u64();

Callers

nothing calls this directly

Calls 3

fromFunction · 0.85
get_u64Method · 0.45
set_u32Method · 0.45

Tested by

no test coverage detected