From: Zide Chen <zide.chen@intel.com>
Cache EGPR[16] in CPUX86State to store APX's EGPR value.
Tested-by: Xudong Hao <xudong.hao@intel.com>
Signed-off-by: Zide Chen <zide.chen@intel.com>
Co-developed-by: Zhao Liu <zhao1.liu@intel.com>
Signed-off-by: Zhao Liu <zhao1.liu@intel.com>
---
target/i386/cpu.h | 1 +
target/i386/xsave_helper.c | 14 ++++++++++++++
2 files changed, 15 insertions(+)
diff --git a/target/i386/cpu.h b/target/i386/cpu.h
index bc7e16d6e6c1..48d4d7fcbb9c 100644
--- a/target/i386/cpu.h
+++ b/target/i386/cpu.h
@@ -1969,6 +1969,7 @@ typedef struct CPUArchState {
#ifdef TARGET_X86_64
uint8_t xtilecfg[64];
uint8_t xtiledata[8192];
+ uint64_t egprs[EGPR_NUM];
#endif
/* sysenter registers */
diff --git a/target/i386/xsave_helper.c b/target/i386/xsave_helper.c
index 996e9f3bfef5..2e9265045520 100644
--- a/target/i386/xsave_helper.c
+++ b/target/i386/xsave_helper.c
@@ -140,6 +140,13 @@ void x86_cpu_xsave_all_areas(X86CPU *cpu, void *buf, uint32_t buflen)
memcpy(tiledata, &env->xtiledata, sizeof(env->xtiledata));
}
+
+ e = &x86_ext_save_areas[XSTATE_APX_BIT];
+ if (e->size && e->offset && buflen) {
+ XSaveAPX *apx = buf + e->offset;
+
+ memcpy(apx, &env->egprs, sizeof(env->egprs));
+ }
#endif
}
@@ -275,5 +282,12 @@ void x86_cpu_xrstor_all_areas(X86CPU *cpu, const void *buf, uint32_t buflen)
memcpy(&env->xtiledata, tiledata, sizeof(env->xtiledata));
}
+
+ e = &x86_ext_save_areas[XSTATE_APX_BIT];
+ if (e->size && e->offset) {
+ const XSaveAPX *apx = buf + e->offset;
+
+ memcpy(&env->egprs, apx, sizeof(env->egprs));
+ }
#endif
}
--
2.34.1
On Tue, Nov 18, 2025 at 7:43 AM Zhao Liu <zhao1.liu@intel.com> wrote:
>
> From: Zide Chen <zide.chen@intel.com>
>
> Cache EGPR[16] in CPUX86State to store APX's EGPR value.
Please change regs[] to have 32 elements instead; see the attached
patch for a minimal starting point. You can use VMSTATE_SUB_ARRAY to
split their migration data in two parts. You'll have to create a
VMSTATE_UINTTL_SUB_ARRAY similar to VMSTATE_UINT64_SUB_ARRAY.
To support HMP you need to adjust target/i386/monitor.c and
target/i386/cpu-dump.c. Please make x86_cpu_dump_state print R16...R31
only if APX is enabled in CPUID.
Also, it would be best for the series to include gdb support. APX is
supported by gdb as a "coprocessor", the easiest way to do it is to
copy what riscv_cpu_register_gdb_regs_for_features() does for the FPU,
and copy https://github.com/intel/gdb/blob/master/gdb/features/i386/64bit-apx.xml
into QEMU's gdb-xml/ directory.
Paolo
> Tested-by: Xudong Hao <xudong.hao@intel.com>
> Signed-off-by: Zide Chen <zide.chen@intel.com>
> Co-developed-by: Zhao Liu <zhao1.liu@intel.com>
> Signed-off-by: Zhao Liu <zhao1.liu@intel.com>
> ---
> target/i386/cpu.h | 1 +
> target/i386/xsave_helper.c | 14 ++++++++++++++
> 2 files changed, 15 insertions(+)
>
> diff --git a/target/i386/cpu.h b/target/i386/cpu.h
> index bc7e16d6e6c1..48d4d7fcbb9c 100644
> --- a/target/i386/cpu.h
> +++ b/target/i386/cpu.h
> @@ -1969,6 +1969,7 @@ typedef struct CPUArchState {
> #ifdef TARGET_X86_64
> uint8_t xtilecfg[64];
> uint8_t xtiledata[8192];
> + uint64_t egprs[EGPR_NUM];
> #endif
>
> /* sysenter registers */
> diff --git a/target/i386/xsave_helper.c b/target/i386/xsave_helper.c
> index 996e9f3bfef5..2e9265045520 100644
> --- a/target/i386/xsave_helper.c
> +++ b/target/i386/xsave_helper.c
> @@ -140,6 +140,13 @@ void x86_cpu_xsave_all_areas(X86CPU *cpu, void *buf, uint32_t buflen)
>
> memcpy(tiledata, &env->xtiledata, sizeof(env->xtiledata));
> }
> +
> + e = &x86_ext_save_areas[XSTATE_APX_BIT];
> + if (e->size && e->offset && buflen) {
> + XSaveAPX *apx = buf + e->offset;
> +
> + memcpy(apx, &env->egprs, sizeof(env->egprs));
> + }
> #endif
> }
>
> @@ -275,5 +282,12 @@ void x86_cpu_xrstor_all_areas(X86CPU *cpu, const void *buf, uint32_t buflen)
>
> memcpy(&env->xtiledata, tiledata, sizeof(env->xtiledata));
> }
> +
> + e = &x86_ext_save_areas[XSTATE_APX_BIT];
> + if (e->size && e->offset) {
> + const XSaveAPX *apx = buf + e->offset;
> +
> + memcpy(&env->egprs, apx, sizeof(env->egprs));
> + }
> #endif
> }
> --
> 2.34.1
>
On Tue, Nov 18, 2025 at 09:43:26AM +0100, Paolo Bonzini wrote: > Date: Tue, 18 Nov 2025 09:43:26 +0100 > From: Paolo Bonzini <pbonzini@redhat.com> > Subject: Re: [PATCH 2/5] i386/cpu: Cache EGPRs in CPUX86State > > On Tue, Nov 18, 2025 at 7:43 AM Zhao Liu <zhao1.liu@intel.com> wrote: > > > > From: Zide Chen <zide.chen@intel.com> > > > > Cache EGPR[16] in CPUX86State to store APX's EGPR value. > > Please change regs[] to have 32 elements instead; see the attached > patch for a minimal starting point. You can use VMSTATE_SUB_ARRAY to > split their migration data in two parts. You'll have to create a > VMSTATE_UINTTL_SUB_ARRAY similar to VMSTATE_UINT64_SUB_ARRAY. Thanks! VMSTATE_UINTTL_SUB_ARRAY is for target_ulong. I'll move EGPRs to regs[]. > To support HMP you need to adjust target/i386/monitor.c and > target/i386/cpu-dump.c. Please make x86_cpu_dump_state print R16...R31 > only if APX is enabled in CPUID. > > Also, it would be best for the series to include gdb support. APX is > supported by gdb as a "coprocessor", the easiest way to do it is to > copy what riscv_cpu_register_gdb_regs_for_features() does for the FPU, > and copy https://github.com/intel/gdb/blob/master/gdb/features/i386/64bit-apx.xml > into QEMU's gdb-xml/ directory. Good! Thank you for your guidance. I will add GDB support in next version. Regards, Zhao
© 2016 - 2025 Red Hat, Inc.