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

Function GenCodeCmdBitXor

NULLC/CodeGen_X86.cpp:2531–2540  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2529}
2530
2531void GenCodeCmdBitXor(VMCmd cmd)
2532{
2533 (void)cmd;
2534 EMIT_COMMENT("BXOR int");
2535 EMIT_OP_REG(o_pop, rEAX);
2536 EMIT_OP_REG(o_pop, rEDX);
2537 EMIT_OP_REG_REG(o_xor, rEAX, rEDX);
2538 EMIT_OP_REG(o_push, rEAX);
2539 KILL_REG(rEDX);
2540}
2541
2542void GenCodeCmdLogAnd(VMCmd cmd)
2543{

Callers

nothing calls this directly

Calls 3

EMIT_COMMENTFunction · 0.85
EMIT_OP_REGFunction · 0.85
EMIT_OP_REG_REGFunction · 0.85

Tested by

no test coverage detected