VirtualBox

source: vbox/trunk/src/VBox/VMM/VMEmt.cpp@ 13796

Last change on this file since 13796 was 13796, checked in by vboxsync, 16 years ago

VMM: some adjustments.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 37.8 KB
Line 
1/* $Id: VMEmt.cpp 13796 2008-11-04 18:37:33Z vboxsync $ */
2/** @file
3 * VM - Virtual Machine, The Emulation Thread.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22
23/*******************************************************************************
24* Header Files *
25*******************************************************************************/
26#define LOG_GROUP LOG_GROUP_VM
27#include <VBox/tm.h>
28#include <VBox/dbgf.h>
29#include <VBox/em.h>
30#include <VBox/pdmapi.h>
31#include <VBox/rem.h>
32#include <VBox/tm.h>
33#include "VMInternal.h"
34#include <VBox/vm.h>
35#include <VBox/uvm.h>
36
37#include <VBox/err.h>
38#include <VBox/log.h>
39#include <iprt/assert.h>
40#include <iprt/asm.h>
41#include <iprt/semaphore.h>
42#include <iprt/string.h>
43#include <iprt/thread.h>
44#include <iprt/time.h>
45
46
47/**
48 * The emulation thread.
49 *
50 * @returns Thread exit code.
51 * @param ThreadSelf The handle to the executing thread.
52 * @param pvArgs Pointer to the user mode VM structure (UVM).
53 */
54DECLCALLBACK(int) vmR3EmulationThread(RTTHREAD ThreadSelf, void *pvArgs)
55{
56 PUVMCPU pUVMCPU = (PUVMCPU)pvArgs;
57 PUVM pUVM = pUVMCPU->pUVM;
58 RTCPUID idCPU = pUVMCPU->idCPU;
59 int rc;
60
61 AssertReleaseMsg(VALID_PTR(pUVM) && pUVM->u32Magic == UVM_MAGIC,
62 ("Invalid arguments to the emulation thread!\n"));
63
64 rc = RTTlsSet(pUVM->vm.s.idxTLS, pUVMCPU);
65 AssertReleaseMsgRCReturn(rc, ("RTTlsSet %x failed with %Rrc\n", pUVM->vm.s.idxTLS, rc), rc);
66
67 /*
68 * The request loop.
69 */
70 rc = VINF_SUCCESS;
71 volatile VMSTATE enmBefore = VMSTATE_CREATING; /* volatile because of setjmp */
72 Log(("vmR3EmulationThread: Emulation thread starting the days work... Thread=%#x pUVM=%p\n", ThreadSelf, pUVM));
73 for (;;)
74 {
75 /* Requested to exit the EMT thread out of sync? (currently only VMR3WaitForResume) */
76 if (setjmp(pUVMCPU->vm.s.emtJumpEnv) != 0)
77 {
78 rc = VINF_SUCCESS;
79 break;
80 }
81
82 /*
83 * During early init there is no pVM, so make a special path
84 * for that to keep things clearly separate.
85 */
86 if (!pUVM->pVM)
87 {
88 /*
89 * Check for termination first.
90 */
91 if (pUVM->vm.s.fTerminateEMT)
92 {
93 rc = VINF_EM_TERMINATE;
94 break;
95 }
96 if (pUVM->vm.s.pReqs)
97 {
98 /*
99 * Service execute in EMT request.
100 */
101 rc = VMR3ReqProcessU(pUVM, VMREQDEST_ANY);
102 Log(("vmR3EmulationThread: Req rc=%Vrc, VM state %d -> %d\n", rc, enmBefore, pUVM->pVM ? pUVM->pVM->enmVMState : VMSTATE_CREATING));
103 }
104 else
105 {
106 /*
107 * Nothing important is pending, so wait for something.
108 */
109 rc = VMR3WaitU(pUVM);
110 if (VBOX_FAILURE(rc))
111 break;
112 }
113 }
114 else
115 {
116
117 /*
118 * Pending requests which needs servicing?
119 *
120 * We check for state changes in addition to status codes when
121 * servicing requests. (Look after the ifs.)
122 */
123 PVM pVM = pUVM->pVM;
124 enmBefore = pVM->enmVMState;
125 if ( VM_FF_ISSET(pVM, VM_FF_TERMINATE)
126 || pUVM->vm.s.fTerminateEMT)
127 {
128 rc = VINF_EM_TERMINATE;
129 break;
130 }
131 if (pUVM->vm.s.pReqs)
132 {
133 /*
134 * Service execute in EMT request.
135 */
136 rc = VMR3ReqProcessU(pUVM, VMREQDEST_ANY);
137 Log(("vmR3EmulationThread: Req rc=%Vrc, VM state %d -> %d\n", rc, enmBefore, pVM->enmVMState));
138 }
139 else if (VM_FF_ISSET(pVM, VM_FF_DBGF))
140 {
141 /*
142 * Service the debugger request.
143 */
144 rc = DBGFR3VMMForcedAction(pVM);
145 Log(("vmR3EmulationThread: Dbg rc=%Vrc, VM state %d -> %d\n", rc, enmBefore, pVM->enmVMState));
146 }
147 else if (VM_FF_ISSET(pVM, VM_FF_RESET))
148 {
149 /*
150 * Service a delayed reset request.
151 */
152 rc = VMR3Reset(pVM);
153 VM_FF_CLEAR(pVM, VM_FF_RESET);
154 Log(("vmR3EmulationThread: Reset rc=%Vrc, VM state %d -> %d\n", rc, enmBefore, pVM->enmVMState));
155 }
156 else
157 {
158 /*
159 * Nothing important is pending, so wait for something.
160 */
161 rc = VMR3WaitU(pUVM);
162 if (VBOX_FAILURE(rc))
163 break;
164 }
165
166 /*
167 * Check for termination requests, these have extremely high priority.
168 */
169 if ( rc == VINF_EM_TERMINATE
170 || VM_FF_ISSET(pVM, VM_FF_TERMINATE)
171 || pUVM->vm.s.fTerminateEMT)
172 break;
173 }
174
175 /*
176 * Some requests (both VMR3Req* and the DBGF) can potentially
177 * resume or start the VM, in that case we'll get a change in
178 * VM status indicating that we're now running.
179 */
180 if ( VBOX_SUCCESS(rc)
181 && pUVM->pVM
182 && enmBefore != pUVM->pVM->enmVMState
183 && pUVM->pVM->enmVMState == VMSTATE_RUNNING)
184 {
185 PVM pVM = pUVM->pVM;
186 rc = EMR3ExecuteVM(pVM);
187 Log(("vmR3EmulationThread: EMR3ExecuteVM() -> rc=%Vrc, enmVMState=%d\n", rc, pVM->enmVMState));
188 if ( EMGetState(pVM) == EMSTATE_GURU_MEDITATION
189 && pVM->enmVMState == VMSTATE_RUNNING)
190 vmR3SetState(pVM, VMSTATE_GURU_MEDITATION);
191 }
192
193 } /* forever */
194
195
196 /*
197 * Exiting.
198 */
199 Log(("vmR3EmulationThread: Terminating emulation thread! Thread=%#x pUVM=%p rc=%Vrc enmBefore=%d enmVMState=%d\n",
200 ThreadSelf, pUVM, rc, enmBefore, pUVM->pVM ? pUVM->pVM->enmVMState : VMSTATE_TERMINATED));
201 if (pUVM->vm.s.fEMTDoesTheCleanup)
202 {
203 Log(("vmR3EmulationThread: executing delayed Destroy\n"));
204 Assert(pUVM->pVM);
205 vmR3Destroy(pUVM->pVM);
206 vmR3DestroyFinalBitFromEMT(pUVM);
207 }
208 else
209 {
210 vmR3DestroyFinalBitFromEMT(pUVM);
211
212 pUVMCPU->vm.s.NativeThreadEMT = NIL_RTNATIVETHREAD;
213 }
214 Log(("vmR3EmulationThread: EMT is terminated.\n"));
215 return rc;
216}
217
218
219/**
220 * Wait for VM to be resumed. Handle events like vmR3EmulationThread does.
221 * In case the VM is stopped, clean up and long jump to the main EMT loop.
222 *
223 * @returns VINF_SUCCESS or doesn't return
224 * @param pVM VM handle.
225 */
226VMMR3DECL(int) VMR3WaitForResume(PVM pVM)
227{
228 /*
229 * The request loop.
230 */
231 PUVMCPU pUVMCPU;
232 PUVM pUVM = pVM->pUVM;
233 VMSTATE enmBefore;
234 int rc;
235
236 pUVMCPU = (PUVMCPU)RTTlsGet(pUVM->vm.s.idxTLS);
237 AssertReturn(pUVMCPU, VERR_INTERNAL_ERROR);
238
239 for (;;)
240 {
241
242 /*
243 * Pending requests which needs servicing?
244 *
245 * We check for state changes in addition to status codes when
246 * servicing requests. (Look after the ifs.)
247 */
248 enmBefore = pVM->enmVMState;
249 if ( VM_FF_ISSET(pVM, VM_FF_TERMINATE)
250 || pUVM->vm.s.fTerminateEMT)
251 {
252 rc = VINF_EM_TERMINATE;
253 break;
254 }
255 else if (pUVM->vm.s.pReqs)
256 {
257 /*
258 * Service execute in EMT request.
259 */
260 rc = VMR3ReqProcessU(pUVM, VMREQDEST_ANY);
261 Log(("vmR3EmulationThread: Req rc=%Vrc, VM state %d -> %d\n", rc, enmBefore, pVM->enmVMState));
262 }
263 else if (VM_FF_ISSET(pVM, VM_FF_DBGF))
264 {
265 /*
266 * Service the debugger request.
267 */
268 rc = DBGFR3VMMForcedAction(pVM);
269 Log(("vmR3EmulationThread: Dbg rc=%Vrc, VM state %d -> %d\n", rc, enmBefore, pVM->enmVMState));
270 }
271 else if (VM_FF_ISSET(pVM, VM_FF_RESET))
272 {
273 /*
274 * Service a delay reset request.
275 */
276 rc = VMR3Reset(pVM);
277 VM_FF_CLEAR(pVM, VM_FF_RESET);
278 Log(("vmR3EmulationThread: Reset rc=%Vrc, VM state %d -> %d\n", rc, enmBefore, pVM->enmVMState));
279 }
280 else
281 {
282 /*
283 * Nothing important is pending, so wait for something.
284 */
285 rc = VMR3WaitU(pUVM);
286 if (VBOX_FAILURE(rc))
287 break;
288 }
289
290 /*
291 * Check for termination requests, these are extremely high priority.
292 */
293 if ( rc == VINF_EM_TERMINATE
294 || VM_FF_ISSET(pVM, VM_FF_TERMINATE)
295 || pUVM->vm.s.fTerminateEMT)
296 break;
297
298 /*
299 * Some requests (both VMR3Req* and the DBGF) can potentially
300 * resume or start the VM, in that case we'll get a change in
301 * VM status indicating that we're now running.
302 */
303 if ( VBOX_SUCCESS(rc)
304 && enmBefore != pVM->enmVMState
305 && pVM->enmVMState == VMSTATE_RUNNING)
306 {
307 /* Only valid exit reason. */
308 return VINF_SUCCESS;
309 }
310
311 } /* forever */
312
313 /* Return to the main loop in vmR3EmulationThread, which will clean up for us. */
314 longjmp(pUVMCPU->vm.s.emtJumpEnv, 1);
315}
316
317
318/**
319 * Gets the name of a halt method.
320 *
321 * @returns Pointer to a read only string.
322 * @param enmMethod The method.
323 */
324static const char *vmR3GetHaltMethodName(VMHALTMETHOD enmMethod)
325{
326 switch (enmMethod)
327 {
328 case VMHALTMETHOD_BOOTSTRAP: return "bootstrap";
329 case VMHALTMETHOD_DEFAULT: return "default";
330 case VMHALTMETHOD_OLD: return "old";
331 case VMHALTMETHOD_1: return "method1";
332 //case VMHALTMETHOD_2: return "method2";
333 case VMHALTMETHOD_GLOBAL_1: return "global1";
334 default: return "unknown";
335 }
336}
337
338
339/**
340 * The old halt loop.
341 *
342 * @param pUVM Pointer to the user mode VM structure.
343 */
344static DECLCALLBACK(int) vmR3HaltOldDoHalt(PUVM pUVM, const uint32_t fMask, uint64_t /* u64Now*/)
345{
346 /*
347 * Halt loop.
348 */
349 PVM pVM = pUVM->pVM;
350 int rc = VINF_SUCCESS;
351 ASMAtomicWriteBool(&pUVM->vm.s.fWait, true);
352 //unsigned cLoops = 0;
353 for (;;)
354 {
355 /*
356 * Work the timers and check if we can exit.
357 * The poll call gives us the ticks left to the next event in
358 * addition to perhaps set an FF.
359 */
360 STAM_REL_PROFILE_START(&pUVM->vm.s.StatHaltPoll, a);
361 PDMR3Poll(pVM);
362 STAM_REL_PROFILE_STOP(&pUVM->vm.s.StatHaltPoll, a);
363 STAM_REL_PROFILE_START(&pUVM->vm.s.StatHaltTimers, b);
364 TMR3TimerQueuesDo(pVM);
365 STAM_REL_PROFILE_STOP(&pUVM->vm.s.StatHaltTimers, b);
366 if (VM_FF_ISPENDING(pVM, fMask))
367 break;
368 uint64_t u64NanoTS = TMVirtualToNano(pVM, TMTimerPoll(pVM));
369 if (VM_FF_ISPENDING(pVM, fMask))
370 break;
371
372 /*
373 * Wait for a while. Someone will wake us up or interrupt the call if
374 * anything needs our attention.
375 */
376 if (u64NanoTS < 50000)
377 {
378 //RTLogPrintf("u64NanoTS=%RI64 cLoops=%d spin\n", u64NanoTS, cLoops++);
379 /* spin */;
380 }
381 else
382 {
383 VMMR3YieldStop(pVM);
384 //uint64_t u64Start = RTTimeNanoTS();
385 if (u64NanoTS < 870000) /* this is a bit speculative... works fine on linux. */
386 {
387 //RTLogPrintf("u64NanoTS=%RI64 cLoops=%d yield", u64NanoTS, cLoops++);
388 STAM_REL_PROFILE_START(&pUVM->vm.s.StatHaltYield, a);
389 RTThreadYield(); /* this is the best we can do here */
390 STAM_REL_PROFILE_STOP(&pUVM->vm.s.StatHaltYield, a);
391 }
392 else if (u64NanoTS < 2000000)
393 {
394 //RTLogPrintf("u64NanoTS=%RI64 cLoops=%d sleep 1ms", u64NanoTS, cLoops++);
395 STAM_REL_PROFILE_START(&pUVM->vm.s.StatHaltBlock, a);
396 rc = RTSemEventWait(pUVM->vm.s.EventSemWait, 1);
397 STAM_REL_PROFILE_STOP(&pUVM->vm.s.StatHaltBlock, a);
398 }
399 else
400 {
401 //RTLogPrintf("u64NanoTS=%RI64 cLoops=%d sleep %dms", u64NanoTS, cLoops++, (uint32_t)RT_MIN((u64NanoTS - 500000) / 1000000, 15));
402 STAM_REL_PROFILE_START(&pUVM->vm.s.StatHaltBlock, a);
403 rc = RTSemEventWait(pUVM->vm.s.EventSemWait, RT_MIN((u64NanoTS - 1000000) / 1000000, 15));
404 STAM_REL_PROFILE_STOP(&pUVM->vm.s.StatHaltBlock, a);
405 }
406 //uint64_t u64Slept = RTTimeNanoTS() - u64Start;
407 //RTLogPrintf(" -> rc=%Vrc in %RU64 ns / %RI64 ns delta\n", rc, u64Slept, u64NanoTS - u64Slept);
408 }
409 if (rc == VERR_TIMEOUT)
410 rc = VINF_SUCCESS;
411 else if (VBOX_FAILURE(rc))
412 {
413 AssertRC(rc != VERR_INTERRUPTED);
414 AssertMsgFailed(("RTSemEventWait->%Vrc\n", rc));
415 ASMAtomicUoWriteBool(&pUVM->vm.s.fTerminateEMT, true);
416 VM_FF_SET(pVM, VM_FF_TERMINATE);
417 rc = VERR_INTERNAL_ERROR;
418 break;
419 }
420 }
421
422 ASMAtomicUoWriteBool(&pUVM->vm.s.fWait, false);
423 return rc;
424}
425
426
427/**
428 * Initialize the configuration of halt method 1 & 2.
429 *
430 * @return VBox status code. Failure on invalid CFGM data.
431 * @param pVM The VM handle.
432 */
433static int vmR3HaltMethod12ReadConfigU(PUVM pUVM)
434{
435 /*
436 * The defaults.
437 */
438#if 1 /* DEBUGGING STUFF - REMOVE LATER */
439 pUVM->vm.s.Halt.Method12.u32LagBlockIntervalDivisorCfg = 4;
440 pUVM->vm.s.Halt.Method12.u32MinBlockIntervalCfg = 2*1000000;
441 pUVM->vm.s.Halt.Method12.u32MaxBlockIntervalCfg = 75*1000000;
442 pUVM->vm.s.Halt.Method12.u32StartSpinningCfg = 30*1000000;
443 pUVM->vm.s.Halt.Method12.u32StopSpinningCfg = 20*1000000;
444#else
445 pUVM->vm.s.Halt.Method12.u32LagBlockIntervalDivisorCfg = 4;
446 pUVM->vm.s.Halt.Method12.u32MinBlockIntervalCfg = 5*1000000;
447 pUVM->vm.s.Halt.Method12.u32MaxBlockIntervalCfg = 200*1000000;
448 pUVM->vm.s.Halt.Method12.u32StartSpinningCfg = 20*1000000;
449 pUVM->vm.s.Halt.Method12.u32StopSpinningCfg = 2*1000000;
450#endif
451
452 /*
453 * Query overrides.
454 *
455 * I don't have time to bother with niceities such as invalid value checks
456 * here right now. sorry.
457 */
458 PCFGMNODE pCfg = CFGMR3GetChild(CFGMR3GetRoot(pUVM->pVM), "/VMM/HaltedMethod1");
459 if (pCfg)
460 {
461 uint32_t u32;
462 if (RT_SUCCESS(CFGMR3QueryU32(pCfg, "LagBlockIntervalDivisor", &u32)))
463 pUVM->vm.s.Halt.Method12.u32LagBlockIntervalDivisorCfg = u32;
464 if (RT_SUCCESS(CFGMR3QueryU32(pCfg, "MinBlockInterval", &u32)))
465 pUVM->vm.s.Halt.Method12.u32MinBlockIntervalCfg = u32;
466 if (RT_SUCCESS(CFGMR3QueryU32(pCfg, "MaxBlockInterval", &u32)))
467 pUVM->vm.s.Halt.Method12.u32MaxBlockIntervalCfg = u32;
468 if (RT_SUCCESS(CFGMR3QueryU32(pCfg, "StartSpinning", &u32)))
469 pUVM->vm.s.Halt.Method12.u32StartSpinningCfg = u32;
470 if (RT_SUCCESS(CFGMR3QueryU32(pCfg, "StopSpinning", &u32)))
471 pUVM->vm.s.Halt.Method12.u32StopSpinningCfg = u32;
472 LogRel(("HaltedMethod1 config: %d/%d/%d/%d/%d\n",
473 pUVM->vm.s.Halt.Method12.u32LagBlockIntervalDivisorCfg,
474 pUVM->vm.s.Halt.Method12.u32MinBlockIntervalCfg,
475 pUVM->vm.s.Halt.Method12.u32MaxBlockIntervalCfg,
476 pUVM->vm.s.Halt.Method12.u32StartSpinningCfg,
477 pUVM->vm.s.Halt.Method12.u32StopSpinningCfg));
478 }
479
480 return VINF_SUCCESS;
481}
482
483
484/**
485 * Initialize halt method 1.
486 *
487 * @return VBox status code.
488 * @param pUVM Pointer to the user mode VM structure.
489 */
490static DECLCALLBACK(int) vmR3HaltMethod1Init(PUVM pUVM)
491{
492 return vmR3HaltMethod12ReadConfigU(pUVM);
493}
494
495
496/**
497 * Method 1 - Block whenever possible, and when lagging behind
498 * switch to spinning for 10-30ms with occational blocking until
499 * the lag has been eliminated.
500 */
501static DECLCALLBACK(int) vmR3HaltMethod1Halt(PUVM pUVM, const uint32_t fMask, uint64_t u64Now)
502{
503 PVM pVM = pUVM->pVM;
504
505 /*
506 * To simplify things, we decide up-front whether we should switch to spinning or
507 * not. This makes some ASSUMPTIONS about the cause of the spinning (PIT/RTC/PCNet)
508 * and that it will generate interrupts or other events that will cause us to exit
509 * the halt loop.
510 */
511 bool fBlockOnce = false;
512 bool fSpinning = false;
513 uint32_t u32CatchUpPct = TMVirtualSyncGetCatchUpPct(pVM);
514 if (u32CatchUpPct /* non-zero if catching up */)
515 {
516 if (pUVM->vm.s.Halt.Method12.u64StartSpinTS)
517 {
518 fSpinning = TMVirtualSyncGetLag(pVM) >= pUVM->vm.s.Halt.Method12.u32StopSpinningCfg;
519 if (fSpinning)
520 {
521 uint64_t u64Lag = TMVirtualSyncGetLag(pVM);
522 fBlockOnce = u64Now - pUVM->vm.s.Halt.Method12.u64LastBlockTS
523 > RT_MAX(pUVM->vm.s.Halt.Method12.u32MinBlockIntervalCfg,
524 RT_MIN(u64Lag / pUVM->vm.s.Halt.Method12.u32LagBlockIntervalDivisorCfg,
525 pUVM->vm.s.Halt.Method12.u32MaxBlockIntervalCfg));
526 }
527 else
528 {
529 //RTLogRelPrintf("Stopped spinning (%u ms)\n", (u64Now - pUVM->vm.s.Halt.Method12.u64StartSpinTS) / 1000000);
530 pUVM->vm.s.Halt.Method12.u64StartSpinTS = 0;
531 }
532 }
533 else
534 {
535 fSpinning = TMVirtualSyncGetLag(pVM) >= pUVM->vm.s.Halt.Method12.u32StartSpinningCfg;
536 if (fSpinning)
537 pUVM->vm.s.Halt.Method12.u64StartSpinTS = u64Now;
538 }
539 }
540 else if (pUVM->vm.s.Halt.Method12.u64StartSpinTS)
541 {
542 //RTLogRelPrintf("Stopped spinning (%u ms)\n", (u64Now - pUVM->vm.s.Halt.Method12.u64StartSpinTS) / 1000000);
543 pUVM->vm.s.Halt.Method12.u64StartSpinTS = 0;
544 }
545
546 /*
547 * Halt loop.
548 */
549 int rc = VINF_SUCCESS;
550 ASMAtomicWriteBool(&pUVM->vm.s.fWait, true);
551 unsigned cLoops = 0;
552 for (;; cLoops++)
553 {
554 /*
555 * Work the timers and check if we can exit.
556 */
557 STAM_REL_PROFILE_START(&pUVM->vm.s.StatHaltPoll, a);
558 PDMR3Poll(pVM);
559 STAM_REL_PROFILE_STOP(&pUVM->vm.s.StatHaltPoll, a);
560 STAM_REL_PROFILE_START(&pUVM->vm.s.StatHaltTimers, b);
561 TMR3TimerQueuesDo(pVM);
562 STAM_REL_PROFILE_STOP(&pUVM->vm.s.StatHaltTimers, b);
563 if (VM_FF_ISPENDING(pVM, fMask))
564 break;
565
566 /*
567 * Estimate time left to the next event.
568 */
569 uint64_t u64NanoTS = TMVirtualToNano(pVM, TMTimerPoll(pVM));
570 if (VM_FF_ISPENDING(pVM, fMask))
571 break;
572
573 /*
574 * Block if we're not spinning and the interval isn't all that small.
575 */
576 if ( ( !fSpinning
577 || fBlockOnce)
578#if 1 /* DEBUGGING STUFF - REMOVE LATER */
579 && u64NanoTS >= 100000) /* 0.100 ms */
580#else
581 && u64NanoTS >= 250000) /* 0.250 ms */
582#endif
583 {
584 const uint64_t Start = pUVM->vm.s.Halt.Method12.u64LastBlockTS = RTTimeNanoTS();
585 VMMR3YieldStop(pVM);
586
587 uint32_t cMilliSecs = RT_MIN(u64NanoTS / 1000000, 15);
588 if (cMilliSecs <= pUVM->vm.s.Halt.Method12.cNSBlockedTooLongAvg)
589 cMilliSecs = 1;
590 else
591 cMilliSecs -= pUVM->vm.s.Halt.Method12.cNSBlockedTooLongAvg;
592 //RTLogRelPrintf("u64NanoTS=%RI64 cLoops=%3d sleep %02dms (%7RU64) ", u64NanoTS, cLoops, cMilliSecs, u64NanoTS);
593 STAM_REL_PROFILE_START(&pUVM->vm.s.StatHaltBlock, a);
594 rc = RTSemEventWait(pUVM->vm.s.EventSemWait, cMilliSecs);
595 STAM_REL_PROFILE_STOP(&pUVM->vm.s.StatHaltBlock, a);
596 if (rc == VERR_TIMEOUT)
597 rc = VINF_SUCCESS;
598 else if (VBOX_FAILURE(rc))
599 {
600 AssertRC(rc != VERR_INTERRUPTED);
601 AssertMsgFailed(("RTSemEventWait->%Vrc\n", rc));
602 ASMAtomicUoWriteBool(&pUVM->vm.s.fTerminateEMT, true);
603 VM_FF_SET(pVM, VM_FF_TERMINATE);
604 rc = VERR_INTERNAL_ERROR;
605 break;
606 }
607
608 /*
609 * Calc the statistics.
610 * Update averages every 16th time, and flush parts of the history every 64th time.
611 */
612 const uint64_t Elapsed = RTTimeNanoTS() - Start;
613 pUVM->vm.s.Halt.Method12.cNSBlocked += Elapsed;
614 if (Elapsed > u64NanoTS)
615 pUVM->vm.s.Halt.Method12.cNSBlockedTooLong += Elapsed - u64NanoTS;
616 pUVM->vm.s.Halt.Method12.cBlocks++;
617 if (!(pUVM->vm.s.Halt.Method12.cBlocks & 0xf))
618 {
619 pUVM->vm.s.Halt.Method12.cNSBlockedTooLongAvg = pUVM->vm.s.Halt.Method12.cNSBlockedTooLong / pUVM->vm.s.Halt.Method12.cBlocks;
620 if (!(pUVM->vm.s.Halt.Method12.cBlocks & 0x3f))
621 {
622 pUVM->vm.s.Halt.Method12.cNSBlockedTooLong = pUVM->vm.s.Halt.Method12.cNSBlockedTooLongAvg * 0x40;
623 pUVM->vm.s.Halt.Method12.cBlocks = 0x40;
624 }
625 }
626 //RTLogRelPrintf(" -> %7RU64 ns / %7RI64 ns delta%s\n", Elapsed, Elapsed - u64NanoTS, fBlockOnce ? " (block once)" : "");
627
628 /*
629 * Clear the block once flag if we actually blocked.
630 */
631 if ( fBlockOnce
632 && Elapsed > 100000 /* 0.1 ms */)
633 fBlockOnce = false;
634 }
635 }
636 //if (fSpinning) RTLogRelPrintf("spun for %RU64 ns %u loops; lag=%RU64 pct=%d\n", RTTimeNanoTS() - u64Now, cLoops, TMVirtualSyncGetLag(pVM), u32CatchUpPct);
637
638 ASMAtomicUoWriteBool(&pUVM->vm.s.fWait, false);
639 return rc;
640}
641
642
643/**
644 * Initialize the global 1 halt method.
645 *
646 * @return VBox status code.
647 * @param pUVM Pointer to the user mode VM structure.
648 */
649static DECLCALLBACK(int) vmR3HaltGlobal1Init(PUVM pUVM)
650{
651 return VINF_SUCCESS;
652}
653
654
655/**
656 * The global 1 halt method - Block in GMM (ring-0) and let it
657 * try take care of the global scheduling of EMT threads.
658 */
659static DECLCALLBACK(int) vmR3HaltGlobal1Halt(PUVM pUVM, const uint32_t fMask, uint64_t u64Now)
660{
661 PVM pVM = pUVM->pVM;
662
663 /*
664 * Halt loop.
665 */
666 int rc = VINF_SUCCESS;
667 ASMAtomicWriteBool(&pUVM->vm.s.fWait, true);
668 unsigned cLoops = 0;
669 for (;; cLoops++)
670 {
671 /*
672 * Work the timers and check if we can exit.
673 */
674 STAM_REL_PROFILE_START(&pUVM->vm.s.StatHaltPoll, a);
675 PDMR3Poll(pVM);
676 STAM_REL_PROFILE_STOP(&pUVM->vm.s.StatHaltPoll, a);
677 STAM_REL_PROFILE_START(&pUVM->vm.s.StatHaltTimers, b);
678 TMR3TimerQueuesDo(pVM);
679 STAM_REL_PROFILE_STOP(&pUVM->vm.s.StatHaltTimers, b);
680 if (VM_FF_ISPENDING(pVM, fMask))
681 break;
682
683 /*
684 * Estimate time left to the next event.
685 */
686 uint64_t u64Delta;
687 uint64_t u64GipTime = TMTimerPollGIP(pVM, &u64Delta);
688 if (VM_FF_ISPENDING(pVM, fMask))
689 break;
690
691 /*
692 * Block if we're not spinning and the interval isn't all that small.
693 */
694 if (u64Delta > 50000 /* 0.050ms */)
695 {
696 VMMR3YieldStop(pVM);
697 if (VM_FF_ISPENDING(pVM, fMask))
698 break;
699
700 //RTLogRelPrintf("u64NanoTS=%RI64 cLoops=%3d sleep %02dms (%7RU64) ", u64NanoTS, cLoops, cMilliSecs, u64NanoTS);
701 STAM_REL_PROFILE_START(&pUVM->vm.s.StatHaltBlock, c);
702 rc = SUPCallVMMR0Ex(pVM->pVMR0, VMMR0_DO_GVMM_SCHED_HALT, u64GipTime, NULL);
703 STAM_REL_PROFILE_STOP(&pUVM->vm.s.StatHaltBlock, c);
704 if (rc == VERR_INTERRUPTED)
705 rc = VINF_SUCCESS;
706 else if (VBOX_FAILURE(rc))
707 {
708 AssertMsgFailed(("VMMR0_DO_GVMM_SCHED_HALT->%Vrc\n", rc));
709 ASMAtomicUoWriteBool(&pUVM->vm.s.fTerminateEMT, true);
710 VM_FF_SET(pVM, VM_FF_TERMINATE);
711 rc = VERR_INTERNAL_ERROR;
712 break;
713 }
714 }
715 /*
716 * When spinning call upon the GVMM and do some wakups once
717 * in a while, it's not like we're actually busy or anything.
718 */
719 else if (!(cLoops & 0x1fff))
720 {
721 STAM_REL_PROFILE_START(&pUVM->vm.s.StatHaltYield, d);
722 rc = SUPCallVMMR0Ex(pVM->pVMR0, VMMR0_DO_GVMM_SCHED_POLL, false /* don't yield */, NULL);
723 STAM_REL_PROFILE_STOP(&pUVM->vm.s.StatHaltYield, d);
724 }
725 }
726 //if (fSpinning) RTLogRelPrintf("spun for %RU64 ns %u loops; lag=%RU64 pct=%d\n", RTTimeNanoTS() - u64Now, cLoops, TMVirtualSyncGetLag(pVM), u32CatchUpPct);
727
728 ASMAtomicUoWriteBool(&pUVM->vm.s.fWait, false);
729 return rc;
730}
731
732
733/**
734 * The global 1 halt method - VMR3Wait() worker.
735 *
736 * @returns VBox status code.
737 * @param pUVM Pointer to the user mode VM structure.
738 */
739static DECLCALLBACK(int) vmR3HaltGlobal1Wait(PUVM pUVM)
740{
741 ASMAtomicWriteBool(&pUVM->vm.s.fWait, true);
742
743 PVM pVM = pUVM->pVM;
744 int rc = VINF_SUCCESS;
745 for (;;)
746 {
747 /*
748 * Check Relevant FFs.
749 */
750 if (VM_FF_ISPENDING(pVM, VM_FF_EXTERNAL_SUSPENDED_MASK))
751 break;
752
753 /*
754 * Wait for a while. Someone will wake us up or interrupt the call if
755 * anything needs our attention.
756 */
757 rc = SUPCallVMMR0Ex(pVM->pVMR0, VMMR0_DO_GVMM_SCHED_HALT, RTTimeNanoTS() + 1000000000 /* +1s */, NULL);
758 if (rc == VERR_INTERRUPTED)
759 rc = VINF_SUCCESS;
760 else if (VBOX_FAILURE(rc))
761 {
762 AssertMsgFailed(("RTSemEventWait->%Vrc\n", rc));
763 ASMAtomicUoWriteBool(&pUVM->vm.s.fTerminateEMT, true);
764 VM_FF_SET(pVM, VM_FF_TERMINATE);
765 rc = VERR_INTERNAL_ERROR;
766 break;
767 }
768
769 }
770
771 ASMAtomicUoWriteBool(&pUVM->vm.s.fWait, false);
772 return rc;
773}
774
775
776/**
777 * The global 1 halt method - VMR3NotifyFF() worker.
778 *
779 * @param pUVM Pointer to the user mode VM structure.
780 * @param fNotifiedREM See VMR3NotifyFF().
781 */
782static DECLCALLBACK(void) vmR3HaltGlobal1NotifyFF(PUVM pUVM, bool fNotifiedREM)
783{
784 if (pUVM->vm.s.fWait)
785 {
786 int rc = SUPCallVMMR0Ex(pUVM->pVM->pVMR0, VMMR0_DO_GVMM_SCHED_WAKE_UP, 0, NULL);
787 AssertRC(rc);
788 }
789 else if (!fNotifiedREM)
790 REMR3NotifyFF(pUVM->pVM);
791}
792
793
794/**
795 * Bootstrap VMR3Wait() worker.
796 *
797 * @returns VBox status code.
798 * @param pUVM Pointer to the user mode VM structure.
799 */
800static DECLCALLBACK(int) vmR3BootstrapWait(PUVM pUVM)
801{
802 ASMAtomicWriteBool(&pUVM->vm.s.fWait, true);
803
804 int rc = VINF_SUCCESS;
805 for (;;)
806 {
807 /*
808 * Check Relevant FFs.
809 */
810 if (pUVM->vm.s.pReqs)
811 break;
812 if ( pUVM->pVM
813 && VM_FF_ISPENDING(pUVM->pVM, VM_FF_EXTERNAL_SUSPENDED_MASK))
814 break;
815 if (pUVM->vm.s.fTerminateEMT)
816 break;
817
818 /*
819 * Wait for a while. Someone will wake us up or interrupt the call if
820 * anything needs our attention.
821 */
822 rc = RTSemEventWait(pUVM->vm.s.EventSemWait, 1000);
823 if (rc == VERR_TIMEOUT)
824 rc = VINF_SUCCESS;
825 else if (VBOX_FAILURE(rc))
826 {
827 AssertMsgFailed(("RTSemEventWait->%Vrc\n", rc));
828 ASMAtomicUoWriteBool(&pUVM->vm.s.fTerminateEMT, true);
829 if (pUVM->pVM)
830 VM_FF_SET(pUVM->pVM, VM_FF_TERMINATE);
831 rc = VERR_INTERNAL_ERROR;
832 break;
833 }
834
835 }
836
837 ASMAtomicUoWriteBool(&pUVM->vm.s.fWait, false);
838 return rc;
839}
840
841
842/**
843 * Bootstrap VMR3NotifyFF() worker.
844 *
845 * @param pUVM Pointer to the user mode VM structure.
846 * @param fNotifiedREM See VMR3NotifyFF().
847 */
848static DECLCALLBACK(void) vmR3BootstrapNotifyFF(PUVM pUVM, bool fNotifiedREM)
849{
850 if (pUVM->vm.s.fWait)
851 {
852 int rc = RTSemEventSignal(pUVM->vm.s.EventSemWait);
853 AssertRC(rc);
854 }
855}
856
857
858/**
859 * Default VMR3Wait() worker.
860 *
861 * @returns VBox status code.
862 * @param pUVM Pointer to the user mode VM structure.
863 */
864static DECLCALLBACK(int) vmR3DefaultWait(PUVM pUVM)
865{
866 ASMAtomicWriteBool(&pUVM->vm.s.fWait, true);
867
868 PVM pVM = pUVM->pVM;
869 int rc = VINF_SUCCESS;
870 for (;;)
871 {
872 /*
873 * Check Relevant FFs.
874 */
875 if (VM_FF_ISPENDING(pVM, VM_FF_EXTERNAL_SUSPENDED_MASK))
876 break;
877
878 /*
879 * Wait for a while. Someone will wake us up or interrupt the call if
880 * anything needs our attention.
881 */
882 rc = RTSemEventWait(pUVM->vm.s.EventSemWait, 1000);
883 if (rc == VERR_TIMEOUT)
884 rc = VINF_SUCCESS;
885 else if (VBOX_FAILURE(rc))
886 {
887 AssertMsgFailed(("RTSemEventWait->%Vrc\n", rc));
888 ASMAtomicUoWriteBool(&pUVM->vm.s.fTerminateEMT, true);
889 VM_FF_SET(pVM, VM_FF_TERMINATE);
890 rc = VERR_INTERNAL_ERROR;
891 break;
892 }
893
894 }
895
896 ASMAtomicUoWriteBool(&pUVM->vm.s.fWait, false);
897 return rc;
898}
899
900
901/**
902 * Default VMR3NotifyFF() worker.
903 *
904 * @param pUVM Pointer to the user mode VM structure.
905 * @param fNotifiedREM See VMR3NotifyFF().
906 */
907static DECLCALLBACK(void) vmR3DefaultNotifyFF(PUVM pUVM, bool fNotifiedREM)
908{
909 if (pUVM->vm.s.fWait)
910 {
911 int rc = RTSemEventSignal(pUVM->vm.s.EventSemWait);
912 AssertRC(rc);
913 }
914 else if (!fNotifiedREM)
915 REMR3NotifyFF(pUVM->pVM);
916}
917
918
919/**
920 * Array with halt method descriptors.
921 * VMINT::iHaltMethod contains an index into this array.
922 */
923static const struct VMHALTMETHODDESC
924{
925 /** The halt method id. */
926 VMHALTMETHOD enmHaltMethod;
927 /** The init function for loading config and initialize variables. */
928 DECLR3CALLBACKMEMBER(int, pfnInit,(PUVM pUVM));
929 /** The term function. */
930 DECLR3CALLBACKMEMBER(void, pfnTerm,(PUVM pUVM));
931 /** The halt function. */
932 DECLR3CALLBACKMEMBER(int, pfnHalt,(PUVM pUVM, const uint32_t fMask, uint64_t u64Now));
933 /** The wait function. */
934 DECLR3CALLBACKMEMBER(int, pfnWait,(PUVM pUVM));
935 /** The notifyFF function. */
936 DECLR3CALLBACKMEMBER(void, pfnNotifyFF,(PUVM pUVM, bool fNotifiedREM));
937} g_aHaltMethods[] =
938{
939 { VMHALTMETHOD_BOOTSTRAP, NULL, NULL, NULL, vmR3BootstrapWait, vmR3BootstrapNotifyFF },
940 { VMHALTMETHOD_OLD, NULL, NULL, vmR3HaltOldDoHalt, vmR3DefaultWait, vmR3DefaultNotifyFF },
941 { VMHALTMETHOD_1, vmR3HaltMethod1Init, NULL, vmR3HaltMethod1Halt, vmR3DefaultWait, vmR3DefaultNotifyFF },
942 //{ VMHALTMETHOD_2, vmR3HaltMethod2Init, vmR3HaltMethod2Term, vmR3HaltMethod2DoHalt, vmR3HaltMethod2Wait, vmR3HaltMethod2NotifyFF },
943 { VMHALTMETHOD_GLOBAL_1,vmR3HaltGlobal1Init, NULL, vmR3HaltGlobal1Halt, vmR3HaltGlobal1Wait, vmR3HaltGlobal1NotifyFF },
944};
945
946
947/**
948 * Notify the emulation thread (EMT) about pending Forced Action (FF).
949 *
950 * This function is called by thread other than EMT to make
951 * sure EMT wakes up and promptly service an FF request.
952 *
953 * @param pVM VM handle.
954 * @param fNotifiedREM Set if REM have already been notified. If clear the
955 * generic REMR3NotifyFF() method is called.
956 */
957VMMR3DECL(void) VMR3NotifyFF(PVM pVM, bool fNotifiedREM)
958{
959 LogFlow(("VMR3NotifyFF:\n"));
960 PUVM pUVM = pVM->pUVM;
961 g_aHaltMethods[pUVM->vm.s.iHaltMethod].pfnNotifyFF(pUVM, fNotifiedREM);
962}
963
964
965/**
966 * Notify the emulation thread (EMT) about pending Forced Action (FF).
967 *
968 * This function is called by thread other than EMT to make
969 * sure EMT wakes up and promptly service an FF request.
970 *
971 * @param pUVM Pointer to the user mode VM structure.
972 * @param fNotifiedREM Set if REM have already been notified. If clear the
973 * generic REMR3NotifyFF() method is called.
974 */
975VMMR3DECL(void) VMR3NotifyFFU(PUVM pUVM, bool fNotifiedREM)
976{
977 LogFlow(("VMR3NotifyFF:\n"));
978 g_aHaltMethods[pUVM->vm.s.iHaltMethod].pfnNotifyFF(pUVM, fNotifiedREM);
979}
980
981
982/**
983 * Halted VM Wait.
984 * Any external event will unblock the thread.
985 *
986 * @returns VINF_SUCCESS unless a fatal error occured. In the latter
987 * case an appropriate status code is returned.
988 * @param pVM VM handle.
989 * @param fIgnoreInterrupts If set the VM_FF_INTERRUPT flags is ignored.
990 * @thread The emulation thread.
991 */
992VMMR3DECL(int) VMR3WaitHalted(PVM pVM, bool fIgnoreInterrupts)
993{
994 LogFlow(("VMR3WaitHalted: fIgnoreInterrupts=%d\n", fIgnoreInterrupts));
995
996 /*
997 * Check Relevant FFs.
998 */
999 const uint32_t fMask = !fIgnoreInterrupts
1000 ? VM_FF_EXTERNAL_HALTED_MASK
1001 : VM_FF_EXTERNAL_HALTED_MASK & ~(VM_FF_INTERRUPT_APIC | VM_FF_INTERRUPT_PIC);
1002 if (VM_FF_ISPENDING(pVM, fMask))
1003 {
1004 LogFlow(("VMR3WaitHalted: returns VINF_SUCCESS (FF %#x)\n", pVM->fForcedActions));
1005 return VINF_SUCCESS;
1006 }
1007
1008 /*
1009 * The yielder is suspended while we're halting, while TM might have clock(s) running
1010 * only at certain times and need to be notified..
1011 */
1012 VMMR3YieldSuspend(pVM);
1013 TMNotifyStartOfHalt(pVM);
1014
1015 /*
1016 * Record halt averages for the last second.
1017 */
1018 PUVM pUVM = pVM->pUVM;
1019 uint64_t u64Now = RTTimeNanoTS();
1020 int64_t off = u64Now - pUVM->vm.s.u64HaltsStartTS;
1021 if (off > 1000000000)
1022 {
1023 if (off > _4G || !pUVM->vm.s.cHalts)
1024 {
1025 pUVM->vm.s.HaltInterval = 1000000000 /* 1 sec */;
1026 pUVM->vm.s.HaltFrequency = 1;
1027 }
1028 else
1029 {
1030 pUVM->vm.s.HaltInterval = (uint32_t)off / pUVM->vm.s.cHalts;
1031 pUVM->vm.s.HaltFrequency = ASMMultU64ByU32DivByU32(pUVM->vm.s.cHalts, 1000000000, (uint32_t)off);
1032 }
1033 pUVM->vm.s.u64HaltsStartTS = u64Now;
1034 pUVM->vm.s.cHalts = 0;
1035 }
1036 pUVM->vm.s.cHalts++;
1037
1038 /*
1039 * Do the halt.
1040 */
1041 int rc = g_aHaltMethods[pUVM->vm.s.iHaltMethod].pfnHalt(pUVM, fMask, u64Now);
1042
1043 /*
1044 * Notify TM and resume the yielder
1045 */
1046 TMNotifyEndOfHalt(pVM);
1047 VMMR3YieldResume(pVM);
1048
1049 LogFlow(("VMR3WaitHalted: returns %Vrc (FF %#x)\n", rc, pVM->fForcedActions));
1050 return rc;
1051}
1052
1053
1054/**
1055 * Suspended VM Wait.
1056 * Only a handful of forced actions will cause the function to
1057 * return to the caller.
1058 *
1059 * @returns VINF_SUCCESS unless a fatal error occured. In the latter
1060 * case an appropriate status code is returned.
1061 * @param pUVM Pointer to the user mode VM structure.
1062 * @thread The emulation thread.
1063 */
1064VMMR3DECL(int) VMR3WaitU(PUVM pUVM)
1065{
1066 LogFlow(("VMR3WaitU:\n"));
1067
1068 /*
1069 * Check Relevant FFs.
1070 */
1071 PVM pVM = pUVM->pVM;
1072 if ( pVM
1073 && VM_FF_ISPENDING(pVM, VM_FF_EXTERNAL_SUSPENDED_MASK))
1074 {
1075 LogFlow(("VMR3Wait: returns VINF_SUCCESS (FF %#x)\n", pVM->fForcedActions));
1076 return VINF_SUCCESS;
1077 }
1078
1079 /*
1080 * Do waiting according to the halt method (so VMR3NotifyFF
1081 * doesn't have to special case anything).
1082 */
1083 int rc = g_aHaltMethods[pUVM->vm.s.iHaltMethod].pfnWait(pUVM);
1084 LogFlow(("VMR3WaitU: returns %Vrc (FF %#x)\n", rc, pVM ? pVM->fForcedActions : 0));
1085 return rc;
1086}
1087
1088
1089/**
1090 * Changes the halt method.
1091 *
1092 * @returns VBox status code.
1093 * @param pUVM Pointer to the user mode VM structure.
1094 * @param enmHaltMethod The new halt method.
1095 * @thread EMT.
1096 */
1097int vmR3SetHaltMethodU(PUVM pUVM, VMHALTMETHOD enmHaltMethod)
1098{
1099 PVM pVM = pUVM->pVM; Assert(pVM);
1100 VM_ASSERT_EMT(pVM);
1101 AssertReturn(enmHaltMethod > VMHALTMETHOD_INVALID && enmHaltMethod < VMHALTMETHOD_END, VERR_INVALID_PARAMETER);
1102
1103 /*
1104 * Resolve default (can be overridden in the configuration).
1105 */
1106 if (enmHaltMethod == VMHALTMETHOD_DEFAULT)
1107 {
1108 uint32_t u32;
1109 int rc = CFGMR3QueryU32(CFGMR3GetChild(CFGMR3GetRoot(pVM), "VM"), "HaltMethod", &u32);
1110 if (VBOX_SUCCESS(rc))
1111 {
1112 enmHaltMethod = (VMHALTMETHOD)u32;
1113 if (enmHaltMethod <= VMHALTMETHOD_INVALID || enmHaltMethod >= VMHALTMETHOD_END)
1114 return VMSetError(pVM, VERR_INVALID_PARAMETER, RT_SRC_POS, N_("Invalid VM/HaltMethod value %d"), enmHaltMethod);
1115 }
1116 else if (rc == VERR_CFGM_VALUE_NOT_FOUND || rc == VERR_CFGM_CHILD_NOT_FOUND)
1117 return VMSetError(pVM, rc, RT_SRC_POS, N_("Failed to Query VM/HaltMethod as uint32_t"));
1118 else
1119 enmHaltMethod = VMHALTMETHOD_GLOBAL_1;
1120 //enmHaltMethod = VMHALTMETHOD_1;
1121 //enmHaltMethod = VMHALTMETHOD_OLD;
1122 }
1123 LogRel(("VM: Halt method %s (%d)\n", vmR3GetHaltMethodName(enmHaltMethod), enmHaltMethod));
1124
1125 /*
1126 * Find the descriptor.
1127 */
1128 unsigned i = 0;
1129 while ( i < RT_ELEMENTS(g_aHaltMethods)
1130 && g_aHaltMethods[i].enmHaltMethod != enmHaltMethod)
1131 i++;
1132 AssertReturn(i < RT_ELEMENTS(g_aHaltMethods), VERR_INVALID_PARAMETER);
1133
1134 /*
1135 * Terminate the old one.
1136 */
1137 if ( pUVM->vm.s.enmHaltMethod != VMHALTMETHOD_INVALID
1138 && g_aHaltMethods[pUVM->vm.s.iHaltMethod].pfnTerm)
1139 {
1140 g_aHaltMethods[pUVM->vm.s.iHaltMethod].pfnTerm(pUVM);
1141 pUVM->vm.s.enmHaltMethod = VMHALTMETHOD_INVALID;
1142 }
1143
1144 /*
1145 * Init the new one.
1146 */
1147 memset(&pUVM->vm.s.Halt, 0, sizeof(pUVM->vm.s.Halt));
1148 if (g_aHaltMethods[i].pfnInit)
1149 {
1150 int rc = g_aHaltMethods[i].pfnInit(pUVM);
1151 AssertRCReturn(rc, rc);
1152 }
1153 pUVM->vm.s.enmHaltMethod = enmHaltMethod;
1154
1155 ASMAtomicWriteU32(&pUVM->vm.s.iHaltMethod, i);
1156 return VINF_SUCCESS;
1157}
1158
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette