From: Wei Yongjun <yjwei@cn.fujitsu.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: Avi Kivity <avi@redhat.com>, kvm@vger.kernel.org
Subject: [PATCHv2] KVM: x86 emulator: cleanup for BitOp instruction emulation
Date: Wed, 04 Aug 2010 17:37:15 +0800 [thread overview]
Message-ID: <4C5934CB.3000500@cn.fujitsu.com> (raw)
In-Reply-To: <4C593257.2090702@redhat.com>
Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com>
---
arch/x86/kvm/emulate.c | 12 ++++--------
1 files changed, 4 insertions(+), 8 deletions(-)
diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
index eba5a67..74008ed 100644
--- a/arch/x86/kvm/emulate.c
+++ b/arch/x86/kvm/emulate.c
@@ -2617,6 +2617,10 @@ done_prefixes:
return 0;
}
+ /* Only subword offset for BitOp: bt/bts/btr/btc. */
+ if (c->d & BitOp)
+ c->src.val &= (c->dst.bytes << 3) - 1;
+
done:
return (rc == X86EMUL_UNHANDLEABLE) ? -1 : 0;
}
@@ -3303,8 +3307,6 @@ twobyte_insn:
case 0xa3:
bt: /* bt */
c->dst.type = OP_NONE;
- /* only subword offset */
- c->src.val &= (c->dst.bytes << 3) - 1;
emulate_2op_SrcV_nobyte("bt", c->src, c->dst, ctxt->eflags);
break;
case 0xa4: /* shld imm8, r, r/m */
@@ -3321,8 +3323,6 @@ twobyte_insn:
break;
case 0xab:
bts: /* bts */
- /* only subword offset */
- c->src.val &= (c->dst.bytes << 3) - 1;
emulate_2op_SrcV_nobyte("bts", c->src, c->dst, ctxt->eflags);
break;
case 0xac: /* shrd imm8, r, r/m */
@@ -3350,8 +3350,6 @@ twobyte_insn:
break;
case 0xb3:
btr: /* btr */
- /* only subword offset */
- c->src.val &= (c->dst.bytes << 3) - 1;
emulate_2op_SrcV_nobyte("btr", c->src, c->dst, ctxt->eflags);
break;
case 0xb6 ... 0xb7: /* movzx */
@@ -3373,8 +3371,6 @@ twobyte_insn:
break;
case 0xbb:
btc: /* btc */
- /* only subword offset */
- c->src.val &= (c->dst.bytes << 3) - 1;
emulate_2op_SrcV_nobyte("btc", c->src, c->dst, ctxt->eflags);
break;
case 0xbe ... 0xbf: /* movsx */
--
1.7.0.4
next prev parent reply other threads:[~2010-08-04 9:39 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 ` Wei Yongjun [this message]
2010-08-04 9:45 ` [PATCHv2] " Paolo Bonzini
2010-08-04 9:41 ` [PATCH] KVM: x86 emulator: fix group 8 instruction decoding Paolo Bonzini
2010-08-05 6:07 ` [PATCHv3] KVM: x86 emulator: fix BitOp instruction emulation 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=4C5934CB.3000500@cn.fujitsu.com \
--to=yjwei@cn.fujitsu.com \
--cc=avi@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=pbonzini@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