a8d2532645
No header includes qemu-common.h after this commit, as prescribed by qemu-common.h's file comment. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20190523143508.25387-5-armbru@redhat.com> [Rebased with conflicts resolved automatically, except for include/hw/arm/xlnx-zynqmp.h hw/arm/nrf51_soc.c hw/arm/msf2-soc.c block/qcow2-refcount.c block/qcow2-cluster.c block/qcow2-cache.c target/arm/cpu.h target/lm32/cpu.h target/m68k/cpu.h target/mips/cpu.h target/moxie/cpu.h target/nios2/cpu.h target/openrisc/cpu.h target/riscv/cpu.h target/tilegx/cpu.h target/tricore/cpu.h target/unicore32/cpu.h target/xtensa/cpu.h; bsd-user/main.c and net/tap-bsd.c fixed up]
36 lines
1.0 KiB
C
36 lines
1.0 KiB
C
#include "qemu/osdep.h"
|
|
#include "cpu.h"
|
|
#include "hw/hw.h"
|
|
#include "hw/boards.h"
|
|
#include "migration/cpu.h"
|
|
|
|
static const VMStateDescription vmstate_env = {
|
|
.name = "env",
|
|
.version_id = 1,
|
|
.minimum_version_id = 1,
|
|
.fields = (VMStateField[]) {
|
|
VMSTATE_UINT32_ARRAY(regs, CPULM32State, 32),
|
|
VMSTATE_UINT32(pc, CPULM32State),
|
|
VMSTATE_UINT32(ie, CPULM32State),
|
|
VMSTATE_UINT32(icc, CPULM32State),
|
|
VMSTATE_UINT32(dcc, CPULM32State),
|
|
VMSTATE_UINT32(cc, CPULM32State),
|
|
VMSTATE_UINT32(eba, CPULM32State),
|
|
VMSTATE_UINT32(dc, CPULM32State),
|
|
VMSTATE_UINT32(deba, CPULM32State),
|
|
VMSTATE_UINT32_ARRAY(bp, CPULM32State, 4),
|
|
VMSTATE_UINT32_ARRAY(wp, CPULM32State, 4),
|
|
VMSTATE_END_OF_LIST()
|
|
}
|
|
};
|
|
|
|
const VMStateDescription vmstate_lm32_cpu = {
|
|
.name = "cpu",
|
|
.version_id = 1,
|
|
.minimum_version_id = 1,
|
|
.fields = (VMStateField[]) {
|
|
VMSTATE_STRUCT(env, LM32CPU, 1, vmstate_env, CPULM32State),
|
|
VMSTATE_END_OF_LIST()
|
|
}
|
|
};
|