Method
sext32
(&mut self, dst: XReg, src: XReg)
Source from the content-addressed store, hash-verified
| 2137 | } |
| 2138 | |
| 2139 | fn sext32(&mut self, dst: XReg, src: XReg) -> ControlFlow<Done> { |
| 2140 | let src = self.state[src].get_i64() as i32; |
| 2141 | self.state[dst].set_i64(src.into()); |
| 2142 | ControlFlow::Continue(()) |
| 2143 | } |
| 2144 | |
| 2145 | fn xdiv32_s(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> { |
| 2146 | let a = self.state[operands.src1].get_i32(); |
Callers
nothing calls this directly
Tested by
no test coverage detected