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

Method fneq64

pulley/src/interp.rs:3241–3246  ·  view source on GitHub ↗
(&mut self, dst: XReg, src1: FReg, src2: FReg)

Source from the content-addressed store, hash-verified

3239 }
3240
3241 fn fneq64(&mut self, dst: XReg, src1: FReg, src2: FReg) -> ControlFlow<Done> {
3242 let a = self.state[src1].get_f64();
3243 let b = self.state[src2].get_f64();
3244 self.state[dst].set_u32(u32::from(a != b));
3245 ControlFlow::Continue(())
3246 }
3247
3248 fn flt64(&mut self, dst: XReg, src1: FReg, src2: FReg) -> ControlFlow<Done> {
3249 let a = self.state[src1].get_f64();

Callers

nothing calls this directly

Calls 3

fromFunction · 0.85
get_f64Method · 0.45
set_u32Method · 0.45

Tested by

no test coverage detected