MCPcopy Create free account
hub / github.com/WheretIB/nullc / GenCodeCmdPowL

Function GenCodeCmdPowL

NULLC/CodeGen_X86.cpp:2613–2622  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2611}
2612
2613void 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
2624void GenCodeCmdModL(VMCmd cmd)
2625{

Callers

nothing calls this directly

Calls 4

EMIT_COMMENTFunction · 0.85
EMIT_OP_REG_NUMFunction · 0.85
EMIT_OP_REGFunction · 0.85
EMIT_OP_RPTR_REGFunction · 0.85

Tested by

no test coverage detected