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

Function GenCodeCmdMovFloat

NULLC/CodeGen_X86.cpp:1488–1497  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1486}
1487
1488void GenCodeCmdMovFloat(VMCmd cmd)
1489{
1490 EMIT_COMMENT("MOV float");
1491
1492 EMIT_OP_RPTR(o_fld, sQWORD, rESP, 0);
1493 if(cmd.flag == ADDRESS_ABOLUTE)
1494 EMIT_OP_ADDR(o_fstp, sDWORD, cmd.argument+paramBase);
1495 else
1496 EMIT_OP_RPTR(o_fstp, sDWORD, rEBP, cmd.argument+paramBase);
1497}
1498
1499void GenCodeCmdMovDorL(VMCmd cmd)
1500{

Callers

nothing calls this directly

Calls 3

EMIT_COMMENTFunction · 0.85
EMIT_OP_RPTRFunction · 0.85
EMIT_OP_ADDRFunction · 0.85

Tested by

no test coverage detected