Changeset 66303 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Mar 28, 2017 2:22:58 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 114231
- Location:
- trunk/src/VBox/ValidationKit/bootsectors
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-generated-1-template.c
r66286 r66303 1060 1060 } 1061 1061 1062 /* 1063 * Fill the memory with 0xcc. 1064 */ 1065 switch (cbOp + cbMissalign) 1066 { 1067 case 8: pThis->pbDataPg[X86_PAGE_SIZE - 8] = 0xcc; /* fall thru */ 1068 case 7: pThis->pbDataPg[X86_PAGE_SIZE - 7] = 0xcc; /* fall thru */ 1069 case 6: pThis->pbDataPg[X86_PAGE_SIZE - 6] = 0xcc; /* fall thru */ 1070 case 5: pThis->pbDataPg[X86_PAGE_SIZE - 5] = 0xcc; /* fall thru */ 1071 case 4: pThis->pbDataPg[X86_PAGE_SIZE - 4] = 0xcc; /* fall thru */ 1072 case 3: pThis->pbDataPg[X86_PAGE_SIZE - 3] = 0xcc; /* fall thru */ 1073 case 2: pThis->pbDataPg[X86_PAGE_SIZE - 2] = 0xcc; /* fall thru */ 1074 case 1: pThis->pbDataPg[X86_PAGE_SIZE - 1] = 0xcc; /* fall thru */ 1075 case 0: break; 1076 default: 1077 Bs3MemSet(&pThis->pbDataPg[X86_PAGE_SIZE - cbOp - cbMissalign], 0xcc, cbOp - cbMissalign); 1078 break; 1079 } 1080 1062 1081 return off; 1063 1082 } … … 1241 1260 1242 1261 case BS3CG1ENC_MODRM_Wps_Vps: 1262 case BS3CG1ENC_MODRM_Wpd_Vpd: 1243 1263 if (iEncoding == 0) 1244 1264 { … … 1267 1287 iEncoding++; 1268 1288 break; 1269 1270 1289 1271 1290 case BS3CG1ENC_MODRM_Gv_Ma: … … 1483 1502 1484 1503 case BS3CG1ENC_MODRM_Wps_Vps: 1504 case BS3CG1ENC_MODRM_Wpd_Vpd: 1485 1505 pThis->iRmOp = 0; 1486 1506 pThis->iRegOp = 1; -
trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-generated-1.h
r66286 r66303 46 46 BS3CG1OP_Wsd, 47 47 BS3CG1OP_Wps, 48 BS3CG1OP_Wpd, 48 49 49 50 BS3CG1OP_Gb, … … 51 52 BS3CG1OP_Vsd, 52 53 BS3CG1OP_Vps, 54 BS3CG1OP_Vpd, 53 55 54 56 BS3CG1OP_Ib, … … 80 82 BS3CG1ENC_MODRM_Wsd_Vsd, 81 83 BS3CG1ENC_MODRM_Wps_Vps, 84 BS3CG1ENC_MODRM_Wpd_Vpd, 82 85 83 86 BS3CG1ENC_MODRM_Gb_Eb, -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-ExtCtxGetSize.c
r66226 r66303 40 40 41 41 ASMCpuIdExSlow(1, 0, 0, 0, NULL, NULL, &fEcx, &fEdx); 42 #if 1/* To disable xsave/xrstor till IEM groks it... */42 #if 0 /* To disable xsave/xrstor till IEM groks it... */ 43 43 if (fEcx & X86_CPUID_FEATURE_ECX_XSAVE) 44 44 {
Note:
See TracChangeset
for help on using the changeset viewer.