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

Method xslt32

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

Source from the content-addressed store, hash-verified

1969 }
1970
1971 fn xslt32(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> {
1972 let a = self.state[operands.src1].get_i32();
1973 let b = self.state[operands.src2].get_i32();
1974 self.state[operands.dst].set_u32(u32::from(a < b));
1975 ControlFlow::Continue(())
1976 }
1977
1978 fn xslteq32(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> {
1979 let a = self.state[operands.src1].get_i32();

Callers

nothing calls this directly

Calls 3

fromFunction · 0.85
get_i32Method · 0.45
set_u32Method · 0.45

Tested by

no test coverage detected