(&mut self, amt: u32)
| 2100 | } |
| 2101 | |
| 2102 | fn stack_free32(&mut self, amt: u32) -> ControlFlow<Done> { |
| 2103 | let amt = usize::try_from(amt).unwrap(); |
| 2104 | let new_sp = self.state[XReg::sp].get_ptr::<u8>().wrapping_add(amt); |
| 2105 | self.set_sp_unchecked(new_sp); |
| 2106 | ControlFlow::Continue(()) |
| 2107 | } |
| 2108 | |
| 2109 | fn zext8(&mut self, dst: XReg, src: XReg) -> ControlFlow<Done> { |
| 2110 | let src = self.state[src].get_u64() as u8; |
nothing calls this directly
no test coverage detected