kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Gleb Natapov <gleb@redhat.com>
To: Avi Kivity <avi@redhat.com>
Cc: kvm@vger.kernel.org, Marcelo Tosatti <mtosatti@redhat.com>,
	Mohammed Gamal <m.gamal005@gmail.com>
Subject: Re: [PATCH 4/4] KVM: x86 emulator: fix REPZ/REPNZ termination condition
Date: Tue, 17 Aug 2010 12:13:02 +0300	[thread overview]
Message-ID: <20100817091302.GW10499@redhat.com> (raw)
In-Reply-To: <1282033603-25938-5-git-send-email-avi@redhat.com>

On Tue, Aug 17, 2010 at 11:26:43AM +0300, Avi Kivity wrote:
> EFLAGS.ZF needs to be checked after each iteration, not before.
> 
> Signed-off-by: Avi Kivity <avi@redhat.com>
> ---
>  arch/x86/kvm/emulate.c |   42 +++++++++++++++++++++++-------------------
>  1 files changed, 23 insertions(+), 19 deletions(-)
> 
> diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
> index 0c0ada9..a2edfb1 100644
> --- a/arch/x86/kvm/emulate.c
> +++ b/arch/x86/kvm/emulate.c
> @@ -2747,6 +2747,7 @@ x86_emulate_insn(struct x86_emulate_ctxt *ctxt)
>  	int rc = X86EMUL_CONTINUE;
>  	int saved_dst_type = c->dst.type;
>  	int irq; /* Used for int 3, int, and into */
> +	ulong old_eip;
Is never used.

>  
>  	ctxt->decode.mem_read.pos = 0;
>  
> @@ -2771,28 +2772,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;
>  	}
>  
>  	if (c->src.type == OP_MEM) {
> @@ -3229,6 +3212,7 @@ special_insn:
>  	}
>  
>  writeback:
> +	old_eip = c->eip;
>  	rc = writeback(ctxt, ops);
>  	if (rc != X86EMUL_CONTINUE)
>  		goto done;
> @@ -3250,13 +3234,33 @@ writeback:
>  	if (c->rep_prefix && (c->d & String)) {
>  		struct read_cache *rc = &ctxt->decode.io_read;
>  		register_address_increment(c, &c->regs[VCPU_REGS_RCX], -1);
> +		/* 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)) {
> +			trace_printk("c->eip %lx ctxt->eip %lx\n",
> +				     c->eip, ctxt->eip);
> +			if (((c->rep_prefix == REPE_PREFIX) &&
> +			     ((ctxt->eflags & EFLG_ZF) == 0))
> +			    || ((c->rep_prefix == REPNE_PREFIX) &&
> +				((ctxt->eflags & EFLG_ZF) == EFLG_ZF))) {
> +				ctxt->restart = false;
Why not jump to string_done label here?

> +			}
> +		}
>  		/*
>  		 * Re-enter guest when pio read ahead buffer is empty or,
>  		 * if it is not used, after each 1024 iteration.
>  		 */
>  		if ((rc->end == 0 && !(c->regs[VCPU_REGS_RCX] & 0x3ff)) ||
> -		    (rc->end != 0 && rc->end == rc->pos))
> +		    (rc->end != 0 && rc->end == rc->pos)) {
>  			ctxt->restart = false;
> +			c->eip = ctxt->eip;
We can get here when instruction is completed by above "if", so same
instruction will reexecute once again.


> +		}
>  	}
>  	/*
>  	 * reset read cache here in case string instruction is restared
> -- 
> 1.7.1
> 
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

--
			Gleb.

  reply	other threads:[~2010-08-17  9:13 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-08-17  8:26 [PATCH 0/4] Emulator INTn and SCAS fixes Avi Kivity
2010-08-17  8:26 ` [PATCH 1/4] KVM: Initialize operand and address sizes before emulating interrupts Avi Kivity
2010-08-17  8:26 ` [PATCH 2/4] KVM: x86 emulator: fix INTn emulation not pushing EFLAGS and CS Avi Kivity
2010-08-17  8:26 ` [PATCH 3/4] KVM: x86 emulator: implement SCAS (opcodes AE, AF) Avi Kivity
2010-08-17  8:26 ` [PATCH 4/4] KVM: x86 emulator: fix REPZ/REPNZ termination condition Avi Kivity
2010-08-17  9:13   ` Gleb Natapov [this message]
2010-08-17  9:20     ` Avi Kivity
2010-08-17  9:27       ` Gleb Natapov
2010-08-17  9:29         ` 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=20100817091302.GW10499@redhat.com \
    --to=gleb@redhat.com \
    --cc=avi@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=m.gamal005@gmail.com \
    --cc=mtosatti@redhat.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).