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

Method flteq64

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

Source from the content-addressed store, hash-verified

3253 }
3254
3255 fn flteq64(&mut self, dst: XReg, src1: FReg, src2: FReg) -> ControlFlow<Done> {
3256 let a = self.state[src1].get_f64();
3257 let b = self.state[src2].get_f64();
3258 self.state[dst].set_u32(u32::from(a <= b));
3259 ControlFlow::Continue(())
3260 }
3261
3262 fn fselect32(
3263 &mut self,

Callers

nothing calls this directly

Calls 3

fromFunction · 0.85
get_f64Method · 0.45
set_u32Method · 0.45

Tested by

no test coverage detected