VirtualBox

source: vbox/trunk/include/VBox/tm.h@ 1

Last change on this file since 1 was 1, checked in by vboxsync, 55 years ago

import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 20.0 KB
Line 
1/** @file
2 * TM - Time Monitor.
3 */
4
5/*
6 * Copyright (C) 2006 InnoTek Systemberatung GmbH
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 as published by the Free Software Foundation,
12 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13 * distribution. VirtualBox OSE is distributed in the hope that it will
14 * be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * If you received this file as part of a commercial VirtualBox
17 * distribution, then only the terms of your commercial VirtualBox
18 * license agreement apply instead of the previous paragraph.
19 */
20
21
22#ifndef __VBox_tm_h__
23#define __VBox_tm_h__
24
25#include <VBox/cdefs.h>
26#include <VBox/types.h>
27
28__BEGIN_DECLS
29
30/** @defgroup grp_tm The Time Monitor API
31 * @{
32 */
33
34/** Enable a timer hack which improves the timer response/resolution a bit. */
35#define VBOX_HIGH_RES_TIMERS_HACK
36
37/** Use the real CPU TSC. */
38#define TM_REAL_CPU_TICK
39
40
41/**
42 * Clock type.
43 */
44typedef enum TMCLOCK
45{
46 /** Real host time.
47 * This clock ticks all the time, so use with care. */
48 TMCLOCK_REAL = 0,
49 /** Virtual guest time.
50 * This clock only ticks when the guest is running. It's implemented
51 * as an offset to real time. */
52 TMCLOCK_VIRTUAL,
53#if 1
54 /** Virtual guest synchronized timer time.
55 * This is a special clock and timer queue for synchronizing virtual timers and
56 * virtual time sources. This clock is trying to keep up with TMCLOCK_VIRTUAL,
57 * but will wait for timers to be executed. If it lags too far behind TMCLOCK_VIRTUAL,
58 * it will try speed up to close the distance. */
59 TMCLOCK_VIRTUAL_SYNC,
60#endif
61 /** Virtual CPU timestamp. (Running only when we're executing guest code.) */
62 TMCLOCK_TSC,
63 /** Number of clocks. */
64 TMCLOCK_MAX
65} TMCLOCK;
66
67
68
69/** @name Real Clock Methods
70 * @{
71 */
72/**
73 * Gets the current TMCLOCK_REAL time.
74 *
75 * @returns Real time.
76 * @param pVM The VM handle.
77 */
78TMDECL(uint64_t) TMRealGet(PVM pVM);
79
80/**
81 * Gets the frequency of the TMCLOCK_REAL clock.
82 *
83 * @returns frequency.
84 * @param pVM The VM handle.
85 */
86TMDECL(uint64_t) TMRealGetFreq(PVM pVM);
87/** @} */
88
89
90/** @name Virtual Clock Methods
91 * @{
92 */
93/**
94 * Gets the current TMCLOCK_VIRTUAL time.
95 *
96 * @returns The timestamp.
97 * @param pVM VM handle.
98 *
99 * @remark While the flow of time will never go backwards, the speed of the
100 * progress varies due to inaccurate RTTimeNanoTS and TSC. The latter can be
101 * influenced by power saving (SpeedStep, PowerNow!), while the former
102 * makes use of TSC and kernel timers.
103 */
104TMDECL(uint64_t) TMVirtualGet(PVM pVM);
105
106/**
107 * Gets the current TMCLOCK_VIRTUAL_SYNC time.
108 *
109 * @returns The timestamp.
110 * @param pVM VM handle.
111 *
112 */
113TMDECL(uint64_t) TMVirtualGetSync(PVM pVM);
114
115/**
116 * Gets the current TMCLOCK_VIRTUAL frequency.
117 *
118 * @returns The freqency.
119 * @param pVM VM handle.
120 */
121TMDECL(uint64_t) TMVirtualGetFreq(PVM pVM);
122
123/**
124 * Resumes the virtual clock.
125 *
126 * @returns VINF_SUCCESS on success.
127 * @returns VINF_INTERNAL_ERROR and VBOX_STRICT assertion if called out of order.
128 * @param pVM VM handle.
129 */
130TMDECL(int) TMVirtualResume(PVM pVM);
131
132/**
133 * Pauses the virtual clock.
134 *
135 * @returns VINF_SUCCESS on success.
136 * @returns VINF_INTERNAL_ERROR and VBOX_STRICT assertion if called out of order.
137 * @param pVM VM handle.
138 */
139TMDECL(int) TMVirtualPause(PVM pVM);
140
141/**
142 * Converts from virtual ticks to nanoseconds.
143 *
144 * @returns nanoseconds.
145 * @param pVM The VM handle.
146 * @param u64VirtualTicks The virtual ticks to convert.
147 * @remark There could be rounding errors here. We just do a simple integere divide
148 * without any adjustments.
149 */
150TMDECL(uint64_t) TMVirtualToNano(PVM pVM, uint64_t u64VirtualTicks);
151
152/**
153 * Converts from virtual ticks to microseconds.
154 *
155 * @returns microseconds.
156 * @param pVM The VM handle.
157 * @param u64VirtualTicks The virtual ticks to convert.
158 * @remark There could be rounding errors here. We just do a simple integere divide
159 * without any adjustments.
160 */
161TMDECL(uint64_t) TMVirtualToMicro(PVM pVM, uint64_t u64VirtualTicks);
162
163/**
164 * Converts from virtual ticks to milliseconds.
165 *
166 * @returns milliseconds.
167 * @param pVM The VM handle.
168 * @param u64VirtualTicks The virtual ticks to convert.
169 * @remark There could be rounding errors here. We just do a simple integere divide
170 * without any adjustments.
171 */
172TMDECL(uint64_t) TMVirtualToMilli(PVM pVM, uint64_t u64VirtualTicks);
173
174/**
175 * Converts from nanoseconds to virtual ticks.
176 *
177 * @returns virtual ticks.
178 * @param pVM The VM handle.
179 * @param u64NanoTS The nanosecond value ticks to convert.
180 * @remark There could be rounding and overflow errors here.
181 */
182TMDECL(uint64_t) TMVirtualFromNano(PVM pVM, uint64_t u64NanoTS);
183
184/**
185 * Converts from microseconds to virtual ticks.
186 *
187 * @returns virtual ticks.
188 * @param pVM The VM handle.
189 * @param u64MicroTS The microsecond value ticks to convert.
190 * @remark There could be rounding and overflow errors here.
191 */
192TMDECL(uint64_t) TMVirtualFromMicro(PVM pVM, uint64_t u64MicroTS);
193
194/**
195 * Converts from milliseconds to virtual ticks.
196 *
197 * @returns virtual ticks.
198 * @param pVM The VM handle.
199 * @param u64MilliTS The millisecond value ticks to convert.
200 * @remark There could be rounding and overflow errors here.
201 */
202TMDECL(uint64_t) TMVirtualFromMilli(PVM pVM, uint64_t u64MilliTS);
203
204/** @} */
205
206
207/** @name CPU Clock Methods
208 * @{
209 */
210/**
211 * Resumes the CPU timestamp counter ticking.
212 *
213 * @returns VBox status code.
214 * @param pVM The VM to operate on.
215 */
216TMDECL(int) TMCpuTickResume(PVM pVM);
217
218/**
219 * Pauses the CPU timestamp counter ticking.
220 *
221 * @returns VBox status code.
222 * @param pVM The VM to operate on.
223 */
224TMDECL(int) TMCpuTickPause(PVM pVM);
225
226/**
227 * Read the current CPU timstamp counter.
228 *
229 * @returns Gets the CPU tsc.
230 * @param pVM The VM to operate on.
231 */
232TMDECL(uint64_t) TMCpuTickGet(PVM pVM);
233
234/**
235 * Sets the current CPU timestamp counter.
236 *
237 * @returns VBox status code.
238 * @param pVM The VM to operate on.
239 * @param u64Tick The new timestamp value.
240 */
241TMDECL(int) TMCpuTickSet(PVM pVM, uint64_t u64Tick);
242
243/**
244 * Get the timestamp frequency.
245 *
246 * @returns Number of ticks per second.
247 * @param pVM The VM.
248 */
249TMDECL(uint64_t) TMCpuTicksPerSecond(PVM pVM);
250
251/** @} */
252
253
254/** @name Timer Methods
255 * @{
256 */
257/**
258 * Device timer callback function.
259 *
260 * @param pDevIns Device instance of the device which registered the timer.
261 * @param pTimer The timer handle.
262 */
263typedef DECLCALLBACK(void) FNTMTIMERDEV(PPDMDEVINS pDevIns, PTMTIMER pTimer);
264/** Pointer to a device timer callback function. */
265typedef FNTMTIMERDEV *PFNTMTIMERDEV;
266
267/**
268 * Driver timer callback function.
269 *
270 * @param pDrvIns Device instance of the device which registered the timer.
271 * @param pTimer The timer handle.
272 */
273typedef DECLCALLBACK(void) FNTMTIMERDRV(PPDMDRVINS pDrvIns, PTMTIMER pTimer);
274/** Pointer to a driver timer callback function. */
275typedef FNTMTIMERDRV *PFNTMTIMERDRV;
276
277/**
278 * Service timer callback function.
279 *
280 * @param pSrvIns Service instance of the device which registered the timer.
281 * @param pTimer The timer handle.
282 */
283typedef DECLCALLBACK(void) FNTMTIMERSRV(PPDMSRVINS pSrvIns, PTMTIMER pTimer);
284/** Pointer to a service timer callback function. */
285typedef FNTMTIMERSRV *PFNTMTIMERSRV;
286
287/**
288 * Internal timer callback function.
289 *
290 * @param pVM The VM.
291 * @param pTimer The timer handle.
292 * @param pvUser User argument specified upon timer creation.
293 */
294typedef DECLCALLBACK(void) FNTMTIMERINT(PVM pVM, PTMTIMER pTimer, void *pvUser);
295/** Pointer to internal timer callback function. */
296typedef FNTMTIMERINT *PFNTMTIMERINT;
297
298/**
299 * External timer callback function.
300 *
301 * @param pvUser User argument as specified when the timer was created.
302 */
303typedef DECLCALLBACK(void) FNTMTIMEREXT(void *pvUser);
304/** Pointer to an external timer callback function. */
305typedef FNTMTIMEREXT *PFNTMTIMEREXT;
306
307
308/**
309 * Gets the host context ring-3 pointer of the timer.
310 *
311 * @returns HC R3 pointer.
312 * @param pTimer Timer handle as returned by one of the create functions.
313 */
314TMDECL(PTMTIMERR3) TMTimerR3Ptr(PTMTIMER pTimer);
315
316/**
317 * Gets the host context ring-0 pointer of the timer.
318 *
319 * @returns HC R0 pointer.
320 * @param pTimer Timer handle as returned by one of the create functions.
321 */
322TMDECL(PTMTIMERR0) TMTimerR0Ptr(PTMTIMER pTimer);
323
324/**
325 * Gets the GC pointer of the timer.
326 *
327 * @returns GC pointer.
328 * @param pTimer Timer handle as returned by one of the create functions.
329 */
330TMDECL(PTMTIMERGC) TMTimerGCPtr(PTMTIMER pTimer);
331
332/**
333 * Gets the GC pointer of the timer.
334 *
335 * @returns GC pointer.
336 * @param pTimer Timer handle as returned by one of the create functions.
337 * @deprecated
338 */
339DECLINLINE(PTMTIMERHC) TMTimerHCPtr(PTMTIMER pTimer)
340{
341 return (PTMTIMERHC)TMTimerR3Ptr(pTimer);
342}
343
344/**
345 * Destroy a timer
346 *
347 * @returns VBox status.
348 * @param pTimer Timer handle as returned by one of the create functions.
349 */
350TMDECL(int) TMTimerDestroy(PTMTIMER pTimer);
351
352/**
353 * Arm a timer with a (new) expire time.
354 *
355 * @returns VBox status.
356 * @param pTimer Timer handle as returned by one of the create functions.
357 * @param u64Expire New expire time.
358 */
359TMDECL(int) TMTimerSet(PTMTIMER pTimer, uint64_t u64Expire);
360
361/**
362 * Arm a timer with a (new) expire time relative to current clock.
363 *
364 * @returns VBox status.
365 * @param pTimer Timer handle as returned by one of the create functions.
366 * @param cMilliesToNext Number of millieseconds to the next tick.
367 */
368TMDECL(int) TMTimerSetMillies(PTMTIMER pTimer, uint32_t cMilliesToNext);
369
370/**
371 * Get the current clock time.
372 * Handy for calculating the new expire time.
373 *
374 * @returns Current clock time.
375 * @param pTimer Timer handle as returned by one of the create functions.
376 */
377TMDECL(uint64_t) TMTimerGet(PTMTIMER pTimer);
378
379/**
380 * Get the current clock time as nanoseconds.
381 *
382 * @returns The timer clock as nanoseconds.
383 * @param pTimer Timer handle as returned by one of the create functions.
384 */
385TMDECL(uint64_t) TMTimerGetNano(PTMTIMER pTimer);
386
387/**
388 * Get the current clock time as microseconds.
389 *
390 * @returns The timer clock as microseconds.
391 * @param pTimer Timer handle as returned by one of the create functions.
392 */
393TMDECL(uint64_t) TMTimerGetMicro(PTMTIMER pTimer);
394
395/**
396 * Get the current clock time as milliseconds.
397 *
398 * @returns The timer clock as milliseconds.
399 * @param pTimer Timer handle as returned by one of the create functions.
400 */
401TMDECL(uint64_t) TMTimerGetMilli(PTMTIMER pTimer);
402
403/**
404 * Get the freqency of the timer clock.
405 *
406 * @returns Clock frequency (as Hz of course).
407 * @param pTimer Timer handle as returned by one of the create functions.
408 */
409TMDECL(uint64_t) TMTimerGetFreq(PTMTIMER pTimer);
410
411/**
412 * Get the expire time of the timer.
413 * Only valid for active timers.
414 *
415 * @returns Expire time of the timer.
416 * @param pTimer Timer handle as returned by one of the create functions.
417 */
418TMDECL(uint64_t) TMTimerGetExpire(PTMTIMER pTimer);
419
420/**
421 * Converts the specified timer clock time to nanoseconds.
422 *
423 * @returns nanoseconds.
424 * @param pTimer Timer handle as returned by one of the create functions.
425 * @param u64Ticks The clock ticks.
426 * @remark There could be rounding errors here. We just do a simple integere divide
427 * without any adjustments.
428 */
429TMDECL(uint64_t) TMTimerToNano(PTMTIMER pTimer, uint64_t u64Ticks);
430
431/**
432 * Converts the specified timer clock time to microseconds.
433 *
434 * @returns microseconds.
435 * @param pTimer Timer handle as returned by one of the create functions.
436 * @param u64Ticks The clock ticks.
437 * @remark There could be rounding errors here. We just do a simple integere divide
438 * without any adjustments.
439 */
440TMDECL(uint64_t) TMTimerToMicro(PTMTIMER pTimer, uint64_t u64Ticks);
441
442/**
443 * Converts the specified timer clock time to milliseconds.
444 *
445 * @returns milliseconds.
446 * @param pTimer Timer handle as returned by one of the create functions.
447 * @param u64Ticks The clock ticks.
448 * @remark There could be rounding errors here. We just do a simple integere divide
449 * without any adjustments.
450 */
451TMDECL(uint64_t) TMTimerToMilli(PTMTIMER pTimer, uint64_t u64Ticks);
452
453/**
454 * Converts the specified nanosecond timestamp to timer clock ticks.
455 *
456 * @returns timer clock ticks.
457 * @param pTimer Timer handle as returned by one of the create functions.
458 * @param u64NanoTS The nanosecond value ticks to convert.
459 * @remark There could be rounding and overflow errors here.
460 */
461TMDECL(uint64_t) TMTimerFromNano(PTMTIMER pTimer, uint64_t u64NanoTS);
462
463/**
464 * Converts the specified microsecond timestamp to timer clock ticks.
465 *
466 * @returns timer clock ticks.
467 * @param pTimer Timer handle as returned by one of the create functions.
468 * @param u64MicroTS The microsecond value ticks to convert.
469 * @remark There could be rounding and overflow errors here.
470 */
471TMDECL(uint64_t) TMTimerFromMicro(PTMTIMER pTimer, uint64_t u64MicroTS);
472
473/**
474 * Converts the specified millisecond timestamp to timer clock ticks.
475 *
476 * @returns timer clock ticks.
477 * @param pTimer Timer handle as returned by one of the create functions.
478 * @param u64MilliTS The millisecond value ticks to convert.
479 * @remark There could be rounding and overflow errors here.
480 */
481TMDECL(uint64_t) TMTimerFromMilli(PTMTIMER pTimer, uint64_t u64MilliTS);
482
483
484/**
485 * Stop the timer.
486 * Use TMR3TimerArm() to "un-stop" the timer.
487 *
488 * @returns VBox status.
489 * @param pTimer Timer handle as returned by one of the create functions.
490 */
491TMDECL(int) TMTimerStop(PTMTIMER pTimer);
492
493/**
494 * Checks if a timer is active or not.
495 *
496 * @returns True if active.
497 * @returns False if not active.
498 * @param pTimer Timer handle as returned by one of the create functions.
499 */
500TMDECL(bool) TMTimerIsActive(PTMTIMER pTimer);
501
502/**
503 * Set FF if we've passed the next virtual event.
504 *
505 * This function is called before FFs are checked in the inner execution EM loops.
506 *
507 * @returns Virtual timer ticks to the next event.
508 * @thread The emulation thread.
509 */
510TMDECL(uint64_t) TMTimerPoll(PVM pVM);
511
512/** @} */
513
514
515#ifdef IN_RING3
516/** @defgroup grp_tm_r3 The TM Host Context Ring-3 API
517 * @ingroup grp_tm
518 * @{
519 */
520
521/**
522 * Initializes the TM.
523 *
524 * @returns VBox status code.
525 * @param pVM The VM to operate on.
526 */
527TMR3DECL(int) TMR3Init(PVM pVM);
528
529/**
530 * Applies relocations to data and code managed by this
531 * component. This function will be called at init and
532 * whenever the VMM need to relocate it self inside the GC.
533 *
534 * @param pVM The VM.
535 * @param offDelta Relocation delta relative to old location.
536 */
537TMR3DECL(void) TMR3Relocate(PVM pVM, RTGCINTPTR offDelta);
538
539/**
540 * Terminates the TM.
541 *
542 * Termination means cleaning up and freeing all resources,
543 * the VM it self is at this point powered off or suspended.
544 *
545 * @returns VBox status code.
546 * @param pVM The VM to operate on.
547 */
548TMR3DECL(int) TMR3Term(PVM pVM);
549
550/**
551 * The VM is being reset.
552 *
553 * For the TM component this means that a rescheduling is preformed,
554 * the FF is cleared and but without running the queues. We'll have to
555 * check if this makes sense or not, but it seems like a good idea now....
556 *
557 * @param pVM VM handle.
558 */
559TMR3DECL(void) TMR3Reset(PVM pVM);
560
561/**
562 * Resolve a builtin GC symbol.
563 * Called by PDM when loading or relocating GC modules.
564 *
565 * @returns VBox status
566 * @param pVM VM Handle.
567 * @param pszSymbol Symbol to resolv
568 * @param pGCPtrValue Where to store the symbol value.
569 * @remark This has to work before TMR3Relocate() is called.
570 */
571TMR3DECL(int) TMR3GetImportGC(PVM pVM, const char *pszSymbol, PRTGCPTR pGCPtrValue);
572
573/**
574 * Creates a device timer.
575 *
576 * @returns VBox status.
577 * @param pVM The VM to create the timer in.
578 * @param pDevIns Device instance.
579 * @param enmClock The clock to use on this timer.
580 * @param pfnCallback Callback function.
581 * @param pszDesc Pointer to description string which must stay around
582 * until the timer is fully destroyed (i.e. a bit after TMTimerDestroy()).
583 * @param ppTimer Where to store the timer on success.
584 */
585TMR3DECL(int) TMR3TimerCreateDevice(PVM pVM, PPDMDEVINS pDevIns, TMCLOCK enmClock, PFNTMTIMERDEV pfnCallback, const char *pszDesc, PPTMTIMERHC ppTimer);
586
587/**
588 * Creates a driver timer.
589 *
590 * @returns VBox status.
591 * @param pVM The VM to create the timer in.
592 * @param pDrvIns Driver instance.
593 * @param enmClock The clock to use on this timer.
594 * @param pfnCallback Callback function.
595 * @param pszDesc Pointer to description string which must stay around
596 * until the timer is fully destroyed (i.e. a bit after TMTimerDestroy()).
597 * @param ppTimer Where to store the timer on success.
598 */
599TMR3DECL(int) TMR3TimerCreateDriver(PVM pVM, PPDMDRVINS pDrvIns, TMCLOCK enmClock, PFNTMTIMERDRV pfnCallback, const char *pszDesc, PPTMTIMERHC ppTimer);
600
601/**
602 * Creates an internal timer.
603 *
604 * @returns VBox status.
605 * @param pVM The VM to create the timer in.
606 * @param enmClock The clock to use on this timer.
607 * @param pfnCallback Callback function.
608 * @param pvUser User argument to be passed to the callback.
609 * @param pszDesc Pointer to description string which must stay around
610 * until the timer is fully destroyed (i.e. a bit after TMTimerDestroy()).
611 * @param ppTimer Where to store the timer on success.
612 */
613TMR3DECL(int) TMR3TimerCreateInternal(PVM pVM, TMCLOCK enmClock, PFNTMTIMERINT pfnCallback, void *pvUser, const char *pszDesc, PPTMTIMERHC ppTimer);
614
615/**
616 * Creates an external timer.
617 *
618 * @returns Timer handle on success.
619 * @returns NULL on failure.
620 * @param pVM The VM to create the timer in.
621 * @param enmClock The clock to use on this timer.
622 * @param pfnCallback Callback function.
623 * @param pvUser User argument.
624 * @param pszDesc Pointer to description string which must stay around
625 * until the timer is fully destroyed (i.e. a bit after TMTimerDestroy()).
626 */
627TMR3DECL(PTMTIMERHC) TMR3TimerCreateExternal(PVM pVM, TMCLOCK enmClock, PFNTMTIMEREXT pfnCallback, void *pvUser, const char *pszDesc);
628
629/**
630 * Destroy all timers owned by a device.
631 *
632 * @returns VBox status.
633 * @param pVM VM handle.
634 * @param pDevIns Device which timers should be destroyed.
635 */
636TMR3DECL(int) TMR3TimerDestroyDevice(PVM pVM, PPDMDEVINS pDevIns);
637
638
639/**
640 * Destroy all timers owned by a driver.
641 *
642 * @returns VBox status.
643 * @param pVM VM handle.
644 * @param pDrvIns Driver which timers should be destroyed.
645 */
646TMR3DECL(int) TMR3TimerDestroyDriver(PVM pVM, PPDMDRVINS pDrvIns);
647
648/**
649 * Saves the state of a timer to a saved state.
650 *
651 * @returns VBox status.
652 * @param pTimer Timer to save.
653 * @param pSSM Save State Manager handle.
654 */
655TMR3DECL(int) TMR3TimerSave(PTMTIMERHC pTimer, PSSMHANDLE pSSM);
656
657/**
658 * Loads the state of a timer from a saved state.
659 *
660 * @returns VBox status.
661 * @param pTimer Timer to restore.
662 * @param pSSM Save State Manager handle.
663 */
664TMR3DECL(int) TMR3TimerLoad(PTMTIMERHC pTimer, PSSMHANDLE pSSM);
665
666/**
667 * Schedules and runs any pending timers.
668 *
669 * This is normally called from a forced action handler in EMT.
670 *
671 * @param pVM The VM to run the timers for.
672 * @thread The emulation thread.
673 */
674TMR3DECL(void) TMR3TimerQueuesDo(PVM pVM);
675
676
677/** @} */
678#endif
679
680
681#ifdef IN_GC
682/** @defgroup grp_tm_gc The TM Guest Context API
683 * @ingroup grp_tm
684 * @{
685 */
686
687
688/** @} */
689#endif
690
691/** @} */
692
693__END_DECLS
694
695#endif
696
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