VirtualBox

Changeset 59243 in vbox for trunk/src/VBox/Runtime/generic


Ignore:
Timestamp:
Jan 3, 2016 2:42:27 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
104871
Message:

Several fixes to get RuntimeR3 building on SPARC again (required for vbox-img used by the OVM folks):

  1. Generic implementation for RTSystemIsInsideVM returning always false
  2. Add non assembly version for the zero memory objects g_abRTZero* for use on non x86/amd64 architectures where we don't have yasm (The code is not compiled on x86/amd64 because of better optimized assembler variants available)
  3. Compile fix for bignum.cpp on sparc64 (no idea whether it is correct)
  4. Remove superfluous ASMByteSwapU64 in asm-fake.cpp (generic variant defined in include/iprt/asm.h)
File:
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/generic/RTSystemIsInsideVM-generic.cpp

    r59242 r59243  
    3232#include <iprt/system.h>
    3333
    34 #include <iprt/asm-amd64-x86.h>
    35 #include <iprt/x86.h>
    36 
    3734
    3835RTDECL(bool) RTSystemIsInsideVM(void)
    3936{
    40     if (ASMHasCpuId())
    41     {
    42         if (ASMCpuId_ECX(1) & X86_CPUID_FEATURE_ECX_HVP)
    43             return true;
    44     }
    4537    return false;
    4638}
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