VirtualBox

Changeset 57078 in vbox for trunk/include


Ignore:
Timestamp:
Jul 24, 2015 8:16:59 PM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
101800
Message:

sup,iprt: SUPIsHostVirtualized belongs in IPRT and does not need to be inlined. Created RTSystemIsInserideVM() with simple amd64+x86 implementation.

Location:
trunk/include
Files:
2 edited

Legend:

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

    r57071 r57078  
    3535#if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
    3636# include <iprt/asm-amd64-x86.h>
    37 # include <iprt/x86.h>
    3837#endif
    3938
     
    556555 * Worker for SUPIsTscFreqCompatible().
    557556 *
     557 * @returns true if it's compatible, false otherwise.
    558558 * @param   uBaseCpuHz      The reference CPU frequency of the system.
    559559 * @param   uCpuHz          The CPU frequency to compare with the base.
     
    561561 *                          for when running in a virtualized environment).
    562562 *
    563  * @returns true if it's compatible, false otherwise.
    564563 * @remarks Don't use directly, use SUPIsTscFreqCompatible() instead. This is
    565564 *          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
    566568 */
    567569DECLINLINE(bool) SUPIsTscFreqCompatibleEx(uint64_t uBaseCpuHz, uint64_t uCpuHz, bool fRelax)
     
    586588 * frequency of the host.
    587589 *
     590 * @returns true if it's compatible, false otherwise.
    588591 * @param   uCpuHz          The TSC frequency to check.
    589592 * @param   puGipCpuHz      Where to store the GIP TSC frequency used
    590  *                          during the compatibility test (can be NULL).
     593 *                          during the compatibility test - optional.
    591594 * @param   fRelax          Whether to use a more relaxed threshold (like
    592595 *                          for when running in a virtualized environment).
    593596 *
    594  * @returns true if it's compatible, false otherwise.
     597 * @todo    r=bird: There is no need to inline this, is there? Move to
     598 *          SUPLibAll.cpp
    595599 */
    596600DECLINLINE(bool) SUPIsTscFreqCompatible(uint64_t uCpuHz, uint64_t *puGipCpuHz, bool fRelax)
     
    613617/** @internal */
    614618SUPDECL(uint64_t) SUPReadTscWithDelta(PSUPGLOBALINFOPAGE pGip);
    615 
    616 /**
    617  * Checks if we are may be running in a virtualized environment.
    618  *
    619  * @returns true if the host system may be virtualized, false otherwise.
    620  */
    621 DECLINLINE(bool) SUPIsHostVirtualized(void)
    622 {
    623     Assert(ASMHasCpuId());
    624     return RT_BOOL(ASMCpuId_ECX(1) & X86_CPUID_FEATURE_ECX_HVP);
    625 }
    626619
    627620/**
  • trunk/include/iprt/system.h

    r56291 r57078  
    243243RTDECL(int) RTSystemShutdown(RTMSINTERVAL cMsDelay, uint32_t fFlags, const char *pszLogMsg);
    244244
     245/**
     246 * Checks if we're executing inside a virtual machine (VM).
     247 *
     248 * The current implemention is very simplistic and won't try to detect the
     249 * precense of a virtual machien monitor (VMM) unless it openly tells us it is
     250 * there.
     251 *
     252 * @returns true if inside a VM, false if on real hardware.
     253 *
     254 * @todo    If more information is needed, like which VMM it is and which
     255 *          version and stuch, add one or two  new APIs.
     256 */
     257RTDECL(bool) RTSystemIsInsideVM(void);
     258
    245259/** @} */
    246260
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