| 2611 | } |
| 2612 | |
| 2613 | void GenCodeCmdPowL(VMCmd cmd) |
| 2614 | { |
| 2615 | (void)cmd; |
| 2616 | EMIT_COMMENT("POW long"); |
| 2617 | EMIT_OP_REG_NUM(o_mov, rECX, (int)(intptr_t)longPow); |
| 2618 | EMIT_OP_REG(o_call, rECX); |
| 2619 | EMIT_OP_REG_NUM(o_add, rESP, 8); |
| 2620 | EMIT_OP_RPTR_REG(o_mov, sDWORD, rESP, 4, rEDX); |
| 2621 | EMIT_OP_RPTR_REG(o_mov, sDWORD, rESP, 0, rEAX); |
| 2622 | } |
| 2623 | |
| 2624 | void GenCodeCmdModL(VMCmd cmd) |
| 2625 | { |
nothing calls this directly
no test coverage detected