VirtualBox

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

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

TM: alignment miscounting.

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

© 2023 Oracle
ContactPrivacy policyTerms of Use