From: Paolo Bonzini <pbonzini@redhat.com>
To: "Liu, Jinsong" <jinsong.liu@intel.com>
Cc: Gleb Natapov <gleb@redhat.com>,
"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>,
kvm <kvm@vger.kernel.org>
Subject: Re: [PATCH v2 2/2] target-i386: Intel MPX
Date: Wed, 04 Dec 2013 09:52:23 +0100 [thread overview]
Message-ID: <529EED47.2070607@redhat.com> (raw)
In-Reply-To: <DE8DF0795D48FD4CA783C40EC82923350140005B@SHSMSX101.ccr.corp.intel.com>
Il 04/12/2013 08:56, Liu, Jinsong ha scritto:
> From 256484fd75d4eb4d248e5e0f493f16182da59dc2 Mon Sep 17 00:00:00 2001
> From: Liu Jinsong <jinsong.liu@intel.com>
> Date: Wed, 4 Dec 2013 16:56:49 +0800
> Subject: [PATCH v2 2/2] target-i386: Intel MPX
>
> Add some MPX related definiation, and hardcode sizes and offsets
> of xsave features 3 and 4. It also add corresponding part to
> kvm_get/put_xsave.
>
> Signed-off-by: Liu Jinsong <jinsong.liu@intel.com>
> ---
> target-i386/cpu.c | 4 ++++
> target-i386/cpu.h | 24 +++++++++++++++++++++---
> target-i386/kvm.c | 10 ++++++++++
> 3 files changed, 35 insertions(+), 3 deletions(-)
>
> diff --git a/target-i386/cpu.c b/target-i386/cpu.c
> index 544b57f..52ca029 100644
> --- a/target-i386/cpu.c
> +++ b/target-i386/cpu.c
> @@ -336,6 +336,10 @@ typedef struct ExtSaveArea {
> static const ExtSaveArea ext_save_areas[] = {
> [2] = { .feature = FEAT_1_ECX, .bits = CPUID_EXT_AVX,
> .offset = 0x240, .size = 0x100 },
> + [3] = { .feature = FEAT_7_0_EBX, .bits = CPUID_7_0_EBX_MPX,
> + .offset = 0x3c0, .size = 0x40 },
> + [4] = { .feature = FEAT_7_0_EBX, .bits = CPUID_7_0_EBX_MPX,
> + .offset = 0x400, .size = 0x10 },
> };
>
> const char *get_register_name_32(unsigned int reg)
> diff --git a/target-i386/cpu.h b/target-i386/cpu.h
> index ea373e8..4020591 100644
> --- a/target-i386/cpu.h
> +++ b/target-i386/cpu.h
> @@ -380,9 +380,12 @@
>
> #define MSR_VM_HSAVE_PA 0xc0010117
>
> -#define XSTATE_FP 1
> -#define XSTATE_SSE 2
> -#define XSTATE_YMM 4
> +#define XSTATE_FP (1ULL << 0)
> +#define XSTATE_SSE (1ULL << 1)
> +#define XSTATE_YMM (1ULL << 2)
> +#define XSTATE_BNDREGS (1ULL << 3)
> +#define XSTATE_BNDCSR (1ULL << 4)
> +
>
> /* CPUID feature words */
> typedef enum FeatureWord {
> @@ -545,6 +548,7 @@ typedef uint32_t FeatureWordArray[FEATURE_WORDS];
> #define CPUID_7_0_EBX_ERMS (1 << 9)
> #define CPUID_7_0_EBX_INVPCID (1 << 10)
> #define CPUID_7_0_EBX_RTM (1 << 11)
> +#define CPUID_7_0_EBX_MPX (1 << 14)
> #define CPUID_7_0_EBX_RDSEED (1 << 18)
> #define CPUID_7_0_EBX_ADX (1 << 19)
> #define CPUID_7_0_EBX_SMAP (1 << 20)
> @@ -695,6 +699,18 @@ typedef union {
> uint64_t q;
> } MMXReg;
>
> +typedef struct BNDReg {
> + uint64_t lb;
> + uint64_t ub;
> +} BNDReg;
> +
> +typedef struct BNDCSReg {
> + uint64_t cfg;
> + uint64_t pad;
> + uint64_t sts_lo;
> + uint64_t sts_hi;
> +} BNDCSReg;
> +
> #ifdef HOST_WORDS_BIGENDIAN
> #define XMM_B(n) _b[15 - (n)]
> #define XMM_W(n) _w[7 - (n)]
> @@ -912,6 +928,8 @@ typedef struct CPUX86State {
>
> uint64_t xstate_bv;
> XMMReg ymmh_regs[CPU_NB_REGS];
> + BNDReg bnd_regs[4];
> + BNDCSReg bndcs_regs;
>
> uint64_t xcr0;
>
> diff --git a/target-i386/kvm.c b/target-i386/kvm.c
> index 749aa09..347d3d3 100644
> --- a/target-i386/kvm.c
> +++ b/target-i386/kvm.c
> @@ -980,6 +980,8 @@ static int kvm_put_fpu(X86CPU *cpu)
> #define XSAVE_XMM_SPACE 40
> #define XSAVE_XSTATE_BV 128
> #define XSAVE_YMMH_SPACE 144
> +#define XSAVE_BNDREGS 240
> +#define XSAVE_BNDCSR 256
>
> static int kvm_put_xsave(X86CPU *cpu)
> {
> @@ -1012,6 +1014,10 @@ static int kvm_put_xsave(X86CPU *cpu)
> *(uint64_t *)&xsave->region[XSAVE_XSTATE_BV] = env->xstate_bv;
> memcpy(&xsave->region[XSAVE_YMMH_SPACE], env->ymmh_regs,
> sizeof env->ymmh_regs);
> + memcpy(&xsave->region[XSAVE_BNDREGS], env->bnd_regs,
> + sizeof env->bnd_regs);
> + memcpy(&xsave->region[XSAVE_BNDCSR], &env->bndcs_regs,
> + sizeof(env->bndcs_regs));
> r = kvm_vcpu_ioctl(CPU(cpu), KVM_SET_XSAVE, xsave);
> return r;
> }
> @@ -1294,6 +1300,10 @@ static int kvm_get_xsave(X86CPU *cpu)
> env->xstate_bv = *(uint64_t *)&xsave->region[XSAVE_XSTATE_BV];
> memcpy(env->ymmh_regs, &xsave->region[XSAVE_YMMH_SPACE],
> sizeof env->ymmh_regs);
> + memcpy(env->bnd_regs, &xsave->region[XSAVE_BNDREGS],
> + sizeof env->bnd_regs);
> + memcpy(&env->bndcs_regs, &xsave->region[XSAVE_BNDCSR],
> + sizeof(env->bndcs_regs));
> return 0;
> }
Almost there. Migration (vmstate) is still missing.
Paolo
next prev parent reply other threads:[~2013-12-04 8:52 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-04 7:56 [PATCH v2 2/2] target-i386: Intel MPX Liu, Jinsong
2013-12-04 8:52 ` Paolo Bonzini [this message]
2013-12-04 11:30 ` Liu, Jinsong
2013-12-04 17:23 ` Paolo Bonzini
2013-12-05 15:26 ` Liu, Jinsong
2013-12-05 16:52 ` 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=529EED47.2070607@redhat.com \
--to=pbonzini@redhat.com \
--cc=gleb@redhat.com \
--cc=jinsong.liu@intel.com \
--cc=kvm@vger.kernel.org \
--cc=qemu-devel@nongnu.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox