VirtualBox

Ignore:
Timestamp:
Nov 16, 2022 11:31:13 PM (2 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
154613
Message:

ValKit/bs3-cpu-basic-2: AMD adjustments for the near return tests. bugref:9898

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-basic-2-x0.c

    r97579 r97580  
    48394839            { 32,  true,  0, bs3CpuBasic2_retn_i0_opsize__ud2_c64, },
    48404840        };
     4841        BS3CPUVENDOR const enmCpuVendor = Bs3GetCpuVendor();
     4842        bool const         fFix64OpSize = enmCpuVendor == BS3CPUVENDOR_INTEL; /** @todo what does VIA do? */
    48414843
    48424844        /* Prepare a copy of the UD2 instructions in low memory for opsize prefixed tests. */
     
    48674869            CtxExpected.rip.u = Ctx.rip.u + (int64_t)(int8_t)fpbCode[-1];
    48684870            CtxExpected.cs    = Ctx.cs;
    4869             if (!s_aTests[iTest].fOpSizePfx)
     4871            if (!s_aTests[iTest].fOpSizePfx || fFix64OpSize)
    48704872                CtxExpected.rsp.u = Ctx.rsp.u + s_aTests[iTest].cbImm + 8;
    48714873            else
    48724874            {
    4873                 CtxExpected.rsp.u  = Ctx.rsp.u + s_aTests[iTest].cbImm + 8;
     4875                CtxExpected.rsp.u  = Ctx.rsp.u + s_aTests[iTest].cbImm + 2;
    48744876                CtxExpected.rip.u &= UINT16_MAX;
    48754877            }
     
    48774879            Bs3TestPrintf("cs:rip=%04RX16:%04RX64 -> %04RX16:%04RX64\n", Ctx.cs, Ctx.rip.u, CtxExpected.cs, CtxExpected.rip.u);
    48784880            //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);
    48804882            Bs3TrapSetJmpAndRestore(&Ctx, &TrapCtx);
    48814883            bs3CpuBasic2_CompareUdCtx(&TrapCtx, &CtxExpected);
     
    48874889            Ctx.rflags.u16        |= X86_EFL_TF;
    48884890            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);
    48904892            Bs3TrapSetJmpAndRestore(&Ctx, &TrapCtx);
    48914893            bs3CpuBasic2_CompareDbCtx(&TrapCtx, &CtxExpected, X86_DR6_BS);
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette