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

Function GenCodeCmdBitAndL

NULLC/CodeGen_X86.cpp:2780–2788  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2778}
2779
2780void GenCodeCmdBitAndL(VMCmd cmd)
2781{
2782 (void)cmd;
2783 EMIT_COMMENT("BAND long");
2784 EMIT_OP_REG(o_pop, rEAX);
2785 EMIT_OP_REG(o_pop, rEDX);
2786 EMIT_OP_RPTR_REG(o_and, sDWORD, rESP, 0, rEAX);
2787 EMIT_OP_RPTR_REG(o_and, sDWORD, rESP, 4, rEDX);
2788}
2789
2790void GenCodeCmdBitOrL(VMCmd cmd)
2791{

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