xor op1, op2
| 963 | |
| 964 | // xor op1, op2 |
| 965 | int x86XOR(unsigned char *stream, x86Reg op1, x86Reg op2) |
| 966 | { |
| 967 | stream[0] = 0x31; |
| 968 | stream[1] = encodeRegister(op1, regCode[op2]); |
| 969 | return 2; |
| 970 | } |
| 971 | // xor dword [index*mult+base+shift], op2 |
| 972 | int x86XOR(unsigned char *stream, x86Size size, x86Reg index, int multiplier, x86Reg base, int shift, x86Reg op2) |
| 973 | { |
no test coverage detected