Method
xmul32_s32
(&mut self, dst: XReg, src1: XReg, src2: i32)
Source from the content-addressed store, hash-verified
| 1794 | } |
| 1795 | |
| 1796 | fn xmul32_s32(&mut self, dst: XReg, src1: XReg, src2: i32) -> ControlFlow<Done> { |
| 1797 | let a = self.state[src1].get_i32(); |
| 1798 | self.state[dst].set_i32(a.wrapping_mul(src2)); |
| 1799 | ControlFlow::Continue(()) |
| 1800 | } |
| 1801 | |
| 1802 | fn xmul64(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> { |
| 1803 | let a = self.state[operands.src1].get_u64(); |
Tested by
no test coverage detected