All of lore.kernel.org
 help / color / mirror / Atom feed
From: Avi Kivity <avi@redhat.com>
To: Wei Yongjun <yjwei@cn.fujitsu.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>, kvm@vger.kernel.org
Subject: Re: [PATCH v2 3/3] KVM: x86 emulator: fix REPZ/REPNZ termination condition
Date: Thu, 19 Aug 2010 09:59:15 +0300	[thread overview]
Message-ID: <4C6CD643.4050907@redhat.com> (raw)
In-Reply-To: <4C6CB959.7050707@cn.fujitsu.com>

 On 08/19/2010 07:55 AM, Wei Yongjun wrote:
> Hi Avi Kivity:
>
>> EFLAGS.ZF needs to be checked after each iteration, not before.
>>
>> Signed-off-by: Avi Kivity <avi@redhat.com>
>> ---
>>  arch/x86/kvm/emulate.c |   38 ++++++++++++++++++--------------------
>>  1 files changed, 18 insertions(+), 20 deletions(-)
>>
>> diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
>> index 729853a..d15a746 100644
>> --- a/arch/x86/kvm/emulate.c
>> +++ b/arch/x86/kvm/emulate.c
>> @@ -2782,28 +2782,10 @@ x86_emulate_insn(struct x86_emulate_ctxt *ctxt)
>>  		ctxt->restart = true;
>>  		/* All REP prefixes have the same first termination condition */
>>  		if (address_mask(c, c->regs[VCPU_REGS_RCX]) == 0) {
>> -		string_done:
>>  			ctxt->restart = false;
>>  			ctxt->eip = c->eip;
>>  			goto done;
>>  		}
>> -		/* The second termination condition only applies for REPE
>> -		 * and REPNE. Test if the repeat string operation prefix is
>> -		 * REPE/REPZ or REPNE/REPNZ and if it's the case it tests the
>> -		 * corresponding termination condition according to:
>> -		 * 	- if REPE/REPZ and ZF = 0 then done
>> -		 * 	- if REPNE/REPNZ and ZF = 1 then done
>> -		 */
>> -		if ((c->b == 0xa6) || (c->b == 0xa7) ||
>> -		    (c->b == 0xae) || (c->b == 0xaf)) {
>> -			if ((c->rep_prefix == REPE_PREFIX) &&
>> -			    ((ctxt->eflags & EFLG_ZF) == 0))
>> -				goto string_done;
>> -			if ((c->rep_prefix == REPNE_PREFIX) &&
>> -			    ((ctxt->eflags & EFLG_ZF) == EFLG_ZF))
>> -				goto string_done;
>> -		}
>> -		c->eip = ctxt->eip;
>>   
> It seems that you cannot remove the above line, the assign for eip is need.
> remove it will break FreeDOS livecd. Not sure why need this.

I'll try it out. Are you running FreeDOS with
emulate_invalid_guest_state=0 or 1?

-- 
I have a truly marvellous patch that fixes the bug which this
signature is too narrow to contain.


  reply	other threads:[~2010-08-19  6:59 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-08-17 16:44 [PATCH v2 0/3] Emulator INTn and SCAS fixes Avi Kivity
2010-08-17 16:44 ` [PATCH v2 1/3] KVM: x86 emulator: fix INTn emulation not pushing EFLAGS and CS Avi Kivity
2010-08-17 16:44 ` [PATCH v2 2/3] KVM: x86 emulator: implement SCAS (opcodes AE, AF) Avi Kivity
2010-08-17 16:44 ` [PATCH v2 3/3] KVM: x86 emulator: fix REPZ/REPNZ termination condition Avi Kivity
2010-08-19  4:55   ` Wei Yongjun
2010-08-19  6:59     ` Avi Kivity [this message]
2010-08-19  8:32       ` Wei Yongjun
2010-08-19  8:39       ` Wei Yongjun
2010-08-19 10:55   ` Gleb Natapov
2010-08-19 11:31     ` Avi Kivity

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4C6CD643.4050907@redhat.com \
    --to=avi@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=mtosatti@redhat.com \
    --cc=yjwei@cn.fujitsu.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.