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

Function GenCodeCmdBitAnd

NULLC/CodeGen_X86.cpp:2509–2518  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2507}
2508
2509void GenCodeCmdBitAnd(VMCmd cmd)
2510{
2511 (void)cmd;
2512 EMIT_COMMENT("BAND int");
2513 EMIT_OP_REG(o_pop, rEAX);
2514 EMIT_OP_REG(o_pop, rEDX);
2515 EMIT_OP_REG_REG(o_and, rEAX, rEDX);
2516 EMIT_OP_REG(o_push, rEAX);
2517 KILL_REG(rEDX);
2518}
2519
2520void GenCodeCmdBitOr(VMCmd cmd)
2521{

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