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

Function GenCodeCmdPushInt

NULLC/CodeGen_X86.cpp:1294–1302  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1292}
1293
1294void GenCodeCmdPushInt(VMCmd cmd)
1295{
1296 EMIT_COMMENT("PUSH int");
1297
1298 if(cmd.flag == ADDRESS_ABOLUTE)
1299 EMIT_OP_ADDR(o_push, sDWORD, cmd.argument+paramBase);
1300 else
1301 EMIT_OP_RPTR(o_push, sDWORD, rEBP, cmd.argument+paramBase);
1302}
1303
1304void GenCodeCmdPushFloat(VMCmd cmd)
1305{

Callers

nothing calls this directly

Calls 3

EMIT_COMMENTFunction · 0.85
EMIT_OP_ADDRFunction · 0.85
EMIT_OP_RPTRFunction · 0.85

Tested by

no test coverage detected