From: Avi Kivity <avi-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
To: nitin.a.kamble-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org
Cc: kvm-devel <kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
Subject: Re: [patch] (big) real mode emulation - jb
Date: Wed, 31 Oct 2007 02:59:01 +0200 [thread overview]
Message-ID: <4727D355.8090704@qumranet.com> (raw)
In-Reply-To: <1193791471.9258.20.camel-mpPvwfgnXtFHIUuj5cj4Omt3HXsI98Cx0E9HWUfgJXw@public.gmane.org>
Nitin A Kamble wrote:
> Hi Avi,
> Attached is the patch to implement emulation of instruction:
>
> jb (opcode 0xe3)
> [PATCH] Implement emulation of instruction jb (conditional jump)
> opcodes: 0xe3
> From:
> Nitin A Kamble <nitin.a.kamble-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
> To:
> Date:
> 2007-10-31 05:41
>
> Signed-off-by: Nitin A Kamble <nitin.a.kamble-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
> ---
> drivers/kvm/x86_emulate.c | 25 ++++++++++++++++++++++++-
> 1 files changed, 24 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/kvm/x86_emulate.c b/drivers/kvm/x86_emulate.c
> index 579cfcf..1357355 100644
> --- a/drivers/kvm/x86_emulate.c
> +++ b/drivers/kvm/x86_emulate.c
> @@ -165,7 +165,7 @@ static u16 opcode_table[256] = {
> /* 0xD8 - 0xDF */
> 0, 0, 0, 0, 0, 0, 0, 0,
> /* 0xE0 - 0xE7 */
> - 0, 0, 0, 0, 0, 0, 0, 0,
> + 0, 0, 0, ImplicitOps, 0, 0, 0, 0,
> /* 0xE8 - 0xEF */
> ImplicitOps, SrcImm|ImplicitOps, 0, SrcImmByte|ImplicitOps, 0,
> 0, 0, 0,
> /* 0xF0 - 0xF7 */
> @@ -1446,6 +1446,29 @@ x86_emulate_insn(struct x86_emulate_ctxt *ctxt,
> struct x86_emulate_ops *ops)
> c->src.val = c->regs[VCPU_REGS_RCX];
> emulate_grp2(ctxt);
> break;
> + case 0xe3 : /* jb */ {
> + int rel = insn_fetch(s8, 1, c->eip);
> + int condition = 0;
> + if (test_cc(c->b, ctxt->eflags)) {
> + switch (c->op_bytes) {
> + case 2:
> + condition =
> + (0 == *(u16 *)
> &c->regs[VCPU_REGS_RCX]);
> + break;
> + case 4:
> + condition =
> + (0 == *(u32 *)
> &c->regs[VCPU_REGS_RCX]);
> + break;
> + case 8:
> + condition =
> + (0 == *(u64 *)
> &c->regs[VCPU_REGS_RCX]);
> + break;
> + }
> + }
> + if (condition)
> + JMP_REL(rel);
> + break;
> + }
> case 0xf6 ... 0xf7: /* Grp3 */
> rc = emulate_grp3(ctxt, ops);
> if (rc != 0)
This looks more like jcxz?
--
Any sufficiently difficult bug is indistinguishable from a feature.
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
prev parent reply other threads:[~2007-10-31 0:59 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-10-31 0:44 [patch] (big) real mode emulation - jb Nitin A Kamble
[not found] ` <1193791471.9258.20.camel-mpPvwfgnXtFHIUuj5cj4Omt3HXsI98Cx0E9HWUfgJXw@public.gmane.org>
2007-10-31 0:59 ` Avi Kivity [this message]
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=4727D355.8090704@qumranet.com \
--to=avi-atkuwr5tajbwk0htik3j/w@public.gmane.org \
--cc=kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
--cc=nitin.a.kamble-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
/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.