mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 12:07:31 +00:00 
			
		
		
		
	 12e9493df9
			
		
	
	
		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>
		
			
				
	
	
		
			88 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "qemu/osdep.h"
 | |
| #include "cpu.h"
 | |
| #include "migration/cpu.h"
 | |
| 
 | |
| static int get_fpcr(QEMUFile *f, void *opaque, size_t size,
 | |
|                     const VMStateField *field)
 | |
| {
 | |
|     CPUAlphaState *env = opaque;
 | |
|     cpu_alpha_store_fpcr(env, qemu_get_be64(f));
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| static int put_fpcr(QEMUFile *f, void *opaque, size_t size,
 | |
|                     const VMStateField *field, QJSON *vmdesc)
 | |
| {
 | |
|     CPUAlphaState *env = opaque;
 | |
|     qemu_put_be64(f, cpu_alpha_load_fpcr(env));
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| static const VMStateInfo vmstate_fpcr = {
 | |
|     .name = "fpcr",
 | |
|     .get = get_fpcr,
 | |
|     .put = put_fpcr,
 | |
| };
 | |
| 
 | |
| static VMStateField vmstate_env_fields[] = {
 | |
|     VMSTATE_UINTTL_ARRAY(ir, CPUAlphaState, 31),
 | |
|     VMSTATE_UINTTL_ARRAY(fir, CPUAlphaState, 31),
 | |
|     /* 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
 | |
|     },
 | |
|     VMSTATE_UINTTL(pc, CPUAlphaState),
 | |
|     VMSTATE_UINTTL(unique, CPUAlphaState),
 | |
|     VMSTATE_UINTTL(lock_addr, CPUAlphaState),
 | |
|     VMSTATE_UINTTL(lock_value, CPUAlphaState),
 | |
| 
 | |
|     VMSTATE_UINT32(flags, CPUAlphaState),
 | |
|     VMSTATE_UINT32(pcc_ofs, CPUAlphaState),
 | |
| 
 | |
|     VMSTATE_UINTTL(trap_arg0, CPUAlphaState),
 | |
|     VMSTATE_UINTTL(trap_arg1, CPUAlphaState),
 | |
|     VMSTATE_UINTTL(trap_arg2, CPUAlphaState),
 | |
| 
 | |
|     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),
 | |
| 
 | |
|     VMSTATE_UINTTL_ARRAY(shadow, CPUAlphaState, 8),
 | |
|     VMSTATE_UINTTL_ARRAY(scratch, CPUAlphaState, 24),
 | |
| 
 | |
|     VMSTATE_END_OF_LIST()
 | |
| };
 | |
| 
 | |
| static const VMStateDescription vmstate_env = {
 | |
|     .name = "env",
 | |
|     .version_id = 3,
 | |
|     .minimum_version_id = 3,
 | |
|     .fields = vmstate_env_fields,
 | |
| };
 | |
| 
 | |
| static VMStateField vmstate_cpu_fields[] = {
 | |
|     VMSTATE_CPU(),
 | |
|     VMSTATE_STRUCT(env, AlphaCPU, 1, vmstate_env, CPUAlphaState),
 | |
|     VMSTATE_END_OF_LIST()
 | |
| };
 | |
| 
 | |
| const VMStateDescription vmstate_alpha_cpu = {
 | |
|     .name = "cpu",
 | |
|     .version_id = 1,
 | |
|     .minimum_version_id = 1,
 | |
|     .fields = vmstate_cpu_fields,
 | |
| };
 |