| 188 | } |
| 189 | |
| 190 | bool x86JneHandler(Instruction* instruction) |
| 191 | { |
| 192 | if (instruction->getOperandInfo()[0].type != ZYDIS_OPERAND_TYPE_IMMEDIATE) |
| 193 | return 0; |
| 194 | emitPushRegister(instruction, ZYDIS_REGISTER_RFLAGS, 64); |
| 195 | emitJne(instruction); |
| 196 | return 1; |
| 197 | } |
| 198 | |
| 199 | bool x86ArithmeticHandler(Instruction* instruction, ZydisMnemonic operation, bool storeOutput) |
| 200 | { |
no test coverage detected