12e9493df9
hw/boards.h pulls in almost 60 headers. The less we include it into headers, the better. As a first step, drop superfluous inclusions, and downgrade some more to what's actually needed. Gets rid of just one inclusion into a header. Cc: Eduardo Habkost <ehabkost@redhat.com> Cc: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-Id: <20190812052359.30071-23-armbru@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
34 lines
1011 B
C
34 lines
1011 B
C
#include "qemu/osdep.h"
|
|
#include "cpu.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()
|
|
}
|
|
};
|