Changeset 66403 in vbox for trunk/include/VBox
- Timestamp:
- Apr 3, 2017 3:21:26 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 114356
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/cpum.h
r66327 r66403 1042 1042 uint32_t fPadding : 23; 1043 1043 1044 /** Hardware virtualization features. */ 1044 /** Hardware virtualization features. 1045 * 1046 * @todo r=bird: Please drop the unions and flatten this as much as possible. 1047 * Prefix the names with 'Svm' 'Vmx' if there is any confusion. Group the 1048 * flags into common and specific bunches. 1049 * 1050 */ 1045 1051 union 1046 1052 { … … 1546 1552 VMMDECL(uint32_t) CPUMGetGuestCodeBits(PVMCPU pVCpu); 1547 1553 VMMDECL(DISCPUMODE) CPUMGetGuestDisMode(PVMCPU pVCpu); 1554 VMMDECL(uint32_t) CPUMGetGuestMxCsrMask(PVM pVM); 1548 1555 VMMDECL(uint64_t) CPUMGetGuestScalableBusFrequency(PVM pVM); 1549 1556 VMMDECL(int) CPUMGetValidateEfer(PVM pVM, uint64_t uCr0, uint64_t uOldEfer, uint64_t uNewEfer, … … 1591 1598 VMMR3DECL(CPUMCPUVENDOR) CPUMR3CpuIdDetectVendorEx(uint32_t uEAX, uint32_t uEBX, uint32_t uECX, uint32_t uEDX); 1592 1599 VMMR3DECL(const char *) CPUMR3CpuVendorName(CPUMCPUVENDOR enmVendor); 1600 VMMR3DECL(uint32_t) CPUMR3DeterminHostMxCsrMask(void); 1593 1601 1594 1602 VMMR3DECL(int) CPUMR3MsrRangesInsert(PVM pVM, PCCPUMMSRRANGE pNewRange);
Note:
See TracChangeset
for help on using the changeset viewer.