1 /* Declarations for use by hardware emulation. */
5 #include "qemu-common.h"
7 #if defined(TARGET_PHYS_ADDR_BITS) && !defined(NEED_CPU_H)
10 #include "cpu-common.h"
19 /* This function writes a chunk of data to a file at the given position.
20 * The pos argument can be ignored if the file is only being used for
21 * streaming. The handler should try to write all of the data it can.
23 typedef int (QEMUFilePutBufferFunc
)(void *opaque
, const uint8_t *buf
,
24 int64_t pos
, int size
);
26 /* Read a chunk of data from a file at the given position. The pos argument
27 * can be ignored if the file is only be used for streaming. The number of
28 * bytes actually read should be returned.
30 typedef int (QEMUFileGetBufferFunc
)(void *opaque
, uint8_t *buf
,
31 int64_t pos
, int size
);
33 /* Close a file and return an error code */
34 typedef int (QEMUFileCloseFunc
)(void *opaque
);
36 /* Called to determine if the file has exceeded it's bandwidth allocation. The
37 * bandwidth capping is a soft limit, not a hard limit.
39 typedef int (QEMUFileRateLimit
)(void *opaque
);
41 /* Called to change the current bandwidth allocation. This function must return
42 * the new actual bandwidth. It should be new_rate if everything goes ok, and
43 * the old rate otherwise
45 typedef size_t (QEMUFileSetRateLimit
)(void *opaque
, size_t new_rate
);
47 QEMUFile
*qemu_fopen_ops(void *opaque
, QEMUFilePutBufferFunc
*put_buffer
,
48 QEMUFileGetBufferFunc
*get_buffer
,
49 QEMUFileCloseFunc
*close
,
50 QEMUFileRateLimit
*rate_limit
,
51 QEMUFileSetRateLimit
*set_rate_limit
);
52 QEMUFile
*qemu_fopen(const char *filename
, const char *mode
);
53 QEMUFile
*qemu_fdopen(int fd
, const char *mode
);
54 QEMUFile
*qemu_fopen_socket(int fd
);
55 QEMUFile
*qemu_popen(FILE *popen_file
, const char *mode
);
56 QEMUFile
*qemu_popen_cmd(const char *command
, const char *mode
);
57 int qemu_stdio_fd(QEMUFile
*f
);
58 void qemu_fflush(QEMUFile
*f
);
59 int qemu_fclose(QEMUFile
*f
);
60 void qemu_put_buffer(QEMUFile
*f
, const uint8_t *buf
, int size
);
61 void qemu_put_byte(QEMUFile
*f
, int v
);
63 static inline void qemu_put_ubyte(QEMUFile
*f
, unsigned int v
)
65 qemu_put_byte(f
, (int)v
);
68 #define qemu_put_sbyte qemu_put_byte
70 void qemu_put_be16(QEMUFile
*f
, unsigned int v
);
71 void qemu_put_be32(QEMUFile
*f
, unsigned int v
);
72 void qemu_put_be64(QEMUFile
*f
, uint64_t v
);
73 int qemu_get_buffer(QEMUFile
*f
, uint8_t *buf
, int size
);
74 int qemu_get_byte(QEMUFile
*f
);
76 static inline unsigned int qemu_get_ubyte(QEMUFile
*f
)
78 return (unsigned int)qemu_get_byte(f
);
81 #define qemu_get_sbyte qemu_get_byte
83 unsigned int qemu_get_be16(QEMUFile
*f
);
84 unsigned int qemu_get_be32(QEMUFile
*f
);
85 uint64_t qemu_get_be64(QEMUFile
*f
);
86 int qemu_file_rate_limit(QEMUFile
*f
);
87 size_t qemu_file_set_rate_limit(QEMUFile
*f
, size_t new_rate
);
88 int qemu_file_has_error(QEMUFile
*f
);
89 void qemu_file_set_error(QEMUFile
*f
);
91 /* Try to send any outstanding data. This function is useful when output is
92 * halted due to rate limiting or EAGAIN errors occur as it can be used to
94 void qemu_file_put_notify(QEMUFile
*f
);
96 static inline void qemu_put_be64s(QEMUFile
*f
, const uint64_t *pv
)
98 qemu_put_be64(f
, *pv
);
101 static inline void qemu_put_be32s(QEMUFile
*f
, const uint32_t *pv
)
103 qemu_put_be32(f
, *pv
);
106 static inline void qemu_put_be16s(QEMUFile
*f
, const uint16_t *pv
)
108 qemu_put_be16(f
, *pv
);
111 static inline void qemu_put_8s(QEMUFile
*f
, const uint8_t *pv
)
113 qemu_put_byte(f
, *pv
);
116 static inline void qemu_get_be64s(QEMUFile
*f
, uint64_t *pv
)
118 *pv
= qemu_get_be64(f
);
121 static inline void qemu_get_be32s(QEMUFile
*f
, uint32_t *pv
)
123 *pv
= qemu_get_be32(f
);
126 static inline void qemu_get_be16s(QEMUFile
*f
, uint16_t *pv
)
128 *pv
= qemu_get_be16(f
);
131 static inline void qemu_get_8s(QEMUFile
*f
, uint8_t *pv
)
133 *pv
= qemu_get_byte(f
);
136 // Signed versions for type safety
137 static inline void qemu_put_sbuffer(QEMUFile
*f
, const int8_t *buf
, int size
)
139 qemu_put_buffer(f
, (const uint8_t *)buf
, size
);
142 static inline void qemu_put_sbe16(QEMUFile
*f
, int v
)
144 qemu_put_be16(f
, (unsigned int)v
);
147 static inline void qemu_put_sbe32(QEMUFile
*f
, int v
)
149 qemu_put_be32(f
, (unsigned int)v
);
152 static inline void qemu_put_sbe64(QEMUFile
*f
, int64_t v
)
154 qemu_put_be64(f
, (uint64_t)v
);
157 static inline size_t qemu_get_sbuffer(QEMUFile
*f
, int8_t *buf
, int size
)
159 return qemu_get_buffer(f
, (uint8_t *)buf
, size
);
162 static inline int qemu_get_sbe16(QEMUFile
*f
)
164 return (int)qemu_get_be16(f
);
167 static inline int qemu_get_sbe32(QEMUFile
*f
)
169 return (int)qemu_get_be32(f
);
172 static inline int64_t qemu_get_sbe64(QEMUFile
*f
)
174 return (int64_t)qemu_get_be64(f
);
177 static inline void qemu_put_s8s(QEMUFile
*f
, const int8_t *pv
)
179 qemu_put_8s(f
, (const uint8_t *)pv
);
182 static inline void qemu_put_sbe16s(QEMUFile
*f
, const int16_t *pv
)
184 qemu_put_be16s(f
, (const uint16_t *)pv
);
187 static inline void qemu_put_sbe32s(QEMUFile
*f
, const int32_t *pv
)
189 qemu_put_be32s(f
, (const uint32_t *)pv
);
192 static inline void qemu_put_sbe64s(QEMUFile
*f
, const int64_t *pv
)
194 qemu_put_be64s(f
, (const uint64_t *)pv
);
197 static inline void qemu_get_s8s(QEMUFile
*f
, int8_t *pv
)
199 qemu_get_8s(f
, (uint8_t *)pv
);
202 static inline void qemu_get_sbe16s(QEMUFile
*f
, int16_t *pv
)
204 qemu_get_be16s(f
, (uint16_t *)pv
);
207 static inline void qemu_get_sbe32s(QEMUFile
*f
, int32_t *pv
)
209 qemu_get_be32s(f
, (uint32_t *)pv
);
212 static inline void qemu_get_sbe64s(QEMUFile
*f
, int64_t *pv
)
214 qemu_get_be64s(f
, (uint64_t *)pv
);
218 #if TARGET_LONG_BITS == 64
219 #define qemu_put_betl qemu_put_be64
220 #define qemu_get_betl qemu_get_be64
221 #define qemu_put_betls qemu_put_be64s
222 #define qemu_get_betls qemu_get_be64s
223 #define qemu_put_sbetl qemu_put_sbe64
224 #define qemu_get_sbetl qemu_get_sbe64
225 #define qemu_put_sbetls qemu_put_sbe64s
226 #define qemu_get_sbetls qemu_get_sbe64s
228 #define qemu_put_betl qemu_put_be32
229 #define qemu_get_betl qemu_get_be32
230 #define qemu_put_betls qemu_put_be32s
231 #define qemu_get_betls qemu_get_be32s
232 #define qemu_put_sbetl qemu_put_sbe32
233 #define qemu_get_sbetl qemu_get_sbe32
234 #define qemu_put_sbetls qemu_put_sbe32s
235 #define qemu_get_sbetls qemu_get_sbe32s
239 int64_t qemu_ftell(QEMUFile
*f
);
240 int64_t qemu_fseek(QEMUFile
*f
, int64_t pos
, int whence
);
242 typedef void SaveStateHandler(QEMUFile
*f
, void *opaque
);
243 typedef int SaveLiveStateHandler(QEMUFile
*f
, int stage
, void *opaque
);
244 typedef int LoadStateHandler(QEMUFile
*f
, void *opaque
, int version_id
);
246 int register_savevm(const char *idstr
,
249 SaveStateHandler
*save_state
,
250 LoadStateHandler
*load_state
,
253 int register_savevm_live(const char *idstr
,
256 SaveLiveStateHandler
*save_live_state
,
257 SaveStateHandler
*save_state
,
258 LoadStateHandler
*load_state
,
261 void unregister_savevm(const char *idstr
, void *opaque
);
263 typedef void QEMUResetHandler(void *opaque
);
265 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
);
266 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
);
268 /* handler to set the boot_device order for a specific type of QEMUMachine */
269 /* return 0 if success */
270 typedef int QEMUBootSetHandler(void *opaque
, const char *boot_devices
);
271 void qemu_register_boot_set(QEMUBootSetHandler
*func
, void *opaque
);
272 int qemu_boot_set(const char *boot_devices
);
274 typedef struct VMStateInfo VMStateInfo
;
275 typedef struct VMStateDescription VMStateDescription
;
279 int (*get
)(QEMUFile
*f
, void *pv
, size_t size
);
280 void (*put
)(QEMUFile
*f
, void *pv
, size_t size
);
288 VMS_VARRAY
= 0x010, /* Array with size in another field */
289 VMS_BUFFER
= 0x020, /* static sized buffer */
290 VMS_ARRAY_OF_POINTER
= 0x040,
299 const VMStateInfo
*info
;
300 enum VMStateFlags flags
;
301 const VMStateDescription
*vmsd
;
303 bool (*field_exists
)(void *opaque
, int version_id
);
306 struct VMStateDescription
{
309 int minimum_version_id
;
310 int minimum_version_id_old
;
311 LoadStateHandler
*load_state_old
;
312 int (*pre_load
)(void *opaque
);
313 int (*post_load
)(void *opaque
, int version_id
);
314 void (*pre_save
)(void *opaque
);
315 void (*post_save
)(void *opaque
);
316 VMStateField
*fields
;
319 extern const VMStateInfo vmstate_info_int8
;
320 extern const VMStateInfo vmstate_info_int16
;
321 extern const VMStateInfo vmstate_info_int32
;
322 extern const VMStateInfo vmstate_info_int64
;
324 extern const VMStateInfo vmstate_info_uint8_equal
;
325 extern const VMStateInfo vmstate_info_int32_equal
;
326 extern const VMStateInfo vmstate_info_int32_le
;
328 extern const VMStateInfo vmstate_info_uint8
;
329 extern const VMStateInfo vmstate_info_uint16
;
330 extern const VMStateInfo vmstate_info_uint32
;
331 extern const VMStateInfo vmstate_info_uint64
;
333 extern const VMStateInfo vmstate_info_timer
;
334 extern const VMStateInfo vmstate_info_ptimer
;
335 extern const VMStateInfo vmstate_info_buffer
;
337 #define type_check_array(t1,t2,n) ((t1(*)[n])0 - (t2*)0)
338 #define type_check_pointer(t1,t2) ((t1**)0 - (t2*)0)
340 #define VMSTATE_SINGLE(_field, _state, _version, _info, _type) { \
341 .name = (stringify(_field)), \
342 .version_id = (_version), \
343 .size = sizeof(_type), \
345 .flags = VMS_SINGLE, \
346 .offset = offsetof(_state, _field) \
347 + type_check(_type,typeof_field(_state, _field)) \
350 #define VMSTATE_SINGLE_TEST(_field, _state, _test, _info, _type) { \
351 .name = (stringify(_field)), \
352 .field_exists = (_test), \
353 .size = sizeof(_type), \
355 .flags = VMS_SINGLE, \
356 .offset = offsetof(_state, _field) \
357 + type_check(_type,typeof_field(_state, _field)) \
360 #define VMSTATE_POINTER(_field, _state, _version, _info, _type) { \
361 .name = (stringify(_field)), \
362 .version_id = (_version), \
364 .size = sizeof(_type), \
365 .flags = VMS_SINGLE|VMS_POINTER, \
366 .offset = offsetof(_state, _field) \
367 + type_check(_type,typeof_field(_state, _field)) \
370 #define VMSTATE_ARRAY(_field, _state, _num, _version, _info, _type) {\
371 .name = (stringify(_field)), \
372 .version_id = (_version), \
375 .size = sizeof(_type), \
376 .flags = VMS_ARRAY, \
377 .offset = offsetof(_state, _field) \
378 + type_check_array(_type,typeof_field(_state, _field),_num) \
381 #define VMSTATE_ARRAY_TEST(_field, _state, _num, _test, _info, _type) {\
382 .name = (stringify(_field)), \
383 .field_exists = (_test), \
386 .size = sizeof(_type), \
387 .flags = VMS_ARRAY, \
388 .offset = offsetof(_state, _field) \
389 + type_check_array(_type,typeof_field(_state, _field),_num) \
392 #define VMSTATE_VARRAY(_field, _state, _field_num, _version, _info, _type) {\
393 .name = (stringify(_field)), \
394 .version_id = (_version), \
395 .num_offset = offsetof(_state, _field_num) \
396 + type_check(int32_t,typeof_field(_state, _field_num)), \
398 .size = sizeof(_type), \
399 .flags = VMS_VARRAY|VMS_POINTER, \
400 .offset = offsetof(_state, _field) \
401 + type_check_pointer(_type,typeof_field(_state, _field)) \
404 #define VMSTATE_STRUCT(_field, _state, _version, _vmsd, _type) { \
405 .name = (stringify(_field)), \
406 .version_id = (_version), \
408 .size = sizeof(_type), \
409 .flags = VMS_STRUCT, \
410 .offset = offsetof(_state, _field) \
411 + type_check(_type,typeof_field(_state, _field)) \
414 #define VMSTATE_STRUCT_POINTER(_field, _state, _vmsd, _type) { \
415 .name = (stringify(_field)), \
417 .size = sizeof(_type), \
418 .flags = VMS_STRUCT|VMS_POINTER, \
419 .offset = offsetof(_state, _field) \
420 + type_check(_type,typeof_field(_state, _field)) \
423 #define VMSTATE_ARRAY_OF_POINTER(_field, _state, _num, _version, _info, _type) {\
424 .name = (stringify(_field)), \
425 .version_id = (_version), \
428 .size = sizeof(_type), \
429 .flags = VMS_ARRAY|VMS_ARRAY_OF_POINTER, \
430 .offset = offsetof(_state, _field) \
431 + type_check_array(_type,typeof_field(_state, _field),_num) \
434 #define VMSTATE_STRUCT_ARRAY(_field, _state, _num, _version, _vmsd, _type) { \
435 .name = (stringify(_field)), \
437 .version_id = (_version), \
439 .size = sizeof(_type), \
440 .flags = VMS_STRUCT|VMS_ARRAY, \
441 .offset = offsetof(_state, _field) \
442 + type_check_array(_type,typeof_field(_state, _field),_num) \
445 #define VMSTATE_STRUCT_ARRAY_SIZE_UINT8(_field, _state, _field__num, _version, _vmsd, _type) { \
446 .name = (stringify(_field)), \
447 .num_offset = offsetof(_state, _field_num) \
448 + type_check(uint8_t,typeof_field(_state, _field_num)), \
449 .version_id = (_version), \
451 .size = sizeof(_type), \
452 .flags = VMS_STRUCT|VMS_ARRAY, \
453 .offset = offsetof(_state, _field) \
454 + type_check_array(_type,typeof_field(_state, _field),_num) \
457 #define VMSTATE_STATIC_BUFFER(_field, _state, _version) { \
458 .name = (stringify(_field)), \
459 .version_id = (_version), \
460 .size = sizeof(typeof_field(_state,_field)), \
461 .info = &vmstate_info_buffer, \
462 .flags = VMS_BUFFER, \
463 .offset = offsetof(_state, _field) \
464 + type_check_array(uint8_t,typeof_field(_state, _field),sizeof(typeof_field(_state,_field))) \
467 #define VMSTATE_BUFFER_START_MIDDLE(_field, _state, start) { \
468 .name = (stringify(_field)), \
469 .size = sizeof(typeof_field(_state,_field)) - start, \
470 .info = &vmstate_info_buffer, \
471 .flags = VMS_BUFFER, \
472 .offset = offsetof(_state, _field) + start \
473 + type_check_array(uint8_t,typeof_field(_state, _field),sizeof(typeof_field(_state,_field))) \
476 extern const VMStateDescription vmstate_pci_device
;
478 #define VMSTATE_PCI_DEVICE(_field, _state) { \
479 .name = (stringify(_field)), \
480 .size = sizeof(PCIDevice), \
481 .vmsd = &vmstate_pci_device, \
482 .flags = VMS_STRUCT, \
483 .offset = offsetof(_state, _field) \
484 + type_check(PCIDevice,typeof_field(_state, _field)) \
487 extern const VMStateDescription vmstate_i2c_slave
;
489 #define VMSTATE_I2C_SLAVE(_field, _state) { \
490 .name = (stringify(_field)), \
491 .size = sizeof(i2c_slave), \
492 .vmsd = &vmstate_i2c_slave, \
493 .flags = VMS_STRUCT, \
494 .offset = offsetof(_state, _field) \
495 + type_check(i2c_slave,typeof_field(_state, _field)) \
499 _f_n : num of elements field_name
501 _s : struct state name
505 #define VMSTATE_INT8_V(_f, _s, _v) \
506 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_int8, int8_t)
507 #define VMSTATE_INT16_V(_f, _s, _v) \
508 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_int16, int16_t)
509 #define VMSTATE_INT32_V(_f, _s, _v) \
510 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_int32, int32_t)
511 #define VMSTATE_INT64_V(_f, _s, _v) \
512 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_int64, int64_t)
514 #define VMSTATE_UINT8_V(_f, _s, _v) \
515 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_uint8, uint8_t)
516 #define VMSTATE_UINT16_V(_f, _s, _v) \
517 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_uint16, uint16_t)
518 #define VMSTATE_UINT32_V(_f, _s, _v) \
519 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_uint32, uint32_t)
520 #define VMSTATE_UINT64_V(_f, _s, _v) \
521 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_uint64, uint64_t)
523 #define VMSTATE_INT8(_f, _s) \
524 VMSTATE_INT8_V(_f, _s, 0)
525 #define VMSTATE_INT16(_f, _s) \
526 VMSTATE_INT16_V(_f, _s, 0)
527 #define VMSTATE_INT32(_f, _s) \
528 VMSTATE_INT32_V(_f, _s, 0)
529 #define VMSTATE_INT64(_f, _s) \
530 VMSTATE_INT64_V(_f, _s, 0)
532 #define VMSTATE_UINT8(_f, _s) \
533 VMSTATE_UINT8_V(_f, _s, 0)
534 #define VMSTATE_UINT16(_f, _s) \
535 VMSTATE_UINT16_V(_f, _s, 0)
536 #define VMSTATE_UINT32(_f, _s) \
537 VMSTATE_UINT32_V(_f, _s, 0)
538 #define VMSTATE_UINT64(_f, _s) \
539 VMSTATE_UINT64_V(_f, _s, 0)
541 #define VMSTATE_UINT8_EQUAL(_f, _s) \
542 VMSTATE_SINGLE(_f, _s, 0, vmstate_info_uint8_equal, uint8_t)
544 #define VMSTATE_INT32_EQUAL(_f, _s) \
545 VMSTATE_SINGLE(_f, _s, 0, vmstate_info_int32_equal, int32_t)
547 #define VMSTATE_INT32_LE(_f, _s) \
548 VMSTATE_SINGLE(_f, _s, 0, vmstate_info_int32_le, int32_t)
550 #define VMSTATE_UINT32_TEST(_f, _s, _t) \
551 VMSTATE_SINGLE_TEST(_f, _s, _t, vmstate_info_uint32, uint32_t)
553 #define VMSTATE_TIMER_V(_f, _s, _v) \
554 VMSTATE_POINTER(_f, _s, _v, vmstate_info_timer, QEMUTimer *)
556 #define VMSTATE_TIMER(_f, _s) \
557 VMSTATE_TIMER_V(_f, _s, 0)
559 #define VMSTATE_TIMER_ARRAY(_f, _s, _n) \
560 VMSTATE_ARRAY_OF_POINTER(_f, _s, _n, 0, vmstate_info_timer, QEMUTimer *)
562 #define VMSTATE_PTIMER_V(_f, _s, _v) \
563 VMSTATE_POINTER(_f, _s, _v, vmstate_info_ptimer, ptimer_state *)
565 #define VMSTATE_PTIMER(_f, _s) \
566 VMSTATE_PTIMER_V(_f, _s, 0)
568 #define VMSTATE_UINT16_ARRAY_V(_f, _s, _n, _v) \
569 VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_uint16, uint16_t)
571 #define VMSTATE_UINT16_ARRAY(_f, _s, _n) \
572 VMSTATE_UINT16_ARRAY_V(_f, _s, _n, 0)
574 #define VMSTATE_UINT8_ARRAY_V(_f, _s, _n, _v) \
575 VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_uint8, uint8_t)
577 #define VMSTATE_UINT8_ARRAY(_f, _s, _n) \
578 VMSTATE_UINT8_ARRAY_V(_f, _s, _n, 0)
580 #define VMSTATE_UINT32_ARRAY_V(_f, _s, _n, _v) \
581 VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_uint32, uint32_t)
583 #define VMSTATE_UINT32_ARRAY(_f, _s, _n) \
584 VMSTATE_UINT32_ARRAY_V(_f, _s, _n, 0)
586 #define VMSTATE_UINT64_ARRAY_V(_f, _s, _n, _v) \
587 VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_uint64, uint64_t)
589 #define VMSTATE_UINT64_ARRAY(_f, _s, _n) \
590 VMSTATE_UINT64_ARRAY_V(_f, _s, _n, 0)
592 #define VMSTATE_INT16_ARRAY_V(_f, _s, _n, _v) \
593 VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_int16, int16_t)
595 #define VMSTATE_INT16_ARRAY(_f, _s, _n) \
596 VMSTATE_INT16_ARRAY_V(_f, _s, _n, 0)
598 #define VMSTATE_INT32_ARRAY_V(_f, _s, _n, _v) \
599 VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_int32, int32_t)
601 #define VMSTATE_INT32_ARRAY(_f, _s, _n) \
602 VMSTATE_INT32_ARRAY_V(_f, _s, _n, 0)
604 #define VMSTATE_INT32_VARRAY_V(_f, _s, _f_n, _v) \
605 VMSTATE_VARRAY(_f, _s, _f_n, _v, vmstate_info_int32, int32_t)
607 #define VMSTATE_INT32_VARRAY(_f, _s, _f_n) \
608 VMSTATE_INT32_VARRAY_V(_f, _s, _f_n, 0)
610 #define VMSTATE_BUFFER_V(_f, _s, _v) \
611 VMSTATE_STATIC_BUFFER(_f, _s, _v)
613 #define VMSTATE_BUFFER(_f, _s) \
614 VMSTATE_STATIC_BUFFER(_f, _s, 0)
617 #if TARGET_LONG_BITS == 64
618 #define VMSTATE_UINTTL_V(_f, _s, _v) \
619 VMSTATE_UINT64_V(_f, _s, _v)
620 #define VMSTATE_UINTTL_ARRAY_V(_f, _s, _n, _v) \
621 VMSTATE_UINT64_ARRAY_V(_f, _s, _n, _v)
623 #define VMSTATE_UINTTL_V(_f, _s, _v) \
624 VMSTATE_UINT32_V(_f, _s, _v)
625 #define VMSTATE_UINTTL_ARRAY_V(_f, _s, _n, _v) \
626 VMSTATE_UINT32_ARRAY_V(_f, _s, _n, _v)
628 #define VMSTATE_UINTTL(_f, _s) \
629 VMSTATE_UINTTL_V(_f, _s, 0)
630 #define VMSTATE_UINTTL_ARRAY(_f, _s, _n) \
631 VMSTATE_UINTTL_ARRAY_V(_f, _s, _n, 0)
635 #define VMSTATE_END_OF_LIST() \
638 extern int vmstate_load_state(QEMUFile
*f
, const VMStateDescription
*vmsd
,
639 void *opaque
, int version_id
);
640 extern void vmstate_save_state(QEMUFile
*f
, const VMStateDescription
*vmsd
,
642 extern int vmstate_register(int instance_id
, const VMStateDescription
*vmsd
,
644 void vmstate_unregister(const VMStateDescription
*vmsd
, void *opaque
);