| 180 | bool x86TestHandler(Instruction* instruction) { return x86ArithmeticHandler(instruction, ZYDIS_MNEMONIC_AND, false); } |
| 181 | |
| 182 | bool x86JmpHandler(Instruction* instruction) |
| 183 | { |
| 184 | if (instruction->getOperandInfo()[0].type != ZYDIS_OPERAND_TYPE_IMMEDIATE) |
| 185 | return 0; |
| 186 | emitJmp(instruction); |
| 187 | return 1; |
| 188 | } |
| 189 | |
| 190 | bool x86JneHandler(Instruction* instruction) |
| 191 | { |
no test coverage detected