VirtualBox

source: vbox/trunk/src/VBox/VMM/TMInternal.h@ 2248

Last change on this file since 2248 was 2248, checked in by vboxsync, 17 years ago

Implementing timer syncrhonous virtual clock.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 17.2 KB
Line 
1/* $Id: TMInternal.h 2248 2007-04-19 21:43:29Z vboxsync $ */
2/** @file
3 * TM - Internal header file.
4 */
5
6/*
7 * Copyright (C) 2006 InnoTek Systemberatung GmbH
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 as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * If you received this file as part of a commercial VirtualBox
18 * distribution, then only the terms of your commercial VirtualBox
19 * license agreement apply instead of the previous paragraph.
20 */
21
22#ifndef __TMInternal_h__
23#define __TMInternal_h__
24
25#include <VBox/cdefs.h>
26#include <VBox/types.h>
27#include <iprt/timer.h>
28#include <VBox/stam.h>
29
30__BEGIN_DECLS
31
32
33/** @defgroup grp_tm_int Internal
34 * @ingroup grp_tm
35 * @internal
36 * @{
37 */
38
39/** Frequency of the real clock. */
40#define TMCLOCK_FREQ_REAL UINT32_C(1000)
41/** Frequency of the virtual clock. */
42#define TMCLOCK_FREQ_VIRTUAL UINT32_C(1000000000)
43
44
45/**
46 * Timer type.
47 */
48typedef enum TMTIMERTYPE
49{
50 /** Device timer. */
51 TMTIMERTYPE_DEV = 1,
52 /** Driver timer. */
53 TMTIMERTYPE_DRV,
54 /** Internal timer . */
55 TMTIMERTYPE_INTERNAL,
56 /** External timer. */
57 TMTIMERTYPE_EXTERNAL
58} TMTIMERTYPE;
59
60/**
61 * Timer state
62 */
63typedef enum TMTIMERSTATE
64{
65 /** Timer is stopped. */
66 TMTIMERSTATE_STOPPED = 1,
67 /** Timer is active. */
68 TMTIMERSTATE_ACTIVE,
69 /** Timer is expired, is being delivered. */
70 TMTIMERSTATE_EXPIRED,
71
72 /** Timer is stopped but still in the active list.
73 * Currently in the ScheduleTimers list. */
74 TMTIMERSTATE_PENDING_STOP,
75 /** Timer is stopped but needs unlinking from the ScheduleTimers list.
76 * Currently in the ScheduleTimers list. */
77 TMTIMERSTATE_PENDING_STOP_SCHEDULE,
78 /** Timer is being modified and will soon be pending scheduling.
79 * Currently in the ScheduleTimers list. */
80 TMTIMERSTATE_PENDING_SCHEDULE_SET_EXPIRE,
81 /** Timer is pending scheduling.
82 * Currently in the ScheduleTimers list. */
83 TMTIMERSTATE_PENDING_SCHEDULE,
84 /** Timer is being modified and will soon be pending rescheduling.
85 * Currently in the ScheduleTimers list and the active list. */
86 TMTIMERSTATE_PENDING_RESCHEDULE_SET_EXPIRE,
87 /** Timer is modified and is now pending rescheduling.
88 * Currently in the ScheduleTimers list and the active list. */
89 TMTIMERSTATE_PENDING_RESCHEDULE,
90 /** Timer is destroyed but needs to be replaced from the
91 * active to the free list.
92 * Currently in the ScheduleTimers list and the active list. */
93 TMTIMERSTATE_PENDING_STOP_DESTROY,
94 /** Timer is destroyed but needs moving to the free list.
95 * Currently in the ScheduleTimers list. */
96 TMTIMERSTATE_PENDING_DESTROY,
97 /** Timer is free. */
98 TMTIMERSTATE_FREE
99} TMTIMERSTATE;
100
101
102/**
103 * Internal representation of a timer.
104 *
105 * For correct serialization (without the use of semaphores and
106 * other blocking/slow constructs) certain rules applies to updating
107 * this structure:
108 * - For thread other than EMT only u64Expire, enmState and pScheduleNext*
109 * are changeable. Everything else is out of bounds.
110 * - Updating of u64Expire timer can only happen in the TMTIMERSTATE_STOPPED
111 * and TMTIMERSTATE_PENDING_RESCHEDULING_SET_EXPIRE states.
112 * - Timers in the TMTIMERSTATE_EXPIRED state are only accessible from EMT.
113 * - Actual destruction of a timer can only be done at scheduling time.
114 */
115typedef struct TMTIMER
116{
117 /** Expire time. */
118 volatile uint64_t u64Expire;
119 /** Clock to apply to u64Expire. */
120 TMCLOCK enmClock;
121 /** Timer callback type. */
122 TMTIMERTYPE enmType;
123 /** Type specific data. */
124 union
125 {
126 /** TMTIMERTYPE_DEV. */
127 struct
128 {
129 /** Callback. */
130 R3PTRTYPE(PFNTMTIMERDEV) pfnTimer;
131 /** Device instance. */
132 R3PTRTYPE(PPDMDEVINS) pDevIns;
133 } Dev;
134
135 /** TMTIMERTYPE_DRV. */
136 struct
137 {
138 /** Callback. */
139 R3PTRTYPE(PFNTMTIMERDRV) pfnTimer;
140 /** Device instance. */
141 R3PTRTYPE(PPDMDRVINS) pDrvIns;
142 } Drv;
143
144 /** TMTIMERTYPE_INTERNAL. */
145 struct
146 {
147 /** Callback. */
148 R3PTRTYPE(PFNTMTIMERINT) pfnTimer;
149 /** User argument. */
150 R3PTRTYPE(void *) pvUser;
151 } Internal;
152
153 /** TMTIMERTYPE_EXTERNAL. */
154 struct
155 {
156 /** Callback. */
157 R3PTRTYPE(PFNTMTIMEREXT) pfnTimer;
158 /** User data. */
159 R3PTRTYPE(void *) pvUser;
160 } External;
161 } u;
162
163 /** Timer state. */
164 volatile TMTIMERSTATE enmState;
165 /** Timer relative offset to the next timer in the schedule list. */
166 int32_t offScheduleNext;
167
168 /** Timer relative offset to the next timer in the chain. */
169 int32_t offNext;
170 /** Timer relative offset to the previous timer in the chain. */
171 int32_t offPrev;
172
173 /** Pointer to the next timer in the list of created or free timers. (TM::pTimers or TM::pFree) */
174 PTMTIMERR3 pBigNext;
175 /** Pointer to the previous timer in the list of all created timers. (TM::pTimers) */
176 PTMTIMERR3 pBigPrev;
177 /** Pointer to the timer description. */
178 HCPTRTYPE(const char *) pszDesc;
179 /** Pointer to the VM the timer belongs to - R3 Ptr. */
180 PVMR3 pVMR3;
181 /** Pointer to the VM the timer belongs to - R0 Ptr. */
182 PVMR0 pVMR0;
183 /** Pointer to the VM the timer belongs to - GC Ptr. */
184 PVMGC pVMGC;
185#if HC_ARCH_BITS == 64 && GC_ARCH_BITS == 32
186 RTGCPTR padding0; /**< pad structure to multiple of 8 bytes. */
187#endif
188} TMTIMER;
189
190
191/**
192 * Updates a timer state in the correct atomic manner.
193 */
194#if 1
195# define TM_SET_STATE(pTimer, state) \
196 ASMAtomicXchgSize(&(pTimer)->enmState, state)
197#else
198# define TM_SET_STATE(pTimer, state) \
199 do { Log(("%s: %p: %d -> %d\n", __FUNCTION__, (pTimer), (pTimer)->enmState, state)); \
200 ASMAtomicXchgSize(&(pTimer)->enmState, state);\
201 } while (0)
202#endif
203
204/**
205 * Tries to updates a timer state in the correct atomic manner.
206 */
207#if 1
208# define TM_TRY_SET_STATE(pTimer, StateNew, StateOld, fRc) \
209 ASMAtomicCmpXchgSize(&(pTimer)->enmState, StateNew, StateOld, fRc)
210#else
211# define TM_TRY_SET_STATE(pTimer, StateNew, StateOld, fRc) \
212 do { ASMAtomicCmpXchgSize(&(pTimer)->enmState, StateNew, StateOld, fRc); \
213 Log(("%s: %p: %d -> %d %RTbool\n", __FUNCTION__, (pTimer), StateOld, StateNew, fRc)); \
214 } while (0)
215#endif
216
217/** Get the previous timer. */
218#define TMTIMER_GET_PREV(pTimer) ((PTMTIMER)((pTimer)->offPrev ? (intptr_t)(pTimer) + (pTimer)->offPrev : 0))
219/** Get the next timer. */
220#define TMTIMER_GET_NEXT(pTimer) ((PTMTIMER)((pTimer)->offNext ? (intptr_t)(pTimer) + (pTimer)->offNext : 0))
221/** Set the previous timer link. */
222#define TMTIMER_SET_PREV(pTimer, pPrev) ((pTimer)->offPrev = (pPrev) ? (intptr_t)(pPrev) - (intptr_t)(pTimer) : 0)
223/** Set the next timer link. */
224#define TMTIMER_SET_NEXT(pTimer, pNext) ((pTimer)->offNext = (pNext) ? (intptr_t)(pNext) - (intptr_t)(pTimer) : 0)
225
226
227/**
228 * A timer queue.
229 *
230 * This is allocated on the hyper heap.
231 */
232typedef struct TMTIMERQUEUE
233{
234 /** The cached expire time for this queue.
235 * Updated by EMT when scheduling the queue or modifying the head timer.
236 * Assigned UINT64_MAX when there is no head timer. */
237 uint64_t u64Expire;
238 /** Doubly linked list of active timers.
239 *
240 * When no scheduling is pending, this list is will be ordered by expire time (ascending).
241 * Access is serialized by only letting the emulation thread (EMT) do changes.
242 *
243 * The offset is relative to the queue structure.
244 */
245 int32_t offActive;
246 /** List of timers pending scheduling of some kind.
247 *
248 * Timer stats allowed in the list are TMTIMERSTATE_PENDING_STOPPING,
249 * TMTIMERSTATE_PENDING_DESTRUCTION, TMTIMERSTATE_PENDING_STOPPING_DESTRUCTION,
250 * TMTIMERSTATE_PENDING_RESCHEDULING and TMTIMERSTATE_PENDING_SCHEDULE.
251 *
252 * The offset is relative to the queue structure.
253 */
254 int32_t volatile offSchedule;
255 /** The clock for this queue. */
256 TMCLOCK enmClock;
257 /** Pad the structure up to 32 bytes. */
258 uint32_t au32Padding[3];
259} TMTIMERQUEUE;
260
261/** Pointer to a timer queue. */
262typedef TMTIMERQUEUE *PTMTIMERQUEUE;
263
264/** Get the head of the active timer list. */
265#define TMTIMER_GET_HEAD(pQueue) ((PTMTIMER)((pQueue)->offActive ? (intptr_t)(pQueue) + (pQueue)->offActive : 0))
266/** Set the head of the active timer list. */
267#define TMTIMER_SET_HEAD(pQueue, pHead) ((pQueue)->offActive = pHead ? (intptr_t)pHead - (intptr_t)(pQueue) : 0)
268
269
270/**
271 * Converts a TM pointer into a VM pointer.
272 * @returns Pointer to the VM structure the TM is part of.
273 * @param pTM Pointer to TM instance data.
274 */
275#define TM2VM(pTM) ( (PVM)((char*)pTM - pTM->offVM) )
276
277
278/**
279 * TM VM Instance data.
280 * Changes to this must checked against the padding of the cfgm union in VM!
281 */
282typedef struct TM
283{
284 /** Offset to the VM structure.
285 * See TM2VM(). */
286 RTUINT offVM;
287
288 /** CPU timestamp ticking enabled indicator (bool). (RDTSC) */
289 bool fTSCTicking;
290 /** Set if we fully virtualize the TSC, i.e. intercept all rdtsc instructions.
291 * Config variable: TSCVirtualized (bool) */
292 bool fTSCVirtualized;
293 /** Set if we use the real TSC as time source or if we use the virtual clock.
294 * If fTSCVirtualized is set we maintain a offset to the TSC and pausing/resuming the
295 * ticking. fTSCVirtualized = false implies fTSCUseRealTSC = true.
296 * Config variable: TSCUseRealTSC (bool) */
297 bool fTSCUseRealTSC;
298 /** The offset between the host TSC and the Guest TSC.
299 * Only valid if fTicking is set and and fTSCUseRealTSC is clear. */
300 uint64_t u64TSCOffset;
301 /** The guest TSC when fTicking is cleared. */
302 uint64_t u64TSC;
303 /** The number of CPU clock ticks per second (TMCLOCK_TSC).
304 * Config variable: TSCTicksPerSecond (64-bit unsigned int)
305 * The config variable implies fTSCVirtualized = true and fTSCUseRealTSC = false. */
306 uint64_t cTSCTicksPerSecond;
307
308 /** Virtual time ticking enabled indicator (bool). (TMCLOCK_VIRTUAL) */
309 bool fVirtualTicking;
310 /** Virtual time is not running at 100%. */
311 bool fVirtualWarpDrive;
312 /** Virtual timer synchronous time ticking enabled indicator (bool). (TMCLOCK_VIRTUAL_SYNC) */
313 bool volatile fVirtualSyncTicking;
314 /** Virtual timer synchronous time catch-up active. */
315 bool volatile fVirtualSyncCatchUp;
316 /** WarpDrive percentage.
317 * 100% is normal (fVirtualSyncNormal == true). When other than 100% we apply
318 * this percentage to the raw time source for the period it's been valid in,
319 * i.e. since u64VirtualWarpDriveStart. */
320 uint32_t u32VirtualWarpDrivePercentage;
321
322 /** The offset of the virtual clock relative to it's timesource.
323 * Only valid if fVirtualTicking is set. */
324 uint64_t u64VirtualOffset;
325 /** The guest virtual time when fVirtualTicking is cleared. */
326 uint64_t u64Virtual;
327 /** When the Warp drive was started or last adjusted.
328 * Only valid when fVirtualWarpDrive is set. */
329 uint64_t u64VirtualWarpDriveStart;
330
331 /** The offset of the virtual timer synchronous clock (TMCLOCK_VIRTUAL_SYNC) relative
332 * to the virtual clock. */
333 uint64_t volatile u64VirtualSyncOffset;
334 /** The TMCLOCK_VIRTUAL at the previous TMVirtualGetSync call when catch-up is active. */
335 uint64_t volatile u64VirtualSyncCatchUpPrev;
336 /** The guest virtual timer synchronous time when fVirtualSyncTicking is cleared. */
337 uint64_t volatile u64VirtualSync;
338 /** The current catch-up percentage. */
339 uint32_t volatile u32VirtualSyncCatchUpPercentage;
340 /** How much slack when processing timers. */
341 uint32_t u32VirtualSyncScheduleSlack;
342 /** When to stop catch-up. */
343 uint64_t u64VirtualSyncCatchUpStopThreshold;
344 /** When to give up catch-up. */
345 uint64_t u64VirtualSyncCatchUpGiveUpThreshold;
346/** @def TM_MAX_CATCHUP_PERIODS
347 * The number of catchup rates. */
348#define TM_MAX_CATCHUP_PERIODS 8
349 /** The agressivness of the catch-up relative to how far we've lagged behind.
350 * The idea is to have increasing catch-up percentage as the lag increases. */
351 struct TMCATCHUPPERIOD
352 {
353 uint64_t u64Start; /**< When this period starts. (u64VirtualSyncOffset). */
354 uint32_t u32Percentage; /**< The catch-up percent to apply. */
355 uint32_t u32Alignment; /**< Structure alignment */
356 } aVirtualSyncCatchUpPeriods[TM_MAX_CATCHUP_PERIODS];
357
358 /** Timer queues for the different clock types - R3 Ptr */
359 R3PTRTYPE(PTMTIMERQUEUE) paTimerQueuesR3;
360 /** Timer queues for the different clock types - R0 Ptr */
361 R0PTRTYPE(PTMTIMERQUEUE) paTimerQueuesR0;
362 /** Timer queues for the different clock types - GC Ptr */
363 GCPTRTYPE(PTMTIMERQUEUE) paTimerQueuesGC;
364
365 /** Pointer to our GC mapping of the GIP. */
366 GCPTRTYPE(void *) pvGIPGC;
367 /** Pointer to our R3 mapping of the GIP. */
368 R3PTRTYPE(void *) pvGIPR3;
369
370 /** Pointer to a singly linked list of free timers.
371 * This chain is using the TMTIMER::pBigNext members.
372 * Only accessible from the emulation thread. */
373 PTMTIMERR3 pFree;
374
375 /** Pointer to a doubly linked list of created timers.
376 * This chain is using the TMTIMER::pBigNext and TMTIMER::pBigPrev members.
377 * Only accessible from the emulation thread. */
378 PTMTIMERR3 pCreated;
379
380 /** The schedulation timer timer handle (runtime timer).
381 * This timer will do freqent check on pending queue schedulations and
382 * raise VM_FF_TIMER to pull EMTs attention to them.
383 */
384 HCPTRTYPE(PRTTIMER) pTimer;
385 /** Interval in milliseconds of the pTimer timer. */
386 uint32_t u32TimerMillies;
387
388 /** Alignment padding to ensure that the statistics are 64-bit aligned when using GCC. */
389 uint32_t u32Padding;
390
391 /** TMR3TimerQueuesDo
392 * @{ */
393 STAMPROFILE StatDoQueues;
394 STAMPROFILEADV StatDoQueuesSchedule;
395 STAMPROFILEADV StatDoQueuesRun;
396 /** @} */
397 /** tmSchedule
398 * @{ */
399 STAMPROFILE StatScheduleOneGC;
400 STAMPROFILE StatScheduleOneR0;
401 STAMPROFILE StatScheduleOneR3;
402 STAMCOUNTER StatScheduleSetFF;
403 STAMCOUNTER StatPostponedR3;
404 STAMCOUNTER StatPostponedR0;
405 STAMCOUNTER StatPostponedGC;
406 /** @} */
407 /** Read the time
408 * @{ */
409 STAMCOUNTER StatVirtualGet;
410 STAMCOUNTER StatVirtualGetSync;
411 STAMCOUNTER StatVirtualPause;
412 STAMCOUNTER StatVirtualResume;
413 /* @} */
414 /** TMTimerPoll
415 * @{ */
416 STAMCOUNTER StatPollAlreadySet;
417 STAMCOUNTER StatPollVirtual;
418 STAMCOUNTER StatPollVirtualSync;
419 STAMCOUNTER StatPollMiss;
420 /** @} */
421 /** TMTimerSet
422 * @{ */
423 STAMPROFILE StatTimerSetGC;
424 STAMPROFILE StatTimerSetR0;
425 STAMPROFILE StatTimerSetR3;
426 /** @} */
427 /** TMTimerStop
428 * @{ */
429 STAMPROFILE StatTimerStopGC;
430 STAMPROFILE StatTimerStopR0;
431 STAMPROFILE StatTimerStopR3;
432 /** @} */
433 /** VirtualSync - Running and Catching Up
434 * @{ */
435 STAMCOUNTER StatVirtualSyncRun;
436 STAMCOUNTER StatVirtualSyncRunRestart;
437 STAMPROFILE StatVirtualSyncRunSlack;
438 STAMCOUNTER StatVirtualSyncRunStop;
439 STAMCOUNTER StatVirtualSyncRunStoppedAlready;
440 STAMCOUNTER StatVirtualSyncGiveUp;
441 STAMCOUNTER StatVirtualSyncGiveUpBeforeStarting;
442 STAMPROFILEADV StatVirtualSyncCatchup;
443 STAMCOUNTER aStatVirtualSyncCatchupInitial[TM_MAX_CATCHUP_PERIODS];
444 STAMCOUNTER aStatVirtualSyncCatchupAdjust[TM_MAX_CATCHUP_PERIODS];
445 /** @} */
446 /** The timer callback. */
447 STAMCOUNTER StatTimerCallbackSetFF;
448
449} TM;
450/** Pointer to TM VM instance data. */
451typedef TM *PTM;
452
453
454const char *tmTimerState(TMTIMERSTATE enmState);
455void tmTimerQueueSchedule(PVM pVM, PTMTIMERQUEUE pQueue);
456#ifdef VBOX_STRICT
457void tmTimerQueuesSanityChecks(PVM pVM, const char *pszWhere);
458#endif
459
460/** @} */
461
462__END_DECLS
463
464#endif
465
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