Go to the source code of this file.
◆ ALU_OPS
Value:
F(or, 0x0b, 0x09, 1) \
F(xor, 0x33, 0x31, 6) \
F(add, 0x03, 0x01, 0) \
F(adc, 0x13, 0x11, 2) \
F(sub, 0x2b, 0x29, 5) \
F(sbb, 0x1b, 0x19, 3) \
F(cmp, 0x3b, 0x39, 7)
Definition at line 475 of file assembler_ia32.h.
◆ DECLARE_ALU
#define DECLARE_ALU |
( |
|
op, |
|
|
|
opcode, |
|
|
|
opcode2, |
|
|
|
modrm_opcode |
|
) |
| |
Value:
Alu(modrm_opcode,
dst, imm); \
} \
void op##l(
const Address&
dst,
const Immediate& imm) { \
Alu(modrm_opcode,
dst, imm); \
}
Definition at line 486 of file assembler_ia32.h.