search for: next_eip

Displaying 1 result from an estimated 1 matches for "next_eip".

Did you mean: new_eip
2011 Nov 30
0
[PATCH 4/4] x86/emulator: cleanup
...;& !(_regs.eflags & EFLG_ZF)) || - ((rep_prefix == REPNE_PREFIX) && (_regs.eflags & EFLG_ZF)) ) + if ( (repe_prefix() && !(_regs.eflags & EFLG_ZF)) || + (repne_prefix() && (_regs.eflags & EFLG_ZF)) ) _regs.eip = next_eip; break; } @@ -2464,8 +2465,8 @@ x86_emulate( put_rep_prefix(1); /* cmp: dst - src ==> src=*%%edi,dst=%%eax ==> %%eax - *%%edi */ emulate_2op_SrcV("cmp", src, dst, _regs.eflags); - if ( ((rep_prefix == REPE_PREFIX) && !(_regs.ef...