1 | /** @file
|
---|
2 | * SSM - The Save State Manager.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | *
|
---|
25 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
26 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
27 | * additional information or have any questions.
|
---|
28 | */
|
---|
29 |
|
---|
30 | #ifndef ___VBox_ssm_h
|
---|
31 | #define ___VBox_ssm_h
|
---|
32 |
|
---|
33 | #include <VBox/cdefs.h>
|
---|
34 | #include <VBox/types.h>
|
---|
35 | #include <VBox/tm.h>
|
---|
36 | #include <VBox/vmapi.h>
|
---|
37 |
|
---|
38 | __BEGIN_DECLS
|
---|
39 |
|
---|
40 | /** @defgroup grp_ssm The Saved State Manager API
|
---|
41 | * @{
|
---|
42 | */
|
---|
43 |
|
---|
44 | /**
|
---|
45 | * Determine the major version of the SSM version. If the major SSM version of two snapshots is
|
---|
46 | * different, the snapshots are incompatible.
|
---|
47 | */
|
---|
48 | #define SSM_VERSION_MAJOR(ver) ((ver) & 0xffff0000)
|
---|
49 |
|
---|
50 | /**
|
---|
51 | * Determine the minor version of the SSM version. If the major SSM version of two snapshots is
|
---|
52 | * the same, the code must handle incompatibilies between minor version changes (e.g. use dummy
|
---|
53 | * values for non-existent fields).
|
---|
54 | */
|
---|
55 | #define SSM_VERSION_MINOR(ver) ((ver) & 0x0000ffff)
|
---|
56 |
|
---|
57 | /**
|
---|
58 | * Determine if the major version changed between two SSM versions.
|
---|
59 | */
|
---|
60 | #define SSM_VERSION_MAJOR_CHANGED(ver1,ver2) (SSM_VERSION_MAJOR(ver1) != SSM_VERSION_MAJOR(ver2))
|
---|
61 |
|
---|
62 |
|
---|
63 | #ifdef IN_RING3
|
---|
64 | /** @defgroup grp_ssm_r3 The SSM Host Context Ring-3 API
|
---|
65 | * @{
|
---|
66 | */
|
---|
67 |
|
---|
68 |
|
---|
69 | /**
|
---|
70 | * What to do after the save/load operation.
|
---|
71 | */
|
---|
72 | typedef enum SSMAFTER
|
---|
73 | {
|
---|
74 | /** Will resume the loaded state. */
|
---|
75 | SSMAFTER_RESUME = 1,
|
---|
76 | /** Will destroy the VM after saving. */
|
---|
77 | SSMAFTER_DESTROY,
|
---|
78 | /** Will continue execution after saving the VM. */
|
---|
79 | SSMAFTER_CONTINUE,
|
---|
80 | /** Will debug the saved state.
|
---|
81 | * This is used to drop some of the stricter consitentcy checks so it'll
|
---|
82 | * load fine in the debugger or animator. */
|
---|
83 | SSMAFTER_DEBUG_IT,
|
---|
84 | /** The file was opened using SSMR3Open() and we have no idea what the plan is. */
|
---|
85 | SSMAFTER_OPENED
|
---|
86 | } SSMAFTER;
|
---|
87 |
|
---|
88 |
|
---|
89 | /**
|
---|
90 | * A structure field description.
|
---|
91 | *
|
---|
92 | * @todo Add an type field here for recording what's a GCPtr, GCPhys or anything
|
---|
93 | * else that may change and is expected to continue to work.
|
---|
94 | * @todo Later we need to add load transformations to this structure. I think a
|
---|
95 | * callback with a number of default transformations in SIG_DEF style
|
---|
96 | * would be good enough. The callback would take a user context from a new
|
---|
97 | * SSMR3GetStruct parameter or something.
|
---|
98 | */
|
---|
99 | typedef struct SSMFIELD
|
---|
100 | {
|
---|
101 | /** Field offset into the structure. */
|
---|
102 | uint32_t off;
|
---|
103 | /** The size of the field. */
|
---|
104 | uint32_t cb;
|
---|
105 | } SSMFIELD;
|
---|
106 | /** Pointer to a structure field description. */
|
---|
107 | typedef SSMFIELD *PSSMFIELD;
|
---|
108 | /** Pointer to a const structure field description. */
|
---|
109 | typedef const SSMFIELD *PCSSMFIELD;
|
---|
110 |
|
---|
111 | /** Emit a SSMFIELD array entry. */
|
---|
112 | #define SSMFIELD_ENTRY(Type, Field) { RT_OFFSETOF(Type, Field), RT_SIZEOFMEMB(Type, Field) }
|
---|
113 | /** Emit a SSMFIELD array entry for a RTGCPTR type. */
|
---|
114 | #define SSMFIELD_ENTRY_GCPTR(Type, Field) SSMFIELD_ENTRY(Type, Field)
|
---|
115 | /** Emit a SSMFIELD array entry for a RTGCPHYS type. */
|
---|
116 | #define SSMFIELD_ENTRY_GCPHYS(Type, Field) SSMFIELD_ENTRY(Type, Field)
|
---|
117 | /** Emit the terminating entry of a SSMFIELD array. */
|
---|
118 | #define SSMFIELD_ENTRY_TERM() { UINT32_MAX, UINT32_MAX }
|
---|
119 |
|
---|
120 |
|
---|
121 |
|
---|
122 | /** The PDM Device callback variants.
|
---|
123 | * @{
|
---|
124 | */
|
---|
125 |
|
---|
126 | /**
|
---|
127 | * Prepare state save operation.
|
---|
128 | *
|
---|
129 | * @returns VBox status code.
|
---|
130 | * @param pDevIns Device instance of the device which registered the data unit.
|
---|
131 | * @param pSSM SSM operation handle.
|
---|
132 | */
|
---|
133 | typedef DECLCALLBACK(int) FNSSMDEVSAVEPREP(PPDMDEVINS pDevIns, PSSMHANDLE pSSM);
|
---|
134 | /** Pointer to a FNSSMDEVSAVEPREP() function. */
|
---|
135 | typedef FNSSMDEVSAVEPREP *PFNSSMDEVSAVEPREP;
|
---|
136 |
|
---|
137 | /**
|
---|
138 | * Execute state save operation.
|
---|
139 | *
|
---|
140 | * @returns VBox status code.
|
---|
141 | * @param pDevIns Device instance of the device which registered the data unit.
|
---|
142 | * @param pSSM SSM operation handle.
|
---|
143 | */
|
---|
144 | typedef DECLCALLBACK(int) FNSSMDEVSAVEEXEC(PPDMDEVINS pDevIns, PSSMHANDLE pSSM);
|
---|
145 | /** Pointer to a FNSSMDEVSAVEEXEC() function. */
|
---|
146 | typedef FNSSMDEVSAVEEXEC *PFNSSMDEVSAVEEXEC;
|
---|
147 |
|
---|
148 | /**
|
---|
149 | * Done state save operation.
|
---|
150 | *
|
---|
151 | * @returns VBox status code.
|
---|
152 | * @param pDevIns Device instance of the device which registered the data unit.
|
---|
153 | * @param pSSM SSM operation handle.
|
---|
154 | */
|
---|
155 | typedef DECLCALLBACK(int) FNSSMDEVSAVEDONE(PPDMDEVINS pDevIns, PSSMHANDLE pSSM);
|
---|
156 | /** Pointer to a FNSSMDEVSAVEDONE() function. */
|
---|
157 | typedef FNSSMDEVSAVEDONE *PFNSSMDEVSAVEDONE;
|
---|
158 |
|
---|
159 | /**
|
---|
160 | * Prepare state load operation.
|
---|
161 | *
|
---|
162 | * @returns VBox status code.
|
---|
163 | * @param pDevIns Device instance of the device which registered the data unit.
|
---|
164 | * @param pSSM SSM operation handle.
|
---|
165 | */
|
---|
166 | typedef DECLCALLBACK(int) FNSSMDEVLOADPREP(PPDMDEVINS pDevIns, PSSMHANDLE pSSM);
|
---|
167 | /** Pointer to a FNSSMDEVLOADPREP() function. */
|
---|
168 | typedef FNSSMDEVLOADPREP *PFNSSMDEVLOADPREP;
|
---|
169 |
|
---|
170 | /**
|
---|
171 | * Execute state load operation.
|
---|
172 | *
|
---|
173 | * @returns VBox status code.
|
---|
174 | * @param pDevIns Device instance of the device which registered the data unit.
|
---|
175 | * @param pSSM SSM operation handle.
|
---|
176 | * @param u32Version Data layout version.
|
---|
177 | */
|
---|
178 | typedef DECLCALLBACK(int) FNSSMDEVLOADEXEC(PPDMDEVINS pDevIns, PSSMHANDLE pSSM, uint32_t u32Version);
|
---|
179 | /** Pointer to a FNSSMDEVLOADEXEC() function. */
|
---|
180 | typedef FNSSMDEVLOADEXEC *PFNSSMDEVLOADEXEC;
|
---|
181 |
|
---|
182 | /**
|
---|
183 | * Done state load operation.
|
---|
184 | *
|
---|
185 | * @returns VBox load code.
|
---|
186 | * @param pDevIns Device instance of the device which registered the data unit.
|
---|
187 | * @param pSSM SSM operation handle.
|
---|
188 | */
|
---|
189 | typedef DECLCALLBACK(int) FNSSMDEVLOADDONE(PPDMDEVINS pDevIns, PSSMHANDLE pSSM);
|
---|
190 | /** Pointer to a FNSSMDEVLOADDONE() function. */
|
---|
191 | typedef FNSSMDEVLOADDONE *PFNSSMDEVLOADDONE;
|
---|
192 |
|
---|
193 | /** @} */
|
---|
194 |
|
---|
195 |
|
---|
196 | /** The PDM Driver callback variants.
|
---|
197 | * @{
|
---|
198 | */
|
---|
199 |
|
---|
200 | /**
|
---|
201 | * Prepare state save operation.
|
---|
202 | *
|
---|
203 | * @returns VBox status code.
|
---|
204 | * @param pDrvIns Driver instance of the driver which registered the data unit.
|
---|
205 | * @param pSSM SSM operation handle.
|
---|
206 | */
|
---|
207 | typedef DECLCALLBACK(int) FNSSMDRVSAVEPREP(PPDMDRVINS pDrvIns, PSSMHANDLE pSSM);
|
---|
208 | /** Pointer to a FNSSMDRVSAVEPREP() function. */
|
---|
209 | typedef FNSSMDRVSAVEPREP *PFNSSMDRVSAVEPREP;
|
---|
210 |
|
---|
211 | /**
|
---|
212 | * Execute state save operation.
|
---|
213 | *
|
---|
214 | * @returns VBox status code.
|
---|
215 | * @param pDrvIns Driver instance of the driver which registered the data unit.
|
---|
216 | * @param pSSM SSM operation handle.
|
---|
217 | */
|
---|
218 | typedef DECLCALLBACK(int) FNSSMDRVSAVEEXEC(PPDMDRVINS pDrvIns, PSSMHANDLE pSSM);
|
---|
219 | /** Pointer to a FNSSMDRVSAVEEXEC() function. */
|
---|
220 | typedef FNSSMDRVSAVEEXEC *PFNSSMDRVSAVEEXEC;
|
---|
221 |
|
---|
222 | /**
|
---|
223 | * Done state save operation.
|
---|
224 | *
|
---|
225 | * @returns VBox status code.
|
---|
226 | * @param pDrvIns Driver instance of the driver which registered the data unit.
|
---|
227 | * @param pSSM SSM operation handle.
|
---|
228 | */
|
---|
229 | typedef DECLCALLBACK(int) FNSSMDRVSAVEDONE(PPDMDRVINS pDrvIns, PSSMHANDLE pSSM);
|
---|
230 | /** Pointer to a FNSSMDRVSAVEDONE() function. */
|
---|
231 | typedef FNSSMDRVSAVEDONE *PFNSSMDRVSAVEDONE;
|
---|
232 |
|
---|
233 | /**
|
---|
234 | * Prepare state load operation.
|
---|
235 | *
|
---|
236 | * @returns VBox status code.
|
---|
237 | * @param pDrvIns Driver instance of the driver which registered the data unit.
|
---|
238 | * @param pSSM SSM operation handle.
|
---|
239 | */
|
---|
240 | typedef DECLCALLBACK(int) FNSSMDRVLOADPREP(PPDMDRVINS pDrvIns, PSSMHANDLE pSSM);
|
---|
241 | /** Pointer to a FNSSMDRVLOADPREP() function. */
|
---|
242 | typedef FNSSMDRVLOADPREP *PFNSSMDRVLOADPREP;
|
---|
243 |
|
---|
244 | /**
|
---|
245 | * Execute state load operation.
|
---|
246 | *
|
---|
247 | * @returns VBox status code.
|
---|
248 | * @param pDrvIns Driver instance of the driver which registered the data unit.
|
---|
249 | * @param pSSM SSM operation handle.
|
---|
250 | * @param u32Version Data layout version.
|
---|
251 | */
|
---|
252 | typedef DECLCALLBACK(int) FNSSMDRVLOADEXEC(PPDMDRVINS pDrvIns, PSSMHANDLE pSSM, uint32_t u32Version);
|
---|
253 | /** Pointer to a FNSSMDRVLOADEXEC() function. */
|
---|
254 | typedef FNSSMDRVLOADEXEC *PFNSSMDRVLOADEXEC;
|
---|
255 |
|
---|
256 | /**
|
---|
257 | * Done state load operation.
|
---|
258 | *
|
---|
259 | * @returns VBox load code.
|
---|
260 | * @param pDrvIns Driver instance of the driver which registered the data unit.
|
---|
261 | * @param pSSM SSM operation handle.
|
---|
262 | */
|
---|
263 | typedef DECLCALLBACK(int) FNSSMDRVLOADDONE(PPDMDRVINS pDrvIns, PSSMHANDLE pSSM);
|
---|
264 | /** Pointer to a FNSSMDRVLOADDONE() function. */
|
---|
265 | typedef FNSSMDRVLOADDONE *PFNSSMDRVLOADDONE;
|
---|
266 |
|
---|
267 | /** @} */
|
---|
268 |
|
---|
269 |
|
---|
270 | /** The internal callback variants.
|
---|
271 | * @{
|
---|
272 | */
|
---|
273 |
|
---|
274 | /**
|
---|
275 | * Prepare state save operation.
|
---|
276 | *
|
---|
277 | * @returns VBox status code.
|
---|
278 | * @param pVM VM Handle.
|
---|
279 | * @param pSSM SSM operation handle.
|
---|
280 | */
|
---|
281 | typedef DECLCALLBACK(int) FNSSMINTSAVEPREP(PVM pVM, PSSMHANDLE pSSM);
|
---|
282 | /** Pointer to a FNSSMINTSAVEPREP() function. */
|
---|
283 | typedef FNSSMINTSAVEPREP *PFNSSMINTSAVEPREP;
|
---|
284 |
|
---|
285 | /**
|
---|
286 | * Execute state save operation.
|
---|
287 | *
|
---|
288 | * @returns VBox status code.
|
---|
289 | * @param pVM VM Handle.
|
---|
290 | * @param pSSM SSM operation handle.
|
---|
291 | */
|
---|
292 | typedef DECLCALLBACK(int) FNSSMINTSAVEEXEC(PVM pVM, PSSMHANDLE pSSM);
|
---|
293 | /** Pointer to a FNSSMINTSAVEEXEC() function. */
|
---|
294 | typedef FNSSMINTSAVEEXEC *PFNSSMINTSAVEEXEC;
|
---|
295 |
|
---|
296 | /**
|
---|
297 | * Done state save operation.
|
---|
298 | *
|
---|
299 | * @returns VBox status code.
|
---|
300 | * @param pVM VM Handle.
|
---|
301 | * @param pSSM SSM operation handle.
|
---|
302 | */
|
---|
303 | typedef DECLCALLBACK(int) FNSSMINTSAVEDONE(PVM pVM, PSSMHANDLE pSSM);
|
---|
304 | /** Pointer to a FNSSMINTSAVEDONE() function. */
|
---|
305 | typedef FNSSMINTSAVEDONE *PFNSSMINTSAVEDONE;
|
---|
306 |
|
---|
307 | /**
|
---|
308 | * Prepare state load operation.
|
---|
309 | *
|
---|
310 | * @returns VBox status code.
|
---|
311 | * @param pVM VM Handle.
|
---|
312 | * @param pSSM SSM operation handle.
|
---|
313 | */
|
---|
314 | typedef DECLCALLBACK(int) FNSSMINTLOADPREP(PVM pVM, PSSMHANDLE pSSM);
|
---|
315 | /** Pointer to a FNSSMINTLOADPREP() function. */
|
---|
316 | typedef FNSSMINTLOADPREP *PFNSSMINTLOADPREP;
|
---|
317 |
|
---|
318 | /**
|
---|
319 | * Execute state load operation.
|
---|
320 | *
|
---|
321 | * @returns VBox status code.
|
---|
322 | * @param pVM VM Handle.
|
---|
323 | * @param pSSM SSM operation handle.
|
---|
324 | * @param u32Version Data layout version.
|
---|
325 | */
|
---|
326 | typedef DECLCALLBACK(int) FNSSMINTLOADEXEC(PVM pVM, PSSMHANDLE pSSM, uint32_t u32Version);
|
---|
327 | /** Pointer to a FNSSMINTLOADEXEC() function. */
|
---|
328 | typedef FNSSMINTLOADEXEC *PFNSSMINTLOADEXEC;
|
---|
329 |
|
---|
330 | /**
|
---|
331 | * Done state load operation.
|
---|
332 | *
|
---|
333 | * @returns VBox load code.
|
---|
334 | * @param pVM VM Handle.
|
---|
335 | * @param pSSM SSM operation handle.
|
---|
336 | */
|
---|
337 | typedef DECLCALLBACK(int) FNSSMINTLOADDONE(PVM pVM, PSSMHANDLE pSSM);
|
---|
338 | /** Pointer to a FNSSMINTLOADDONE() function. */
|
---|
339 | typedef FNSSMINTLOADDONE *PFNSSMINTLOADDONE;
|
---|
340 |
|
---|
341 | /** @} */
|
---|
342 |
|
---|
343 |
|
---|
344 | /** The External callback variants.
|
---|
345 | * @{
|
---|
346 | */
|
---|
347 |
|
---|
348 | /**
|
---|
349 | * Prepare state save operation.
|
---|
350 | *
|
---|
351 | * @returns VBox status code.
|
---|
352 | * @param pSSM SSM operation handle.
|
---|
353 | * @param pvUser User argument.
|
---|
354 | */
|
---|
355 | typedef DECLCALLBACK(int) FNSSMEXTSAVEPREP(PSSMHANDLE pSSM, void *pvUser);
|
---|
356 | /** Pointer to a FNSSMEXTSAVEPREP() function. */
|
---|
357 | typedef FNSSMEXTSAVEPREP *PFNSSMEXTSAVEPREP;
|
---|
358 |
|
---|
359 | /**
|
---|
360 | * Execute state save operation.
|
---|
361 | *
|
---|
362 | * @param pSSM SSM operation handle.
|
---|
363 | * @param pvUser User argument.
|
---|
364 | * @author The lack of return code is for legacy reasons.
|
---|
365 | */
|
---|
366 | typedef DECLCALLBACK(void) FNSSMEXTSAVEEXEC(PSSMHANDLE pSSM, void *pvUser);
|
---|
367 | /** Pointer to a FNSSMEXTSAVEEXEC() function. */
|
---|
368 | typedef FNSSMEXTSAVEEXEC *PFNSSMEXTSAVEEXEC;
|
---|
369 |
|
---|
370 | /**
|
---|
371 | * Done state save operation.
|
---|
372 | *
|
---|
373 | * @returns VBox status code.
|
---|
374 | * @param pSSM SSM operation handle.
|
---|
375 | * @param pvUser User argument.
|
---|
376 | */
|
---|
377 | typedef DECLCALLBACK(int) FNSSMEXTSAVEDONE(PSSMHANDLE pSSM, void *pvUser);
|
---|
378 | /** Pointer to a FNSSMEXTSAVEDONE() function. */
|
---|
379 | typedef FNSSMEXTSAVEDONE *PFNSSMEXTSAVEDONE;
|
---|
380 |
|
---|
381 | /**
|
---|
382 | * Prepare state load operation.
|
---|
383 | *
|
---|
384 | * @returns VBox status code.
|
---|
385 | * @param pSSM SSM operation handle.
|
---|
386 | * @param pvUser User argument.
|
---|
387 | */
|
---|
388 | typedef DECLCALLBACK(int) FNSSMEXTLOADPREP(PSSMHANDLE pSSM, void *pvUser);
|
---|
389 | /** Pointer to a FNSSMEXTLOADPREP() function. */
|
---|
390 | typedef FNSSMEXTLOADPREP *PFNSSMEXTLOADPREP;
|
---|
391 |
|
---|
392 | /**
|
---|
393 | * Execute state load operation.
|
---|
394 | *
|
---|
395 | * @returns 0 on success.
|
---|
396 | * @returns Not 0 on failure.
|
---|
397 | * @param pSSM SSM operation handle.
|
---|
398 | * @param pvUser User argument.
|
---|
399 | * @param u32Version Data layout version.
|
---|
400 | * @remark The odd return value is for legacy reasons.
|
---|
401 | */
|
---|
402 | typedef DECLCALLBACK(int) FNSSMEXTLOADEXEC(PSSMHANDLE pSSM, void *pvUser, uint32_t u32Version);
|
---|
403 | /** Pointer to a FNSSMEXTLOADEXEC() function. */
|
---|
404 | typedef FNSSMEXTLOADEXEC *PFNSSMEXTLOADEXEC;
|
---|
405 |
|
---|
406 | /**
|
---|
407 | * Done state load operation.
|
---|
408 | *
|
---|
409 | * @returns VBox load code.
|
---|
410 | * @param pSSM SSM operation handle.
|
---|
411 | * @param pvUser User argument.
|
---|
412 | */
|
---|
413 | typedef DECLCALLBACK(int) FNSSMEXTLOADDONE(PSSMHANDLE pSSM, void *pvUser);
|
---|
414 | /** Pointer to a FNSSMEXTLOADDONE() function. */
|
---|
415 | typedef FNSSMEXTLOADDONE *PFNSSMEXTLOADDONE;
|
---|
416 |
|
---|
417 | /** @} */
|
---|
418 |
|
---|
419 |
|
---|
420 | VMMR3DECL(int) SSMR3RegisterDevice(PVM pVM, PPDMDEVINS pDevIns, const char *pszName, uint32_t u32Instance, uint32_t u32Version, size_t cbGuess,
|
---|
421 | PFNSSMDEVSAVEPREP pfnSavePrep, PFNSSMDEVSAVEEXEC pfnSaveExec, PFNSSMDEVSAVEDONE pfnSaveDone,
|
---|
422 | PFNSSMDEVLOADPREP pfnLoadPrep, PFNSSMDEVLOADEXEC pfnLoadExec, PFNSSMDEVLOADDONE pfnLoadDone);
|
---|
423 | VMMR3DECL(int) SSMR3RegisterDriver(PVM pVM, PPDMDRVINS pDrvIns, const char *pszName, uint32_t u32Instance, uint32_t u32Version, size_t cbGuess,
|
---|
424 | PFNSSMDRVSAVEPREP pfnSavePrep, PFNSSMDRVSAVEEXEC pfnSaveExec, PFNSSMDRVSAVEDONE pfnSaveDone,
|
---|
425 | PFNSSMDRVLOADPREP pfnLoadPrep, PFNSSMDRVLOADEXEC pfnLoadExec, PFNSSMDRVLOADDONE pfnLoadDone);
|
---|
426 | VMMR3DECL(int) SSMR3RegisterInternal(PVM pVM, const char *pszName, uint32_t u32Instance, uint32_t u32Version, size_t cbGuess,
|
---|
427 | PFNSSMINTSAVEPREP pfnSavePrep, PFNSSMINTSAVEEXEC pfnSaveExec, PFNSSMINTSAVEDONE pfnSaveDone,
|
---|
428 | PFNSSMINTLOADPREP pfnLoadPrep, PFNSSMINTLOADEXEC pfnLoadExec, PFNSSMINTLOADDONE pfnLoadDone);
|
---|
429 | VMMR3DECL(int) SSMR3RegisterExternal(PVM pVM, const char *pszName, uint32_t u32Instance, uint32_t u32Version, size_t cbGuess,
|
---|
430 | PFNSSMEXTSAVEPREP pfnSavePrep, PFNSSMEXTSAVEEXEC pfnSaveExec, PFNSSMEXTSAVEDONE pfnSaveDone,
|
---|
431 | PFNSSMEXTLOADPREP pfnLoadPrep, PFNSSMEXTLOADEXEC pfnLoadExec, PFNSSMEXTLOADDONE pfnLoadDone, void *pvUser);
|
---|
432 | VMMR3DECL(int) SSMR3DeregisterDevice(PVM pVM, PPDMDEVINS pDevIns, const char *pszName, uint32_t u32Instance);
|
---|
433 | VMMR3DECL(int) SSMR3DeregisterDriver(PVM pVM, PPDMDRVINS pDrvIns, const char *pszName, uint32_t u32Instance);
|
---|
434 | VMMR3DECL(int) SSMR3DeregisterInternal(PVM pVM, const char *pszName);
|
---|
435 | VMMR3DECL(int) SSMR3DeregisterExternal(PVM pVM, const char *pszName);
|
---|
436 | VMMR3DECL(int) SSMR3Save(PVM pVM, const char *pszFilename, SSMAFTER enmAfter, PFNVMPROGRESS pfnProgress, void *pvUser);
|
---|
437 | VMMR3DECL(int) SSMR3Load(PVM pVM, const char *pszFilename, SSMAFTER enmAfter, PFNVMPROGRESS pfnProgress, void *pvUser);
|
---|
438 | VMMR3DECL(int) SSMR3ValidateFile(const char *pszFilename);
|
---|
439 | VMMR3DECL(int) SSMR3Open(const char *pszFilename, unsigned fFlags, PSSMHANDLE *ppSSM);
|
---|
440 | VMMR3DECL(int) SSMR3Close(PSSMHANDLE pSSM);
|
---|
441 | VMMR3DECL(int) SSMR3Seek(PSSMHANDLE pSSM, const char *pszUnit, uint32_t iInstance, uint32_t *piVersion);
|
---|
442 | VMMR3DECL(int) SSMR3HandleGetStatus(PSSMHANDLE pSSM);
|
---|
443 | VMMR3DECL(int) SSMR3HandleSetStatus(PSSMHANDLE pSSM, int iStatus);
|
---|
444 | VMMR3DECL(SSMAFTER) SSMR3HandleGetAfter(PSSMHANDLE pSSM);
|
---|
445 | VMMR3DECL(uint64_t) SSMR3HandleGetUnitOffset(PSSMHANDLE pSSM);
|
---|
446 | VMMR3DECL(int) SSMR3SetGCPtrSize(PSSMHANDLE pSSM, unsigned cbGCPtr);
|
---|
447 |
|
---|
448 |
|
---|
449 | /** Save operations.
|
---|
450 | * @{
|
---|
451 | */
|
---|
452 | VMMR3DECL(int) SSMR3PutStruct(PSSMHANDLE pSSM, const void *pvStruct, PCSSMFIELD paFields);
|
---|
453 | VMMR3DECL(int) SSMR3PutBool(PSSMHANDLE pSSM, bool fBool);
|
---|
454 | VMMR3DECL(int) SSMR3PutU8(PSSMHANDLE pSSM, uint8_t u8);
|
---|
455 | VMMR3DECL(int) SSMR3PutS8(PSSMHANDLE pSSM, int8_t i8);
|
---|
456 | VMMR3DECL(int) SSMR3PutU16(PSSMHANDLE pSSM, uint16_t u16);
|
---|
457 | VMMR3DECL(int) SSMR3PutS16(PSSMHANDLE pSSM, int16_t i16);
|
---|
458 | VMMR3DECL(int) SSMR3PutU32(PSSMHANDLE pSSM, uint32_t u32);
|
---|
459 | VMMR3DECL(int) SSMR3PutS32(PSSMHANDLE pSSM, int32_t i32);
|
---|
460 | VMMR3DECL(int) SSMR3PutU64(PSSMHANDLE pSSM, uint64_t u64);
|
---|
461 | VMMR3DECL(int) SSMR3PutS64(PSSMHANDLE pSSM, int64_t i64);
|
---|
462 | VMMR3DECL(int) SSMR3PutU128(PSSMHANDLE pSSM, uint128_t u128);
|
---|
463 | VMMR3DECL(int) SSMR3PutS128(PSSMHANDLE pSSM, int128_t i128);
|
---|
464 | VMMR3DECL(int) SSMR3PutUInt(PSSMHANDLE pSSM, RTUINT u);
|
---|
465 | VMMR3DECL(int) SSMR3PutSInt(PSSMHANDLE pSSM, RTINT i);
|
---|
466 | VMMR3DECL(int) SSMR3PutGCUInt(PSSMHANDLE pSSM, RTGCUINT u);
|
---|
467 | VMMR3DECL(int) SSMR3PutGCUIntReg(PSSMHANDLE pSSM, RTGCUINTREG u);
|
---|
468 | VMMR3DECL(int) SSMR3PutGCPhys32(PSSMHANDLE pSSM, RTGCPHYS32 GCPhys);
|
---|
469 | VMMR3DECL(int) SSMR3PutGCPhys64(PSSMHANDLE pSSM, RTGCPHYS64 GCPhys);
|
---|
470 | VMMR3DECL(int) SSMR3PutGCPhys(PSSMHANDLE pSSM, RTGCPHYS GCPhys);
|
---|
471 | VMMR3DECL(int) SSMR3PutGCPtr(PSSMHANDLE pSSM, RTGCPTR GCPtr);
|
---|
472 | VMMR3DECL(int) SSMR3PutGCUIntPtr(PSSMHANDLE pSSM, RTGCUINTPTR GCPtr);
|
---|
473 | VMMR3DECL(int) SSMR3PutRCPtr(PSSMHANDLE pSSM, RTRCPTR RCPtr);
|
---|
474 | VMMR3DECL(int) SSMR3PutIOPort(PSSMHANDLE pSSM, RTIOPORT IOPort);
|
---|
475 | VMMR3DECL(int) SSMR3PutSel(PSSMHANDLE pSSM, RTSEL Sel);
|
---|
476 | VMMR3DECL(int) SSMR3PutMem(PSSMHANDLE pSSM, const void *pv, size_t cb);
|
---|
477 | VMMR3DECL(int) SSMR3PutStrZ(PSSMHANDLE pSSM, const char *psz);
|
---|
478 | /** @} */
|
---|
479 |
|
---|
480 |
|
---|
481 |
|
---|
482 | /** Load operations.
|
---|
483 | * @{
|
---|
484 | */
|
---|
485 | VMMR3DECL(int) SSMR3GetStruct(PSSMHANDLE pSSM, void *pvStruct, PCSSMFIELD paFields);
|
---|
486 | VMMR3DECL(int) SSMR3GetBool(PSSMHANDLE pSSM, bool *pfBool);
|
---|
487 | VMMR3DECL(int) SSMR3GetU8(PSSMHANDLE pSSM, uint8_t *pu8);
|
---|
488 | VMMR3DECL(int) SSMR3GetS8(PSSMHANDLE pSSM, int8_t *pi8);
|
---|
489 | VMMR3DECL(int) SSMR3GetU16(PSSMHANDLE pSSM, uint16_t *pu16);
|
---|
490 | VMMR3DECL(int) SSMR3GetS16(PSSMHANDLE pSSM, int16_t *pi16);
|
---|
491 | VMMR3DECL(int) SSMR3GetU32(PSSMHANDLE pSSM, uint32_t *pu32);
|
---|
492 | VMMR3DECL(int) SSMR3GetS32(PSSMHANDLE pSSM, int32_t *pi32);
|
---|
493 | VMMR3DECL(int) SSMR3GetU64(PSSMHANDLE pSSM, uint64_t *pu64);
|
---|
494 | VMMR3DECL(int) SSMR3GetS64(PSSMHANDLE pSSM, int64_t *pi64);
|
---|
495 | VMMR3DECL(int) SSMR3GetU128(PSSMHANDLE pSSM, uint128_t *pu128);
|
---|
496 | VMMR3DECL(int) SSMR3GetS128(PSSMHANDLE pSSM, int128_t *pi128);
|
---|
497 | VMMR3DECL(int) SSMR3GetUInt(PSSMHANDLE pSSM, PRTUINT pu);
|
---|
498 | VMMR3DECL(int) SSMR3GetSInt(PSSMHANDLE pSSM, PRTINT pi);
|
---|
499 | VMMR3DECL(int) SSMR3GetGCUInt(PSSMHANDLE pSSM, PRTGCUINT pu);
|
---|
500 | VMMR3DECL(int) SSMR3GetGCUIntReg(PSSMHANDLE pSSM, PRTGCUINTREG pu);
|
---|
501 | VMMR3DECL(int) SSMR3GetGCPhys32(PSSMHANDLE pSSM, PRTGCPHYS32 pGCPhys);
|
---|
502 | VMMR3DECL(int) SSMR3GetGCPhys64(PSSMHANDLE pSSM, PRTGCPHYS64 pGCPhys);
|
---|
503 | VMMR3DECL(int) SSMR3GetGCPhys(PSSMHANDLE pSSM, PRTGCPHYS pGCPhys);
|
---|
504 | VMMR3DECL(int) SSMR3GetGCPtr(PSSMHANDLE pSSM, PRTGCPTR pGCPtr);
|
---|
505 | VMMR3DECL(int) SSMR3GetGCUIntPtr(PSSMHANDLE pSSM, PRTGCUINTPTR pGCPtr);
|
---|
506 | VMMR3DECL(int) SSMR3GetRCPtr(PSSMHANDLE pSSM, PRTRCPTR pRCPtr);
|
---|
507 | VMMR3DECL(int) SSMR3GetIOPort(PSSMHANDLE pSSM, PRTIOPORT pIOPort);
|
---|
508 | VMMR3DECL(int) SSMR3GetSel(PSSMHANDLE pSSM, PRTSEL pSel);
|
---|
509 | VMMR3DECL(int) SSMR3GetMem(PSSMHANDLE pSSM, void *pv, size_t cb);
|
---|
510 | VMMR3DECL(int) SSMR3GetStrZ(PSSMHANDLE pSSM, char *psz, size_t cbMax);
|
---|
511 | VMMR3DECL(int) SSMR3GetStrZEx(PSSMHANDLE pSSM, char *psz, size_t cbMax, size_t *pcbStr);
|
---|
512 | VMMR3DECL(int) SSMR3GetTimer(PSSMHANDLE pSSM, PTMTIMER pTimer);
|
---|
513 |
|
---|
514 | /** @} */
|
---|
515 |
|
---|
516 | /** @} */
|
---|
517 | #endif /* IN_RING3 */
|
---|
518 |
|
---|
519 |
|
---|
520 | /** @} */
|
---|
521 |
|
---|
522 | __END_DECLS
|
---|
523 |
|
---|
524 | #endif
|
---|
525 |
|
---|