VirtualBox

Changeset 57090 in vbox for trunk/include


Ignore:
Timestamp:
Jul 27, 2015 9:44:51 AM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
101813
Message:

SUP: Moved SUPIsTscFreqCompatible(Ex) to SUPLibAll.cpp and made it not inlined.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/sup.h

    r57078 r57090  
    492492/** @internal  */
    493493SUPDECL(uint64_t) SUPGetCpuHzFromGipForAsyncMode(PSUPGLOBALINFOPAGE pGip);
     494SUPDECL(bool)     SUPIsTscFreqCompatible(uint64_t uCpuHz, uint64_t *puGipCpuHz, bool fRelax);
     495SUPDECL(bool)     SUPIsTscFreqCompatibleEx(uint64_t uBaseCpuHz, uint64_t uCpuHz, bool fRelax);
     496
    494497
    495498/**
     
    549552    AssertFailed();
    550553    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 (like
    561  *                          for when running in a virtualized environment).
    562  *
    563  * @remarks Don't use directly, use SUPIsTscFreqCompatible() instead. This is
    564  *          to be used by tstGIP-2 or the like.
    565  *
    566  * @todo    r=bird: There is no need to inline this, is there? Move to
    567  *          SUPLibAll.cpp
    568  */
    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, perhaps
    574            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 < uLo
    579             || 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 TSC
    588  * 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 used
    593  *                          during the compatibility test - optional.
    594  * @param   fRelax          Whether to use a more relaxed threshold (like
    595  *                          for when running in a virtualized environment).
    596  *
    597  * @todo    r=bird: There is no need to inline this, is there? Move to
    598  *          SUPLibAll.cpp
    599  */
    600 DECLINLINE(bool) SUPIsTscFreqCompatible(uint64_t uCpuHz, uint64_t *puGipCpuHz, bool fRelax)
    601 {
    602     PSUPGLOBALINFOPAGE pGip = g_pSUPGlobalInfoPage;
    603     if (   pGip
    604         && 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;
    612554}
    613555
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette