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