Changeset 101428 in vbox for trunk/include/VBox
- Timestamp:
- Oct 13, 2023 5:39:12 AM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/cpum-x86-amd64.h
r101309 r101428 985 985 /** SVM: Supports GMET (Guest Mode Execute Trap Extension). */ 986 986 uint32_t fSvmGmet : 1; 987 /** SVM: Supports AVIC in x2APIC mode. */ 988 uint32_t fSvmX2Avic : 1; 987 989 /** SVM: Supports SSSCheck (SVM Supervisor Shadow Stack). */ 988 990 uint32_t fSvmSSSCheck : 1; 989 991 /** SVM: Supports SPEC_CTRL virtualization. */ 990 992 uint32_t fSvmSpecCtrl : 1; 993 /** SVM: Supports Read-Only Guest Page Table feature. */ 994 uint32_t fSvmRoGpt : 1; 991 995 /** SVM: Supports HOST_MCE_OVERRIDE. */ 992 996 uint32_t fSvmHostMceOverride : 1; 993 997 /** SVM: Supports TlbiCtl (INVLPGB/TLBSYNC in VMCB and TLBSYNC intercept). */ 994 998 uint32_t fSvmTlbiCtl : 1; 999 /** SVM: Supports NMI virtualization. */ 1000 uint32_t fSvmVNmi : 1; 1001 /** SVM: Supports IBS virtualizaiton. */ 1002 uint32_t fSvmIbsVirt : 1; 1003 /** SVM: Supports Extended LVT AVIC access changes. */ 1004 uint32_t fSvmExtLvtAvicAccessChg : 1; 1005 /** SVM: Supports Guest VMCB address check. */ 1006 uint32_t fSvmNstVirtVmcbAddrChk : 1; 1007 /** SVM: Supports Bus Lock Threshold. */ 1008 uint32_t fSvmBusLockThreshold : 1; 995 1009 /** SVM: Padding / reserved for future features (64 bits total w/ max ASID). */ 996 uint32_t fSvmPadding0 : 14;1010 uint32_t fSvmPadding0 : 7; 997 1011 /** SVM: Maximum supported ASID. */ 998 1012 uint32_t uSvmMaxAsid;
Note:
See TracChangeset
for help on using the changeset viewer.