public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
From: "Radim Krčmář" <rkrcmar@redhat.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: linux-kernel@vger.kernel.org, kvm@vger.kernel.org,
	namit@cs.technion.ac.il
Subject: Re: [PATCH] KVM: x86: save a bit in the decoding flags
Date: Fri, 7 Nov 2014 17:43:37 +0100	[thread overview]
Message-ID: <20141107164337.GA22459@potion.brq.redhat.com> (raw)
In-Reply-To: <1415296011-15062-1-git-send-email-pbonzini@redhat.com>

2014-11-06 18:46+0100, Paolo Bonzini:
> AVX instructions are just tweaks of the operand length and the alignment
> restrictions of SSE instructions, and in fact the Avx bit is just a
> duplicate of Unaligned.  Drop it.
> 
> Suggested-by: Nadav Amit <namit@cs.technion.ac.il>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---

I think this forces our future AVX implementation to be very hacky,
we couldn't tell explicitly (un)aligned SSE2/AVX apart.

>  arch/x86/kvm/emulate.c |    5 +----
>  1 files changed, 1 insertions(+), 4 deletions(-)
> 
> diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
> index 9cc476f..87c9431 100644
> --- a/arch/x86/kvm/emulate.c
> +++ b/arch/x86/kvm/emulate.c
> @@ -157,7 +157,7 @@
>  #define Mmx         ((u64)1 << 40)  /* MMX Vector instruction */
>  #define Aligned     ((u64)1 << 41)  /* Explicitly aligned (e.g. MOVDQA) */
>  #define Unaligned   ((u64)1 << 42)  /* Explicitly unaligned (e.g. MOVDQU) */
> -#define Avx         ((u64)1 << 43)  /* Advanced Vector Extensions */
> +#define No16        ((u64)1 << 43)  /* No 16 bit operand */
>  #define Fastop      ((u64)1 << 44)  /* Use opcode::u.fastop */
>  #define NoWrite     ((u64)1 << 45)  /* No writeback */
>  #define SrcWrite    ((u64)1 << 46)  /* Write back src operand */
> @@ -167,7 +167,6 @@
>  #define NoBigReal   ((u64)1 << 50)  /* No big real mode */
>  #define PrivUD      ((u64)1 << 51)  /* #UD instead of #GP on CPL > 0 */
>  #define NearBranch  ((u64)1 << 52)  /* Near branches */
> -#define No16	    ((u64)1 << 53)  /* No 16 bit operand */
>  
>  #define DstXacc     (DstAccLo | SrcAccHi | SrcWrite)
>  
> @@ -646,8 +645,6 @@ static bool insn_aligned(struct x86_emulate_ctxt *ctxt, unsigned size)
>  		return true;
>  	else if (ctxt->d & Unaligned)
>  		return false;
> -	else if (ctxt->d & Avx)
> -		return false;
>  	else
>  		return true;

(return !(ctxt->d & Unaligned);)

>  }
> -- 
> 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

  reply	other threads:[~2014-11-07 16:43 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-06 17:46 [PATCH] KVM: x86: save a bit in the decoding flags Paolo Bonzini
2014-11-07 16:43 ` Radim Krčmář [this message]
2014-11-07 16:45   ` Paolo Bonzini

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=20141107164337.GA22459@potion.brq.redhat.com \
    --to=rkrcmar@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=namit@cs.technion.ac.il \
    --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