VirtualBox

Changeset 87235 in vbox for trunk/src


Ignore:
Timestamp:
Jan 13, 2021 12:41:05 PM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
142191
Message:

SUP,IPRT: Adjustments for bugref:9898.

Location:
trunk/src/VBox
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/SUPLibAll.cpp

    r85213 r87235  
    4444
    4545#if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
    46 
    4746/**
    4847 * The slow case for SUPReadTsc where we need to apply deltas.
     
    218217    return uTsc;
    219218}
     219#endif /* RT_ARCH_AMD64 || RT_ARCH_X86 */
    220220
    221221
     
    230230    uint16_t iGipCpu;
    231231#ifdef IN_RING3
     232# if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
    232233    if (pGip->fGetGipCpu & SUPGIPGETCPU_IDTR_LIMIT_MASK_MAX_SET_CPUS)
    233234    {
     
    264265        iGipCpu = pGip->aiCpuFromApicId[idApic];
    265266    }
     267
     268# else
     269    int iCpuSet = RTMpCpuIdToSetIndex(RTMpCpuId());
     270    if (RT_LIKELY((unsigned)iCpuSet < RT_ELEMENTS(pGip->aiCpuFromCpuSetIdx)))
     271        iGipCpu = pGip->aiCpuFromCpuSetIdx[iCpuSet];
     272    else
     273        iGipCpu = UINT16_MAX;
     274# endif
     275
    266276#elif defined(IN_RING0)
    267277    /* Ring-0: Use use RTMpCpuId() (disables cli to avoid host OS assertions about unsafe CPU number usage). */
     
    281291    else
    282292        iGipCpu = UINT16_MAX;
     293
    283294#else
    284295# error "IN_RING3, IN_RC or IN_RING0 must be defined!"
     
    324335    return pGip->u64CpuHz;
    325336}
     337
    326338
    327339
     
    383395}
    384396
    385 #endif /* RT_ARCH_AMD64 || RT_ARCH_X86 */
    386 
  • trunk/src/VBox/HostDrivers/Support/testcase/tstInt.cpp

    r85506 r87235  
    3535#include <iprt/errcore.h>
    3636#include <VBox/param.h>
    37 #include <iprt/asm-amd64-x86.h>
     37#if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
     38# include <iprt/asm-amd64-x86.h>
     39#else
     40# define ASMReadTSC RTTimeSystemNanoTS
     41#endif
    3842#include <iprt/initterm.h>
    3943#include <iprt/stream.h>
  • trunk/src/VBox/Runtime/Makefile.kmk

    r87222 r87235  
    23032303VBoxRT_INCS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_INCS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
    23042304VBoxRT_LIBS                    = \
    2305         $(SDK_VBOX_LZF_LIBS)
    2306 if1of ($(KBUILD_TARGET_ARCH), amd64 x86)
    2307 VBoxRT_LIBS                   += \
     2305        $(SDK_VBOX_LZF_LIBS) \
    23082306        $(PATH_STAGE_LIB)/SUPR3$(VBOX_SUFF_LIB)
    2309 endif
    23102307ifndef SDK_VBOX_LIBXML2_LIBS
    23112308 VBoxRT_LIBS                  += \
  • trunk/src/VBox/Runtime/VBox/VBoxRTDeps.cpp

    r85164 r87235  
    2929*   Header Files                                                                                                                 *
    3030*********************************************************************************************************************************/
    31 #ifndef RT_NO_GIP
    32 # include <VBox/sup.h>
    33 #endif
     31#include <VBox/sup.h>
    3432#include <iprt/asm.h>
    3533#include <iprt/assert.h>
     
    5957struct CLANG11NONSENSE { PFNRT pfn; } g_VBoxRTDeps[] =
    6058{
    61 #ifndef RT_NO_GIP
    6259    { (PFNRT)SUPR3Init },
    6360    { (PFNRT)SUPR3PageAllocEx },
    6461    { (PFNRT)SUPR3LoadVMM },
    6562    { (PFNRT)SUPSemEventCreate },
    66     { (PFNRT)SUPTracerFireProbe },
     63    { (PFNRT)SUPIsTscFreqCompatibleEx },
     64#if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
     65    { (PFNRT)SUPTracerFireProbe }, /** @todo port me @bugref{9898} ? */
    6766    { (PFNRT)SUPGetTscDeltaSlow },
    6867#endif
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