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

Function GenCodeCmdJmpZ

NULLC/CodeGen_X86.cpp:1883–1890  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1881
1882
1883void GenCodeCmdJmpZ(VMCmd cmd)
1884{
1885 EMIT_COMMENT("JMPZ int");
1886
1887 EMIT_OP_REG(o_pop, rEAX);
1888 EMIT_OP_REG_REG(o_test, rEAX, rEAX);
1889 EMIT_OP_LABEL(o_jz, LABEL_GLOBAL | JUMP_NEAR | cmd.argument, true, true);
1890}
1891
1892void GenCodeCmdJmpNZ(VMCmd cmd)
1893{

Callers

nothing calls this directly

Calls 4

EMIT_COMMENTFunction · 0.85
EMIT_OP_REGFunction · 0.85
EMIT_OP_REG_REGFunction · 0.85
EMIT_OP_LABELFunction · 0.85

Tested by

no test coverage detected