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

Function GenCodeCmdBitXorL

NULLC/CodeGen_X86.cpp:2800–2808  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2798}
2799
2800void GenCodeCmdBitXorL(VMCmd cmd)
2801{
2802 (void)cmd;
2803 EMIT_COMMENT("BXOR long");
2804 EMIT_OP_REG(o_pop, rEAX);
2805 EMIT_OP_REG(o_pop, rEDX);
2806 EMIT_OP_RPTR_REG(o_xor, sDWORD, rESP, 0, rEAX);
2807 EMIT_OP_RPTR_REG(o_xor, sDWORD, rESP, 4, rEDX);
2808}
2809
2810void GenCodeCmdLogAndL(VMCmd cmd)
2811{

Callers

nothing calls this directly

Calls 3

EMIT_COMMENTFunction · 0.85
EMIT_OP_REGFunction · 0.85
EMIT_OP_RPTR_REGFunction · 0.85

Tested by

no test coverage detected