Method
fabs64
(&mut self, dst: FReg, src: FReg)
Source from the content-addressed store, hash-verified
| 3794 | } |
| 3795 | |
| 3796 | fn fabs64(&mut self, dst: FReg, src: FReg) -> ControlFlow<Done> { |
| 3797 | let a = self.state[src].get_f64(); |
| 3798 | self.state[dst].set_f64(a.wasm_abs()); |
| 3799 | ControlFlow::Continue(()) |
| 3800 | } |
| 3801 | |
| 3802 | #[interp_disable_if_cfg(pulley_disable_interp_simd)] |
| 3803 | fn vaddi8x16(&mut self, operands: BinaryOperands<VReg>) -> ControlFlow<Done> { |
Callers
nothing calls this directly
Tested by
no test coverage detected