mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
target/ppc: move FP and VMX registers into aligned vsr register array
The VSX register array is a block of 64 128-bit registers where the first 32 registers consist of the existing 64-bit FP registers extended to 128-bit using new VSR registers, and the last 32 registers are the VMX 128-bit registers as show below: 64-bit 64-bit +--------------------+--------------------+ | FP0 | | VSR0 +--------------------+--------------------+ | FP1 | | VSR1 +--------------------+--------------------+ | ... | ... | ... +--------------------+--------------------+ | FP30 | | VSR30 +--------------------+--------------------+ | FP31 | | VSR31 +--------------------+--------------------+ | VMX0 | VSR32 +-----------------------------------------+ | VMX1 | VSR33 +-----------------------------------------+ | ... | ... +-----------------------------------------+ | VMX30 | VSR62 +-----------------------------------------+ | VMX31 | VSR63 +-----------------------------------------+ In order to allow for future conversion of VSX instructions to use TCG vector operations, recreate the same layout using an aligned version of the existing vsr register array. Since the old fpr and avr register arrays are removed, the existing callers must also be updated to use the correct offset in the vsr register array. This also includes switching the relevant VMState fields over to using subarrays to make sure that migration is preserved. Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Acked-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
05ee3e8aa0
commit
ef96e3ae96
13 changed files with 165 additions and 82 deletions
|
@ -45,7 +45,7 @@ static int cpu_load_old(QEMUFile *f, void *opaque, int version_id)
|
|||
uint64_t l;
|
||||
} u;
|
||||
u.l = qemu_get_be64(f);
|
||||
env->fpr[i] = u.d;
|
||||
*cpu_fpr_ptr(env, i) = u.d;
|
||||
}
|
||||
qemu_get_be32s(f, &fpscr);
|
||||
env->fpscr = fpscr;
|
||||
|
@ -138,11 +138,73 @@ static const VMStateInfo vmstate_info_avr = {
|
|||
};
|
||||
|
||||
#define VMSTATE_AVR_ARRAY_V(_f, _s, _n, _v) \
|
||||
VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_avr, ppc_avr_t)
|
||||
VMSTATE_SUB_ARRAY(_f, _s, 32, _n, _v, vmstate_info_avr, ppc_avr_t)
|
||||
|
||||
#define VMSTATE_AVR_ARRAY(_f, _s, _n) \
|
||||
VMSTATE_AVR_ARRAY_V(_f, _s, _n, 0)
|
||||
|
||||
static int get_fpr(QEMUFile *f, void *pv, size_t size,
|
||||
const VMStateField *field)
|
||||
{
|
||||
ppc_vsr_t *v = pv;
|
||||
|
||||
v->u64[0] = qemu_get_be64(f);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int put_fpr(QEMUFile *f, void *pv, size_t size,
|
||||
const VMStateField *field, QJSON *vmdesc)
|
||||
{
|
||||
ppc_vsr_t *v = pv;
|
||||
|
||||
qemu_put_be64(f, v->u64[0]);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const VMStateInfo vmstate_info_fpr = {
|
||||
.name = "fpr",
|
||||
.get = get_fpr,
|
||||
.put = put_fpr,
|
||||
};
|
||||
|
||||
#define VMSTATE_FPR_ARRAY_V(_f, _s, _n, _v) \
|
||||
VMSTATE_SUB_ARRAY(_f, _s, 0, _n, _v, vmstate_info_fpr, ppc_vsr_t)
|
||||
|
||||
#define VMSTATE_FPR_ARRAY(_f, _s, _n) \
|
||||
VMSTATE_FPR_ARRAY_V(_f, _s, _n, 0)
|
||||
|
||||
static int get_vsr(QEMUFile *f, void *pv, size_t size,
|
||||
const VMStateField *field)
|
||||
{
|
||||
ppc_vsr_t *v = pv;
|
||||
|
||||
v->u64[1] = qemu_get_be64(f);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int put_vsr(QEMUFile *f, void *pv, size_t size,
|
||||
const VMStateField *field, QJSON *vmdesc)
|
||||
{
|
||||
ppc_vsr_t *v = pv;
|
||||
|
||||
qemu_put_be64(f, v->u64[1]);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const VMStateInfo vmstate_info_vsr = {
|
||||
.name = "vsr",
|
||||
.get = get_vsr,
|
||||
.put = put_vsr,
|
||||
};
|
||||
|
||||
#define VMSTATE_VSR_ARRAY_V(_f, _s, _n, _v) \
|
||||
VMSTATE_SUB_ARRAY(_f, _s, 0, _n, _v, vmstate_info_vsr, ppc_vsr_t)
|
||||
|
||||
#define VMSTATE_VSR_ARRAY(_f, _s, _n) \
|
||||
VMSTATE_VSR_ARRAY_V(_f, _s, _n, 0)
|
||||
|
||||
static bool cpu_pre_2_8_migration(void *opaque, int version_id)
|
||||
{
|
||||
PowerPCCPU *cpu = opaque;
|
||||
|
@ -354,7 +416,7 @@ static const VMStateDescription vmstate_fpu = {
|
|||
.minimum_version_id = 1,
|
||||
.needed = fpu_needed,
|
||||
.fields = (VMStateField[]) {
|
||||
VMSTATE_FLOAT64_ARRAY(env.fpr, PowerPCCPU, 32),
|
||||
VMSTATE_FPR_ARRAY(env.vsr, PowerPCCPU, 32),
|
||||
VMSTATE_UINTTL(env.fpscr, PowerPCCPU),
|
||||
VMSTATE_END_OF_LIST()
|
||||
},
|
||||
|
@ -373,7 +435,7 @@ static const VMStateDescription vmstate_altivec = {
|
|||
.minimum_version_id = 1,
|
||||
.needed = altivec_needed,
|
||||
.fields = (VMStateField[]) {
|
||||
VMSTATE_AVR_ARRAY(env.avr, PowerPCCPU, 32),
|
||||
VMSTATE_AVR_ARRAY(env.vsr, PowerPCCPU, 32),
|
||||
VMSTATE_UINT32(env.vscr, PowerPCCPU),
|
||||
VMSTATE_END_OF_LIST()
|
||||
},
|
||||
|
@ -392,7 +454,7 @@ static const VMStateDescription vmstate_vsx = {
|
|||
.minimum_version_id = 1,
|
||||
.needed = vsx_needed,
|
||||
.fields = (VMStateField[]) {
|
||||
VMSTATE_UINT64_ARRAY(env.vsr, PowerPCCPU, 32),
|
||||
VMSTATE_VSR_ARRAY(env.vsr, PowerPCCPU, 32),
|
||||
VMSTATE_END_OF_LIST()
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue