| 1783 | } |
| 1784 | |
| 1785 | void GenCodeCmdCopyDorL(VMCmd cmd) |
| 1786 | { |
| 1787 | (void)cmd; |
| 1788 | EMIT_COMMENT("COPY qword"); |
| 1789 | |
| 1790 | EMIT_OP_REG_RPTR(o_mov, rEDX, sDWORD, rESP, 0); |
| 1791 | EMIT_OP_REG_RPTR(o_mov, rEAX, sDWORD, rESP, 4); |
| 1792 | EMIT_OP_REG(o_push, rEAX); |
| 1793 | EMIT_OP_REG(o_push, rEDX); |
| 1794 | } |
| 1795 | |
| 1796 | void GenCodeCmdCopyI(VMCmd cmd) |
| 1797 | { |
nothing calls this directly
no test coverage detected