(&mut self, dst: XReg, src: XReg)
| 2131 | } |
| 2132 | |
| 2133 | fn sext16(&mut self, dst: XReg, src: XReg) -> ControlFlow<Done> { |
| 2134 | let src = self.state[src].get_i64() as i16; |
| 2135 | self.state[dst].set_i64(src.into()); |
| 2136 | ControlFlow::Continue(()) |
| 2137 | } |
| 2138 | |
| 2139 | fn sext32(&mut self, dst: XReg, src: XReg) -> ControlFlow<Done> { |
| 2140 | let src = self.state[src].get_i64() as i32; |