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

Method xslt64

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

Source from the content-addressed store, hash-verified

1927 }
1928
1929 fn xslt64(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> {
1930 let a = self.state[operands.src1].get_i64();
1931 let b = self.state[operands.src2].get_i64();
1932 self.state[operands.dst].set_u32(u32::from(a < b));
1933 ControlFlow::Continue(())
1934 }
1935
1936 fn xslteq64(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> {
1937 let a = self.state[operands.src1].get_i64();

Callers

nothing calls this directly

Calls 3

fromFunction · 0.85
get_i64Method · 0.45
set_u32Method · 0.45

Tested by

no test coverage detected