- Timestamp:
- Jan 13, 2021 12:41:05 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142191
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPLibAll.cpp
r85213 r87235 44 44 45 45 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) 46 47 46 /** 48 47 * The slow case for SUPReadTsc where we need to apply deltas. … … 218 217 return uTsc; 219 218 } 219 #endif /* RT_ARCH_AMD64 || RT_ARCH_X86 */ 220 220 221 221 … … 230 230 uint16_t iGipCpu; 231 231 #ifdef IN_RING3 232 # if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) 232 233 if (pGip->fGetGipCpu & SUPGIPGETCPU_IDTR_LIMIT_MASK_MAX_SET_CPUS) 233 234 { … … 264 265 iGipCpu = pGip->aiCpuFromApicId[idApic]; 265 266 } 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 266 276 #elif defined(IN_RING0) 267 277 /* Ring-0: Use use RTMpCpuId() (disables cli to avoid host OS assertions about unsafe CPU number usage). */ … … 281 291 else 282 292 iGipCpu = UINT16_MAX; 293 283 294 #else 284 295 # error "IN_RING3, IN_RC or IN_RING0 must be defined!" … … 324 335 return pGip->u64CpuHz; 325 336 } 337 326 338 327 339 … … 383 395 } 384 396 385 #endif /* RT_ARCH_AMD64 || RT_ARCH_X86 */386 -
trunk/src/VBox/HostDrivers/Support/testcase/tstInt.cpp
r85506 r87235 35 35 #include <iprt/errcore.h> 36 36 #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 38 42 #include <iprt/initterm.h> 39 43 #include <iprt/stream.h> -
trunk/src/VBox/Runtime/Makefile.kmk
r87222 r87235 2303 2303 VBoxRT_INCS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_INCS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) 2304 2304 VBoxRT_LIBS = \ 2305 $(SDK_VBOX_LZF_LIBS) 2306 if1of ($(KBUILD_TARGET_ARCH), amd64 x86) 2307 VBoxRT_LIBS += \ 2305 $(SDK_VBOX_LZF_LIBS) \ 2308 2306 $(PATH_STAGE_LIB)/SUPR3$(VBOX_SUFF_LIB) 2309 endif2310 2307 ifndef SDK_VBOX_LIBXML2_LIBS 2311 2308 VBoxRT_LIBS += \ -
trunk/src/VBox/Runtime/VBox/VBoxRTDeps.cpp
r85164 r87235 29 29 * Header Files * 30 30 *********************************************************************************************************************************/ 31 #ifndef RT_NO_GIP 32 # include <VBox/sup.h> 33 #endif 31 #include <VBox/sup.h> 34 32 #include <iprt/asm.h> 35 33 #include <iprt/assert.h> … … 59 57 struct CLANG11NONSENSE { PFNRT pfn; } g_VBoxRTDeps[] = 60 58 { 61 #ifndef RT_NO_GIP62 59 { (PFNRT)SUPR3Init }, 63 60 { (PFNRT)SUPR3PageAllocEx }, 64 61 { (PFNRT)SUPR3LoadVMM }, 65 62 { (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} ? */ 67 66 { (PFNRT)SUPGetTscDeltaSlow }, 68 67 #endif
Note:
See TracChangeset
for help on using the changeset viewer.