Changeset 21942 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Aug 3, 2009 2:39:00 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50627
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/CPUMR0.cpp
r21937 r21942 61 61 62 62 /* 63 * Check for sysenter if it's used.63 * Check for sysenter and syscall usage. 64 64 */ 65 65 if (ASMHasCpuId()) 66 66 { 67 /* 68 * SYSENTER/SYSEXIT 69 * 70 * Intel docs claim you should test both the flag and family, model & 71 * stepping because some Pentium Pro CPUs have the SEP cpuid flag set, 72 * but don't support it. AMD CPUs may support this feature in legacy 73 * mode, they've banned it from long mode. Since we switch to 32-bit 74 * mode when entering raw-mode context the feature would become 75 * accessible again on AMD CPUs, so we have to check regardless of 76 * host bitness. 77 */ 67 78 uint32_t u32CpuVersion; 68 79 uint32_t u32Dummy; 69 uint32_t u32Features;70 ASMCpuId(1, &u32CpuVersion, &u32Dummy, &u32Dummy, & u32Features);80 uint32_t fFeatures; 81 ASMCpuId(1, &u32CpuVersion, &u32Dummy, &u32Dummy, &fFeatures); 71 82 uint32_t u32Family = u32CpuVersion >> 8; 72 83 uint32_t u32Model = (u32CpuVersion >> 4) & 0xF; 73 84 uint32_t u32Stepping = u32CpuVersion & 0xF; 74 75 /* 76 * Intel docs claim you should test both the flag and family, model & stepping. 77 * Some Pentium Pro cpus have the SEP cpuid flag set, but don't support it. 78 */ 79 if ( (u32Features & X86_CPUID_FEATURE_EDX_SEP) 80 && !(u32Family == 6 && u32Model < 3 && u32Stepping < 3)) 85 if ( (fFeatures & X86_CPUID_FEATURE_EDX_SEP) 86 && ( u32Family != 6 /* (> pentium pro) */ 87 || u32Model >= 3 88 || u32Stepping >= 3 89 || !ASMIsIntelCpu()) 90 ) 81 91 { 82 92 /* … … 91 101 } 92 102 93 /** @todo check for AMD and syscall!!!!!! */ 103 /* 104 * SYSCALL/SYSRET 105 * 106 * This feature is indicated by the SEP bit returned in EDX by CPUID 107 * function 0x80000001. Intel CPUs only supports this feature in 108 * long mode. Since we're not running 64-bit guests in raw-mode there 109 * are no issues with 32-bit intel hosts. 110 */ 111 uint32_t cExt = 0; 112 ASMCpuId(0x80000000, &cExt, &u32Dummy, &u32Dummy, &u32Dummy); 113 if ( cExt >= 0x80000001 114 && cExt <= 0x8000ffff) 115 { 116 uint32_t fExtFeaturesEDX = ASMCpuId_EDX(0x80000001); 117 if (fExtFeaturesEDX & X86_CPUID_AMD_FEATURE_EDX_SEP) 118 { 119 #ifdef RT_ARCH_X86 120 # ifdef VBOX_WITH_HYBRID_32BIT_KERNEL 121 if (fExtFeaturesEDX & X86_CPUID_AMD_FEATURE_EDX_LONG_MODE) 122 # else 123 if (!ASMIsIntelCpu()) 124 # endif 125 #endif 126 { 127 uint64_t fEfer = ASMRdMsr(MSR_K6_EFER); 128 if (fEfer & MSR_K6_EFER_SCE) 129 { 130 pVM->cpum.s.fHostUseFlags |= CPUM_USE_SYSCALL; 131 Log(("CPUMR0Init: host uses syscall\n")); 132 } 133 } 134 } 135 } 94 136 } 95 137 -
trunk/src/VBox/VMM/VMMSwitcher.cpp
r20864 r21942 558 558 559 559 /* 560 * Insert relative jump to specified target it SYS ENTERisn't used by the host.560 * Insert relative jump to specified target it SYSCALL isn't used by the host. 561 561 */ 562 562 case FIX_NO_SYSCALL_JMP: … … 564 564 uint32_t offTrg = *u.pu32++; 565 565 Assert(offTrg < pSwitcher->cbCode); 566 if (!CPUMIsHostUsingSys Enter(pVM))566 if (!CPUMIsHostUsingSysCall(pVM)) 567 567 { 568 568 *uSrc.pu8++ = 0xe9; /* jmp rel32 */ -
trunk/src/VBox/VMM/VMMSwitcher/PAEand32Bit.mac
r18927 r21942 157 157 htg_no_sysenter: 158 158 159 FIXUP FIX_NO_SYSCALL_JMP, 0, htg_no_syscall - NAME(Start) ; this will insert a jmp htg_no_syscall if host doesn't use syscall. 160 ; clear MSR_K6_EFER_SCE. 161 mov ebx, edx ; save edx 162 mov ecx, MSR_K6_EFER 163 rdmsr ; edx:eax <- MSR[ecx] 164 and eax, ~MSR_K6_EFER_SCE 165 wrmsr 166 mov edx, ebx ; restore edx 167 jmp short htg_no_syscall 168 169 ALIGNCODE(16) 170 htg_no_syscall: 171 159 172 ;; handle use flags. 160 173 mov esi, [edx + CPUMCPU.fUseFlags] ; esi == use flags. … … 216 229 ; Store the hypervisor cr3 for later loading 217 230 mov ebp, [edx + CPUMCPU.Hyper.cr3] 218 231 219 232 ;; 220 233 ;; Load Intermediate memory context. … … 381 394 ; callees expect CPUM ptr 382 395 CPUM_FROM_CPUMCPU(edx) 383 396 384 397 %ifdef VBOX_WITH_STATISTICS 385 398 FIXUP FIX_GC_VM_OFF, 1, VM.StatSwitcherToGC … … 420 433 mov eax, dr3 421 434 mov [edx + CPUMCPU.Host.dr3], eax 422 435 423 436 ; load hyper DR0-7 424 437 mov ebx, [edx + CPUMCPU.Hyper.dr] … … 864 877 gth_sysenter_no: 865 878 866 ;; @todo AMD syscall 879 FIXUP FIX_NO_SYSCALL_JMP, 0, gth_syscall_no - NAME(Start) ; this will insert a jmp gth_syscall_no if host doesn't use syscall. 880 ; set MSR_K6_EFER_SCE. 881 mov ebx, edx ; save edx 882 mov ecx, MSR_K6_EFER 883 rdmsr 884 or eax, MSR_K6_EFER_SCE 885 wrmsr 886 mov edx, ebx ; restore edx 887 jmp short gth_syscall_no 888 889 ALIGNCODE(16) 890 gth_syscall_no: 867 891 868 892 ; Restore FPU if guest has used it.
Note:
See TracChangeset
for help on using the changeset viewer.