2016-01-26 19:17:04 +01:00
|
|
|
#include "qemu/osdep.h"
|
2016-03-15 16:58:45 +01:00
|
|
|
#include "cpu.h"
|
2016-03-15 12:51:18 +01:00
|
|
|
#include "migration/cpu.h"
|
2011-05-20 23:02:28 +02:00
|
|
|
|
2018-11-14 14:29:30 +01:00
|
|
|
static int get_fpcr(QEMUFile *f, void *opaque, size_t size,
|
|
|
|
const VMStateField *field)
|
2011-05-20 23:02:28 +02:00
|
|
|
{
|
|
|
|
CPUAlphaState *env = opaque;
|
|
|
|
cpu_alpha_store_fpcr(env, qemu_get_be64(f));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-01-19 20:00:50 +01:00
|
|
|
static int put_fpcr(QEMUFile *f, void *opaque, size_t size,
|
2020-12-11 18:11:48 +01:00
|
|
|
const VMStateField *field, JSONWriter *vmdesc)
|
2011-05-20 23:02:28 +02:00
|
|
|
{
|
|
|
|
CPUAlphaState *env = opaque;
|
|
|
|
qemu_put_be64(f, cpu_alpha_load_fpcr(env));
|
2017-01-19 20:00:50 +01:00
|
|
|
return 0;
|
2011-05-20 23:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const VMStateInfo vmstate_fpcr = {
|
|
|
|
.name = "fpcr",
|
|
|
|
.get = get_fpcr,
|
|
|
|
.put = put_fpcr,
|
|
|
|
};
|
|
|
|
|
2023-12-21 04:15:45 +01:00
|
|
|
static const VMStateField vmstate_env_fields[] = {
|
2012-03-14 01:38:21 +01:00
|
|
|
VMSTATE_UINTTL_ARRAY(ir, CPUAlphaState, 31),
|
|
|
|
VMSTATE_UINTTL_ARRAY(fir, CPUAlphaState, 31),
|
2011-05-20 23:02:28 +02:00
|
|
|
/* Save the architecture value of the fpcr, not the internally
|
|
|
|
expanded version. Since this architecture value does not
|
|
|
|
exist in memory to be stored, this requires a but of hoop
|
|
|
|
jumping. We want OFFSET=0 so that we effectively pass ENV
|
|
|
|
to the helper functions, and we need to fill in the name by
|
|
|
|
hand since there's no field of that name. */
|
|
|
|
{
|
|
|
|
.name = "fpcr",
|
|
|
|
.version_id = 0,
|
|
|
|
.size = sizeof(uint64_t),
|
|
|
|
.info = &vmstate_fpcr,
|
|
|
|
.flags = VMS_SINGLE,
|
|
|
|
.offset = 0
|
|
|
|
},
|
2012-03-14 01:38:21 +01:00
|
|
|
VMSTATE_UINTTL(pc, CPUAlphaState),
|
|
|
|
VMSTATE_UINTTL(unique, CPUAlphaState),
|
|
|
|
VMSTATE_UINTTL(lock_addr, CPUAlphaState),
|
|
|
|
VMSTATE_UINTTL(lock_value, CPUAlphaState),
|
2011-05-20 23:02:28 +02:00
|
|
|
|
2017-07-06 21:45:07 +02:00
|
|
|
VMSTATE_UINT32(flags, CPUAlphaState),
|
2012-03-14 01:38:21 +01:00
|
|
|
VMSTATE_UINT32(pcc_ofs, CPUAlphaState),
|
2011-05-20 23:02:28 +02:00
|
|
|
|
2012-03-14 01:38:21 +01:00
|
|
|
VMSTATE_UINTTL(trap_arg0, CPUAlphaState),
|
|
|
|
VMSTATE_UINTTL(trap_arg1, CPUAlphaState),
|
|
|
|
VMSTATE_UINTTL(trap_arg2, CPUAlphaState),
|
2011-05-20 23:02:28 +02:00
|
|
|
|
2012-03-14 01:38:21 +01:00
|
|
|
VMSTATE_UINTTL(exc_addr, CPUAlphaState),
|
|
|
|
VMSTATE_UINTTL(palbr, CPUAlphaState),
|
|
|
|
VMSTATE_UINTTL(ptbr, CPUAlphaState),
|
|
|
|
VMSTATE_UINTTL(vptptr, CPUAlphaState),
|
|
|
|
VMSTATE_UINTTL(sysval, CPUAlphaState),
|
|
|
|
VMSTATE_UINTTL(usp, CPUAlphaState),
|
2011-05-23 21:12:29 +02:00
|
|
|
|
2012-03-14 01:38:21 +01:00
|
|
|
VMSTATE_UINTTL_ARRAY(shadow, CPUAlphaState, 8),
|
|
|
|
VMSTATE_UINTTL_ARRAY(scratch, CPUAlphaState, 24),
|
2011-05-23 21:12:29 +02:00
|
|
|
|
2011-05-20 23:02:28 +02:00
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
};
|
|
|
|
|
2013-01-21 00:27:16 +01:00
|
|
|
static const VMStateDescription vmstate_env = {
|
|
|
|
.name = "env",
|
2017-07-06 21:45:07 +02:00
|
|
|
.version_id = 3,
|
|
|
|
.minimum_version_id = 3,
|
2013-01-21 00:27:16 +01:00
|
|
|
.fields = vmstate_env_fields,
|
2011-05-20 23:02:28 +02:00
|
|
|
};
|
|
|
|
|
2023-12-21 04:15:45 +01:00
|
|
|
static const VMStateField vmstate_cpu_fields[] = {
|
2013-01-21 00:27:16 +01:00
|
|
|
VMSTATE_CPU(),
|
|
|
|
VMSTATE_STRUCT(env, AlphaCPU, 1, vmstate_env, CPUAlphaState),
|
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
};
|
2011-05-20 23:02:28 +02:00
|
|
|
|
2013-01-21 00:27:16 +01:00
|
|
|
const VMStateDescription vmstate_alpha_cpu = {
|
|
|
|
.name = "cpu",
|
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
|
|
|
.fields = vmstate_cpu_fields,
|
|
|
|
};
|