Changeset 57090 in vbox for trunk/include
- Timestamp:
- Jul 27, 2015 9:44:51 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 101813
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r57078 r57090 492 492 /** @internal */ 493 493 SUPDECL(uint64_t) SUPGetCpuHzFromGipForAsyncMode(PSUPGLOBALINFOPAGE pGip); 494 SUPDECL(bool) SUPIsTscFreqCompatible(uint64_t uCpuHz, uint64_t *puGipCpuHz, bool fRelax); 495 SUPDECL(bool) SUPIsTscFreqCompatibleEx(uint64_t uBaseCpuHz, uint64_t uCpuHz, bool fRelax); 496 494 497 495 498 /** … … 549 552 AssertFailed(); 550 553 return UINT64_MAX; 551 }552 553 554 /**555 * Worker for SUPIsTscFreqCompatible().556 *557 * @returns true if it's compatible, false otherwise.558 * @param uBaseCpuHz The reference CPU frequency of the system.559 * @param uCpuHz The CPU frequency to compare with the base.560 * @param fRelax Whether to use a more relaxed threshold (like561 * for when running in a virtualized environment).562 *563 * @remarks Don't use directly, use SUPIsTscFreqCompatible() instead. This is564 * to be used by tstGIP-2 or the like.565 *566 * @todo r=bird: There is no need to inline this, is there? Move to567 * SUPLibAll.cpp568 */569 DECLINLINE(bool) SUPIsTscFreqCompatibleEx(uint64_t uBaseCpuHz, uint64_t uCpuHz, bool fRelax)570 {571 if (uBaseCpuHz != uCpuHz)572 {573 /* Arbitrary tolerance threshold, tweak later if required, perhaps574 more tolerance on lower frequencies and less tolerance on higher. */575 uint16_t uThr = !fRelax ? 666 /* 0.15% */ : 125 /* 0.8% */;576 uint64_t uLo = uBaseCpuHz / uThr;577 uint64_t uHi = uBaseCpuHz + (uBaseCpuHz - uLo);578 if ( uCpuHz < uLo579 || uCpuHz > uHi)580 return false;581 }582 return true;583 }584 585 586 /**587 * Checks if the provided TSC frequency is close enough to the computed TSC588 * frequency of the host.589 *590 * @returns true if it's compatible, false otherwise.591 * @param uCpuHz The TSC frequency to check.592 * @param puGipCpuHz Where to store the GIP TSC frequency used593 * during the compatibility test - optional.594 * @param fRelax Whether to use a more relaxed threshold (like595 * for when running in a virtualized environment).596 *597 * @todo r=bird: There is no need to inline this, is there? Move to598 * SUPLibAll.cpp599 */600 DECLINLINE(bool) SUPIsTscFreqCompatible(uint64_t uCpuHz, uint64_t *puGipCpuHz, bool fRelax)601 {602 PSUPGLOBALINFOPAGE pGip = g_pSUPGlobalInfoPage;603 if ( pGip604 && pGip->u32Mode != SUPGIPMODE_ASYNC_TSC)605 {606 uint64_t uGipCpuHz = pGip->u64CpuHz;607 if (puGipCpuHz)608 *puGipCpuHz = uGipCpuHz;609 return SUPIsTscFreqCompatibleEx(uGipCpuHz, uCpuHz, fRelax);610 }611 return false;612 554 } 613 555
Note:
See TracChangeset
for help on using the changeset viewer.