From: Paolo Bonzini <pbonzini@redhat.com>
To: Wei Yongjun <yjwei@cn.fujitsu.com>
Cc: Avi Kivity <avi@redhat.com>, kvm@vger.kernel.org
Subject: Re: [PATCH] KVM: x86 emulator: fix group 8 instruction decoding
Date: Wed, 04 Aug 2010 11:41:33 +0200 [thread overview]
Message-ID: <4C5935CD.7010005@redhat.com> (raw)
In-Reply-To: <4C592470.1010608@cn.fujitsu.com>
On 08/04/2010 10:27 AM, Wei Yongjun wrote:
> Group 8 instruction, BT[S|R|C] should be mask as BitOp.
>
> Signed-off-by: Wei Yongjun<yjwei@cn.fujitsu.com>
> ---
> arch/x86/kvm/emulate.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
> index d197b46..eba5a67 100644
> --- a/arch/x86/kvm/emulate.c
> +++ b/arch/x86/kvm/emulate.c
> @@ -2261,7 +2261,7 @@ static struct opcode twobyte_table[256] = {
> D(DstReg | SrcMem16 | ModRM | Mov),
> /* 0xB8 - 0xBF */
> N, N,
> - G(0, group8), D(DstMem | SrcReg | ModRM | BitOp | Lock),
> + G(BitOp, group8), D(DstMem | SrcReg | ModRM | BitOp | Lock),
> N, N, D(ByteOp | DstReg | SrcMem | ModRM | Mov),
> D(DstReg | SrcMem16 | ModRM | Mov),
> /* 0xC0 - 0xCF */
This is correct with your 4/4 patch, but incorrect before it. It will
incorrectly cause the emulator to adjust the address of the source
operand. This is documented to happen with a register source but not
with an immediate source. You can test it with this:
#include <stdio.h>
int main()
{
int a[3] = {0, 0, 0};
asm ("btcl $32, %0" :: "m" (a[0]) : "memory");
asm ("btcl $1, %0" :: "m" (a[1]) : "memory");
asm ("btcl %1, %0" :: "m" (a[0]), "r" (66) : "memory");
printf ("%x %x %x\n", a[0], a[1], a[2]);
}
It prints "1 2 4". I'm quite confident that instead it would print "0 3
4" with this patch, and "5 2 0" with this patch + 4/4.
Paolo
next prev parent reply other threads:[~2010-08-04 9:41 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-08-04 8:27 [PATCH] KVM: x86 emulator: fix group 8 instruction decoding Wei Yongjun
2010-08-04 9:01 ` [PATCH] KVM: x86 emulator: cleanup for BitOp instruction emulation Wei Yongjun
2010-08-04 9:26 ` Paolo Bonzini
2010-08-04 9:36 ` Wei Yongjun
2010-08-04 9:37 ` [PATCHv2] " Wei Yongjun
2010-08-04 9:45 ` Paolo Bonzini
2010-08-04 9:41 ` Paolo Bonzini [this message]
2010-08-05 6:07 ` [PATCHv3] KVM: x86 emulator: fix " Wei Yongjun
2010-08-05 9:05 ` [PATCH] KVM: x86 emulator: fix group 8 instruction decoding 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=4C5935CD.7010005@redhat.com \
--to=pbonzini@redhat.com \
--cc=avi@redhat.com \
--cc=kvm@vger.kernel.org \
--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.