| 168 | } |
| 169 | |
| 170 | bool x86RetHandler(Instruction* instruction) |
| 171 | { |
| 172 | // add check for operand (i.e. ret 0xC) |
| 173 | pushVmContext(instruction); |
| 174 | emitExit(instruction); |
| 175 | return 1; |
| 176 | } |
| 177 | |
| 178 | bool x86CmpHandler(Instruction* instruction) { return x86ArithmeticHandler(instruction, ZYDIS_MNEMONIC_SUB, false); } |
| 179 |
no test coverage detected