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

Function GenCodeCmdLogNot

NULLC/CodeGen_X86.cpp:3035–3043  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3033}
3034
3035void GenCodeCmdLogNot(VMCmd cmd)
3036{
3037 (void)cmd;
3038 EMIT_COMMENT("LNOT int");
3039 EMIT_OP_REG_REG(o_xor, rEAX, rEAX);
3040 EMIT_OP_RPTR_NUM(o_cmp, sDWORD, rESP, 0, 0);
3041 EMIT_OP_REG(o_sete, rEAX);
3042 EMIT_OP_RPTR_REG(o_mov, sDWORD, rESP, 0, rEAX);
3043}
3044
3045
3046void GenCodeCmdNegL(VMCmd cmd)

Callers

nothing calls this directly

Calls 5

EMIT_COMMENTFunction · 0.85
EMIT_OP_REG_REGFunction · 0.85
EMIT_OP_RPTR_NUMFunction · 0.85
EMIT_OP_REGFunction · 0.85
EMIT_OP_RPTR_REGFunction · 0.85

Tested by

no test coverage detected