Changeset 71530 in vbox
- Timestamp:
- Mar 28, 2018 6:33:19 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 121506
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/VMM/VMMAll/IEMAllCImplSvmInstr.cpp.h ¶
r71307 r71530 1089 1089 */ 1090 1090 uint16_t offMsrpm; 1091 uint 32_tuMsrpmBit;1091 uint8_t uMsrpmBit; 1092 1092 int rc = HMSvmGetMsrpmOffsetAndBit(idMsr, &offMsrpm, &uMsrpmBit); 1093 1093 if (RT_SUCCESS(rc)) 1094 1094 { 1095 Assert(uMsrpmBit < 0x3fff);1095 Assert(uMsrpmBit == 0 || uMsrpmBit == 2 || uMsrpmBit == 4 || uMsrpmBit == 6); 1096 1096 Assert(offMsrpm < SVM_MSRPM_PAGES << X86_PAGE_4K_SHIFT); 1097 1097 if (fWrite)
Note:
See TracChangeset
for help on using the changeset viewer.