Changeset 46842 in vbox
- Timestamp:
- Jun 27, 2013 1:34:56 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 86792
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/hm_svm.h
r46779 r46842 57 57 /** Bit 7 - DecodeAssist - Indicate decode assist is supported. */ 58 58 #define AMD_CPUID_SVM_FEATURE_EDX_DECODE_ASSIST RT_BIT(7) 59 /** Where did we get this from? */60 #define AMD_CPUID_SVM_FEATURE_EDX_SSE_3_5_DISABLE RT_BIT(9)61 59 /** Bit 10 - PauseFilter - Indicates support for the PAUSE intercept filter. */ 62 60 #define AMD_CPUID_SVM_FEATURE_EDX_PAUSE_FILTER RT_BIT(10) … … 64 62 * intercept filter cycle count threshold. */ 65 63 #define AMD_CPUID_SVM_FEATURE_EDX_PAUSE_FILTER_THRESHOLD RT_BIT(12) 64 /** Bit 13 - AVIC - Advanced Virtual Interrupt Controller. */ 65 #define AMD_CPUID_SVM_FEATURE_EDX_AVIC RT_BIT(13) 66 66 /** @} */ 67 67 -
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r46832 r46842 2178 2178 SVMEVENT Event; 2179 2179 Event.u = 0; 2180 if (pVCpu->hm.s.Event.fPending) /* First, inject any pending HM events. */2180 if (pVCpu->hm.s.Event.fPending) /* First, inject any pending HM events. */ 2181 2181 { 2182 2182 Event.u = pVCpu->hm.s.Event.u64IntrInfo; -
trunk/src/VBox/VMM/VMMR3/HM.cpp
r46840 r46842 1398 1398 HMSVM_REPORT_FEATURE(AMD_CPUID_SVM_FEATURE_EDX_FLUSH_BY_ASID), 1399 1399 HMSVM_REPORT_FEATURE(AMD_CPUID_SVM_FEATURE_EDX_DECODE_ASSIST), 1400 HMSVM_REPORT_FEATURE(AMD_CPUID_SVM_FEATURE_EDX_SSE_3_5_DISABLE),1401 1400 HMSVM_REPORT_FEATURE(AMD_CPUID_SVM_FEATURE_EDX_PAUSE_FILTER), 1402 1401 HMSVM_REPORT_FEATURE(AMD_CPUID_SVM_FEATURE_EDX_PAUSE_FILTER_THRESHOLD), 1402 HMSVM_REPORT_FEATURE(AMD_CPUID_SVM_FEATURE_EDX_AVIC), 1403 1403 #undef HMSVM_REPORT_FEATURE 1404 1404 };
Note:
See TracChangeset
for help on using the changeset viewer.