Changeset 97580 in vbox for trunk/src/VBox/ValidationKit/bootsectors
- Timestamp:
- Nov 16, 2022 11:31:13 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154613
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-basic-2-x0.c
r97579 r97580 4839 4839 { 32, true, 0, bs3CpuBasic2_retn_i0_opsize__ud2_c64, }, 4840 4840 }; 4841 BS3CPUVENDOR const enmCpuVendor = Bs3GetCpuVendor(); 4842 bool const fFix64OpSize = enmCpuVendor == BS3CPUVENDOR_INTEL; /** @todo what does VIA do? */ 4841 4843 4842 4844 /* Prepare a copy of the UD2 instructions in low memory for opsize prefixed tests. */ … … 4867 4869 CtxExpected.rip.u = Ctx.rip.u + (int64_t)(int8_t)fpbCode[-1]; 4868 4870 CtxExpected.cs = Ctx.cs; 4869 if (!s_aTests[iTest].fOpSizePfx )4871 if (!s_aTests[iTest].fOpSizePfx || fFix64OpSize) 4870 4872 CtxExpected.rsp.u = Ctx.rsp.u + s_aTests[iTest].cbImm + 8; 4871 4873 else 4872 4874 { 4873 CtxExpected.rsp.u = Ctx.rsp.u + s_aTests[iTest].cbImm + 8;4875 CtxExpected.rsp.u = Ctx.rsp.u + s_aTests[iTest].cbImm + 2; 4874 4876 CtxExpected.rip.u &= UINT16_MAX; 4875 4877 } … … 4877 4879 Bs3TestPrintf("cs:rip=%04RX16:%04RX64 -> %04RX16:%04RX64\n", Ctx.cs, Ctx.rip.u, CtxExpected.cs, CtxExpected.rip.u); 4878 4880 //Bs3TestPrintf("ss:rsp=%04RX16:%04RX64\n", Ctx.ss, Ctx.rsp.u); 4879 bs3CpuBasic2_retn_PrepStack(StkPtr, &CtxExpected, s_aTests[iTest].fOpSizePfx ? 8: 8);4881 bs3CpuBasic2_retn_PrepStack(StkPtr, &CtxExpected, s_aTests[iTest].fOpSizePfx && !fFix64OpSize ? 2 : 8); 4880 4882 Bs3TrapSetJmpAndRestore(&Ctx, &TrapCtx); 4881 4883 bs3CpuBasic2_CompareUdCtx(&TrapCtx, &CtxExpected); … … 4887 4889 Ctx.rflags.u16 |= X86_EFL_TF; 4888 4890 CtxExpected.rflags.u16 = Ctx.rflags.u16; 4889 bs3CpuBasic2_retn_PrepStack(StkPtr, &CtxExpected, s_aTests[iTest].fOpSizePfx ? 8: 8);4891 bs3CpuBasic2_retn_PrepStack(StkPtr, &CtxExpected, s_aTests[iTest].fOpSizePfx && !fFix64OpSize ? 2 : 8); 4890 4892 Bs3TrapSetJmpAndRestore(&Ctx, &TrapCtx); 4891 4893 bs3CpuBasic2_CompareDbCtx(&TrapCtx, &CtxExpected, X86_DR6_BS);
Note:
See TracChangeset
for help on using the changeset viewer.