vmstate: Rename VMS_VARRAY to VMS_VARRAY_INT32
[qemu.git] / hw / hw.h
blob89b605fc57b7b099d1820182f7b97cae2773114b
1 /* Declarations for use by hardware emulation. */
2 #ifndef QEMU_HW_H
3 #define QEMU_HW_H
5 #include "qemu-common.h"
7 #if defined(TARGET_PHYS_ADDR_BITS) && !defined(NEED_CPU_H)
8 #include "targphys.h"
9 #include "poison.h"
10 #include "cpu-common.h"
11 #endif
13 #include <stdbool.h>
14 #include "ioport.h"
15 #include "irq.h"
17 /* VM Load/Save */
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
93 * resume output. */
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);
217 #ifdef NEED_CPU_H
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
227 #else
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
236 #endif
237 #endif
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,
247 int instance_id,
248 int version_id,
249 SaveStateHandler *save_state,
250 LoadStateHandler *load_state,
251 void *opaque);
253 int register_savevm_live(const char *idstr,
254 int instance_id,
255 int version_id,
256 SaveLiveStateHandler *save_live_state,
257 SaveStateHandler *save_state,
258 LoadStateHandler *load_state,
259 void *opaque);
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;
277 struct VMStateInfo {
278 const char *name;
279 int (*get)(QEMUFile *f, void *pv, size_t size);
280 void (*put)(QEMUFile *f, void *pv, size_t size);
283 enum VMStateFlags {
284 VMS_SINGLE = 0x001,
285 VMS_POINTER = 0x002,
286 VMS_ARRAY = 0x004,
287 VMS_STRUCT = 0x008,
288 VMS_VARRAY_INT32 = 0x010, /* Array with size in another field */
289 VMS_BUFFER = 0x020, /* static sized buffer */
290 VMS_ARRAY_OF_POINTER = 0x040,
293 typedef struct {
294 const char *name;
295 size_t offset;
296 size_t size;
297 int num;
298 size_t num_offset;
299 const VMStateInfo *info;
300 enum VMStateFlags flags;
301 const VMStateDescription *vmsd;
302 int version_id;
303 bool (*field_exists)(void *opaque, int version_id);
304 } VMStateField;
306 struct VMStateDescription {
307 const char *name;
308 int version_id;
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_uint16_equal;
326 extern const VMStateInfo vmstate_info_int32_equal;
327 extern const VMStateInfo vmstate_info_int32_le;
329 extern const VMStateInfo vmstate_info_uint8;
330 extern const VMStateInfo vmstate_info_uint16;
331 extern const VMStateInfo vmstate_info_uint32;
332 extern const VMStateInfo vmstate_info_uint64;
334 extern const VMStateInfo vmstate_info_timer;
335 extern const VMStateInfo vmstate_info_ptimer;
336 extern const VMStateInfo vmstate_info_buffer;
338 #define type_check_array(t1,t2,n) ((t1(*)[n])0 - (t2*)0)
339 #define type_check_pointer(t1,t2) ((t1**)0 - (t2*)0)
341 #define VMSTATE_SINGLE(_field, _state, _version, _info, _type) { \
342 .name = (stringify(_field)), \
343 .version_id = (_version), \
344 .size = sizeof(_type), \
345 .info = &(_info), \
346 .flags = VMS_SINGLE, \
347 .offset = offsetof(_state, _field) \
348 + type_check(_type,typeof_field(_state, _field)) \
351 #define VMSTATE_SINGLE_TEST(_field, _state, _test, _info, _type) { \
352 .name = (stringify(_field)), \
353 .field_exists = (_test), \
354 .size = sizeof(_type), \
355 .info = &(_info), \
356 .flags = VMS_SINGLE, \
357 .offset = offsetof(_state, _field) \
358 + type_check(_type,typeof_field(_state, _field)) \
361 #define VMSTATE_POINTER(_field, _state, _version, _info, _type) { \
362 .name = (stringify(_field)), \
363 .version_id = (_version), \
364 .info = &(_info), \
365 .size = sizeof(_type), \
366 .flags = VMS_SINGLE|VMS_POINTER, \
367 .offset = offsetof(_state, _field) \
368 + type_check(_type,typeof_field(_state, _field)) \
371 #define VMSTATE_ARRAY(_field, _state, _num, _version, _info, _type) {\
372 .name = (stringify(_field)), \
373 .version_id = (_version), \
374 .num = (_num), \
375 .info = &(_info), \
376 .size = sizeof(_type), \
377 .flags = VMS_ARRAY, \
378 .offset = offsetof(_state, _field) \
379 + type_check_array(_type,typeof_field(_state, _field),_num) \
382 #define VMSTATE_ARRAY_TEST(_field, _state, _num, _test, _info, _type) {\
383 .name = (stringify(_field)), \
384 .field_exists = (_test), \
385 .num = (_num), \
386 .info = &(_info), \
387 .size = sizeof(_type), \
388 .flags = VMS_ARRAY, \
389 .offset = offsetof(_state, _field) \
390 + type_check_array(_type,typeof_field(_state, _field),_num) \
393 #define VMSTATE_VARRAY_INT32(_field, _state, _field_num, _version, _info, _type) {\
394 .name = (stringify(_field)), \
395 .version_id = (_version), \
396 .num_offset = offsetof(_state, _field_num) \
397 + type_check(int32_t,typeof_field(_state, _field_num)), \
398 .info = &(_info), \
399 .size = sizeof(_type), \
400 .flags = VMS_VARRAY_INT32|VMS_POINTER, \
401 .offset = offsetof(_state, _field) \
402 + type_check_pointer(_type,typeof_field(_state, _field)) \
405 #define VMSTATE_STRUCT(_field, _state, _version, _vmsd, _type) { \
406 .name = (stringify(_field)), \
407 .version_id = (_version), \
408 .vmsd = &(_vmsd), \
409 .size = sizeof(_type), \
410 .flags = VMS_STRUCT, \
411 .offset = offsetof(_state, _field) \
412 + type_check(_type,typeof_field(_state, _field)) \
415 #define VMSTATE_STRUCT_POINTER(_field, _state, _vmsd, _type) { \
416 .name = (stringify(_field)), \
417 .vmsd = &(_vmsd), \
418 .size = sizeof(_type), \
419 .flags = VMS_STRUCT|VMS_POINTER, \
420 .offset = offsetof(_state, _field) \
421 + type_check(_type,typeof_field(_state, _field)) \
424 #define VMSTATE_ARRAY_OF_POINTER(_field, _state, _num, _version, _info, _type) {\
425 .name = (stringify(_field)), \
426 .version_id = (_version), \
427 .num = (_num), \
428 .info = &(_info), \
429 .size = sizeof(_type), \
430 .flags = VMS_ARRAY|VMS_ARRAY_OF_POINTER, \
431 .offset = offsetof(_state, _field) \
432 + type_check_array(_type,typeof_field(_state, _field),_num) \
435 #define VMSTATE_STRUCT_ARRAY(_field, _state, _num, _version, _vmsd, _type) { \
436 .name = (stringify(_field)), \
437 .num = (_num), \
438 .version_id = (_version), \
439 .vmsd = &(_vmsd), \
440 .size = sizeof(_type), \
441 .flags = VMS_STRUCT|VMS_ARRAY, \
442 .offset = offsetof(_state, _field) \
443 + type_check_array(_type,typeof_field(_state, _field),_num) \
446 #define VMSTATE_STRUCT_ARRAY_SIZE_UINT8(_field, _state, _field__num, _version, _vmsd, _type) { \
447 .name = (stringify(_field)), \
448 .num_offset = offsetof(_state, _field_num) \
449 + type_check(uint8_t,typeof_field(_state, _field_num)), \
450 .version_id = (_version), \
451 .vmsd = &(_vmsd), \
452 .size = sizeof(_type), \
453 .flags = VMS_STRUCT|VMS_ARRAY, \
454 .offset = offsetof(_state, _field) \
455 + type_check_array(_type,typeof_field(_state, _field),_num) \
458 #define VMSTATE_STATIC_BUFFER(_field, _state, _version) { \
459 .name = (stringify(_field)), \
460 .version_id = (_version), \
461 .size = sizeof(typeof_field(_state,_field)), \
462 .info = &vmstate_info_buffer, \
463 .flags = VMS_BUFFER, \
464 .offset = offsetof(_state, _field) \
465 + type_check_array(uint8_t,typeof_field(_state, _field),sizeof(typeof_field(_state,_field))) \
468 #define VMSTATE_STATIC_BUFFER_TEST(_field, _state, _test) { \
469 .name = (stringify(_field)), \
470 .field_exists = (_test), \
471 .size = sizeof(typeof_field(_state,_field)), \
472 .info = &vmstate_info_buffer, \
473 .flags = VMS_BUFFER, \
474 .offset = offsetof(_state, _field) \
475 + type_check_array(uint8_t,typeof_field(_state, _field),sizeof(typeof_field(_state,_field))) \
478 #define VMSTATE_PARTIAL_BUFFER(_field, _state, _size) { \
479 .name = (stringify(_field)), \
480 .size = (_size), \
481 .info = &vmstate_info_buffer, \
482 .flags = VMS_BUFFER, \
483 .offset = offsetof(_state, _field) \
484 + type_check_array(uint8_t,typeof_field(_state, _field),sizeof(typeof_field(_state,_field))) \
487 #define VMSTATE_BUFFER_START_MIDDLE(_field, _state, start) { \
488 .name = (stringify(_field)), \
489 .size = sizeof(typeof_field(_state,_field)) - start, \
490 .info = &vmstate_info_buffer, \
491 .flags = VMS_BUFFER, \
492 .offset = offsetof(_state, _field) + start \
493 + type_check_array(uint8_t,typeof_field(_state, _field),sizeof(typeof_field(_state,_field))) \
496 extern const VMStateDescription vmstate_pci_device;
498 #define VMSTATE_PCI_DEVICE(_field, _state) { \
499 .name = (stringify(_field)), \
500 .size = sizeof(PCIDevice), \
501 .vmsd = &vmstate_pci_device, \
502 .flags = VMS_STRUCT, \
503 .offset = offsetof(_state, _field) \
504 + type_check(PCIDevice,typeof_field(_state, _field)) \
507 extern const VMStateDescription vmstate_i2c_slave;
509 #define VMSTATE_I2C_SLAVE(_field, _state) { \
510 .name = (stringify(_field)), \
511 .size = sizeof(i2c_slave), \
512 .vmsd = &vmstate_i2c_slave, \
513 .flags = VMS_STRUCT, \
514 .offset = offsetof(_state, _field) \
515 + type_check(i2c_slave,typeof_field(_state, _field)) \
518 /* _f : field name
519 _f_n : num of elements field_name
520 _n : num of elements
521 _s : struct state name
522 _v : version
525 #define VMSTATE_INT8_V(_f, _s, _v) \
526 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_int8, int8_t)
527 #define VMSTATE_INT16_V(_f, _s, _v) \
528 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_int16, int16_t)
529 #define VMSTATE_INT32_V(_f, _s, _v) \
530 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_int32, int32_t)
531 #define VMSTATE_INT64_V(_f, _s, _v) \
532 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_int64, int64_t)
534 #define VMSTATE_UINT8_V(_f, _s, _v) \
535 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_uint8, uint8_t)
536 #define VMSTATE_UINT16_V(_f, _s, _v) \
537 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_uint16, uint16_t)
538 #define VMSTATE_UINT32_V(_f, _s, _v) \
539 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_uint32, uint32_t)
540 #define VMSTATE_UINT64_V(_f, _s, _v) \
541 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_uint64, uint64_t)
543 #define VMSTATE_INT8(_f, _s) \
544 VMSTATE_INT8_V(_f, _s, 0)
545 #define VMSTATE_INT16(_f, _s) \
546 VMSTATE_INT16_V(_f, _s, 0)
547 #define VMSTATE_INT32(_f, _s) \
548 VMSTATE_INT32_V(_f, _s, 0)
549 #define VMSTATE_INT64(_f, _s) \
550 VMSTATE_INT64_V(_f, _s, 0)
552 #define VMSTATE_UINT8(_f, _s) \
553 VMSTATE_UINT8_V(_f, _s, 0)
554 #define VMSTATE_UINT16(_f, _s) \
555 VMSTATE_UINT16_V(_f, _s, 0)
556 #define VMSTATE_UINT32(_f, _s) \
557 VMSTATE_UINT32_V(_f, _s, 0)
558 #define VMSTATE_UINT64(_f, _s) \
559 VMSTATE_UINT64_V(_f, _s, 0)
561 #define VMSTATE_UINT8_EQUAL(_f, _s) \
562 VMSTATE_SINGLE(_f, _s, 0, vmstate_info_uint8_equal, uint8_t)
564 #define VMSTATE_UINT16_EQUAL(_f, _s) \
565 VMSTATE_SINGLE(_f, _s, 0, vmstate_info_uint16_equal, uint16_t)
567 #define VMSTATE_UINT16_EQUAL_V(_f, _s, _v) \
568 VMSTATE_SINGLE(_f, _s, _v, vmstate_info_uint16_equal, uint16_t)
570 #define VMSTATE_INT32_EQUAL(_f, _s) \
571 VMSTATE_SINGLE(_f, _s, 0, vmstate_info_int32_equal, int32_t)
573 #define VMSTATE_INT32_LE(_f, _s) \
574 VMSTATE_SINGLE(_f, _s, 0, vmstate_info_int32_le, int32_t)
576 #define VMSTATE_UINT32_TEST(_f, _s, _t) \
577 VMSTATE_SINGLE_TEST(_f, _s, _t, vmstate_info_uint32, uint32_t)
579 #define VMSTATE_TIMER_V(_f, _s, _v) \
580 VMSTATE_POINTER(_f, _s, _v, vmstate_info_timer, QEMUTimer *)
582 #define VMSTATE_TIMER(_f, _s) \
583 VMSTATE_TIMER_V(_f, _s, 0)
585 #define VMSTATE_TIMER_ARRAY(_f, _s, _n) \
586 VMSTATE_ARRAY_OF_POINTER(_f, _s, _n, 0, vmstate_info_timer, QEMUTimer *)
588 #define VMSTATE_PTIMER_V(_f, _s, _v) \
589 VMSTATE_POINTER(_f, _s, _v, vmstate_info_ptimer, ptimer_state *)
591 #define VMSTATE_PTIMER(_f, _s) \
592 VMSTATE_PTIMER_V(_f, _s, 0)
594 #define VMSTATE_UINT16_ARRAY_V(_f, _s, _n, _v) \
595 VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_uint16, uint16_t)
597 #define VMSTATE_UINT16_ARRAY(_f, _s, _n) \
598 VMSTATE_UINT16_ARRAY_V(_f, _s, _n, 0)
600 #define VMSTATE_UINT8_ARRAY_V(_f, _s, _n, _v) \
601 VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_uint8, uint8_t)
603 #define VMSTATE_UINT8_ARRAY(_f, _s, _n) \
604 VMSTATE_UINT8_ARRAY_V(_f, _s, _n, 0)
606 #define VMSTATE_UINT32_ARRAY_V(_f, _s, _n, _v) \
607 VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_uint32, uint32_t)
609 #define VMSTATE_UINT32_ARRAY(_f, _s, _n) \
610 VMSTATE_UINT32_ARRAY_V(_f, _s, _n, 0)
612 #define VMSTATE_UINT64_ARRAY_V(_f, _s, _n, _v) \
613 VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_uint64, uint64_t)
615 #define VMSTATE_UINT64_ARRAY(_f, _s, _n) \
616 VMSTATE_UINT64_ARRAY_V(_f, _s, _n, 0)
618 #define VMSTATE_INT16_ARRAY_V(_f, _s, _n, _v) \
619 VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_int16, int16_t)
621 #define VMSTATE_INT16_ARRAY(_f, _s, _n) \
622 VMSTATE_INT16_ARRAY_V(_f, _s, _n, 0)
624 #define VMSTATE_INT32_ARRAY_V(_f, _s, _n, _v) \
625 VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_int32, int32_t)
627 #define VMSTATE_INT32_ARRAY(_f, _s, _n) \
628 VMSTATE_INT32_ARRAY_V(_f, _s, _n, 0)
630 #define VMSTATE_INT32_VARRAY_V(_f, _s, _f_n, _v) \
631 VMSTATE_VARRAY_INT32(_f, _s, _f_n, _v, vmstate_info_int32, int32_t)
633 #define VMSTATE_INT32_VARRAY(_f, _s, _f_n) \
634 VMSTATE_INT32_VARRAY_V(_f, _s, _f_n, 0)
636 #define VMSTATE_BUFFER_V(_f, _s, _v) \
637 VMSTATE_STATIC_BUFFER(_f, _s, _v)
639 #define VMSTATE_BUFFER(_f, _s) \
640 VMSTATE_STATIC_BUFFER(_f, _s, 0)
642 #define VMSTATE_BUFFER_TEST(_f, _s, _t) \
643 VMSTATE_STATIC_BUFFER_TEST(_f, _s, _t)
645 #ifdef NEED_CPU_H
646 #if TARGET_LONG_BITS == 64
647 #define VMSTATE_UINTTL_V(_f, _s, _v) \
648 VMSTATE_UINT64_V(_f, _s, _v)
649 #define VMSTATE_UINTTL_ARRAY_V(_f, _s, _n, _v) \
650 VMSTATE_UINT64_ARRAY_V(_f, _s, _n, _v)
651 #else
652 #define VMSTATE_UINTTL_V(_f, _s, _v) \
653 VMSTATE_UINT32_V(_f, _s, _v)
654 #define VMSTATE_UINTTL_ARRAY_V(_f, _s, _n, _v) \
655 VMSTATE_UINT32_ARRAY_V(_f, _s, _n, _v)
656 #endif
657 #define VMSTATE_UINTTL(_f, _s) \
658 VMSTATE_UINTTL_V(_f, _s, 0)
659 #define VMSTATE_UINTTL_ARRAY(_f, _s, _n) \
660 VMSTATE_UINTTL_ARRAY_V(_f, _s, _n, 0)
662 #endif
664 #define VMSTATE_END_OF_LIST() \
667 extern int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
668 void *opaque, int version_id);
669 extern void vmstate_save_state(QEMUFile *f, const VMStateDescription *vmsd,
670 void *opaque);
671 extern int vmstate_register(int instance_id, const VMStateDescription *vmsd,
672 void *base);
673 void vmstate_unregister(const VMStateDescription *vmsd, void *opaque);
674 #endif