VirtualBox

Ignore:
Timestamp:
Dec 15, 2022 11:05:52 PM (2 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
154899
Message:

ValKit/bs3-cpu-basic-2: Added a test of the RF flag after hitting an instruction breakpoint. bugref:9898

File:
1 edited

Legend:

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

    r97695 r97819  
    49914991    BS3TRAPFRAME            TrapCtx;
    49924992    BS3REGCTX               Ctx;
     4993    BS3REGCTX               Ctx2;
    49934994    BS3REGCTX               CtxExpected;
    49944995    unsigned                iTest;
     
    50065007    /* make sure they're allocated  */
    50075008    Bs3MemZero(&Ctx, sizeof(Ctx));
    5008     Bs3MemZero(&CtxExpected, sizeof(Ctx));
     5009    Bs3MemZero(&Ctx2, sizeof(Ctx2));
     5010    Bs3MemZero(&CtxExpected, sizeof(CtxExpected));
    50095011    Bs3MemZero(&TrapCtx, sizeof(TrapCtx));
    50105012
     
    50125014
    50135015    //if (!BS3_MODE_IS_64BIT_SYS(bMode) && bMode != BS3_MODE_PP32_16) return 0xff;
    5014     //if (bMode != BS3_MODE_LM64) return 0xff;
     5016    //if (bMode != BS3_MODE_PE32_16) return 0xff;
    50155017
    50165018    /*
     
    53145316                    RTSEL    const uDstSs    = s_aSubTests[iSubTest].uDstSs;
    53155317                    uint64_t       uDstRspExpect, uDstRspPush;
     5318                    uint16_t       cErrors;
    53165319
    53175320                    Ctx.ss = s_aSubTests[iSubTest].uStartSs;
     
    54985501                    g_usBs3TestStep++; /* 6 */
    54995502
    5500                     /* Again with a single globally enabled breakpoint and serveral other types of breakpoints configured but not enabled. */
     5503                    /* Again with a single globally enabled breakpoint and serveral other types of breakpoints
     5504                       configured but not enabled. */
    55015505                    //Bs3TestPrintf("bp 2/g+...\n");
     5506                    cErrors = Bs3TestSubErrorCount();
    55025507                    Bs3RegSetDr0(uFlatDst);
    55035508                    Bs3RegSetDr1(uFlatDst);
     
    55225527                    g_usBs3TestStep++; /* 7 */
    55235528
     5529                    /* Now resume it with lots of execution breakpoints configured. */
     5530                    if (s_aSubTests[iSubTest].iXcpt < 0 && Bs3TestSubErrorCount() == cErrors)
     5531                    {
     5532                        Bs3MemCpy(&Ctx2, &TrapCtx.Ctx, sizeof(Ctx2));
     5533                        Ctx2.rflags.u32 |= X86_EFL_RF;
     5534                        //Bs3TestPrintf("bp 3/g+rf %04RX16:%04RX64 efl=%RX32 ds=%04RX16...\n", Ctx2.cs, Ctx2.rip.u, Ctx2.rflags.u32, Ctx2.ds);
     5535                        Bs3RegSetDr6(X86_DR6_INIT_VAL);
     5536                        Bs3RegSetDr7(X86_DR7_INIT_VAL
     5537                                     | X86_DR7_RW(0, X86_DR7_RW_EO) | X86_DR7_LEN(0, X86_DR7_LEN_BYTE)
     5538                                     | X86_DR7_RW(1, X86_DR7_RW_EO) | X86_DR7_LEN(1, X86_DR7_LEN_BYTE) | X86_DR7_L_G(1)
     5539                                     | X86_DR7_RW(2, X86_DR7_RW_EO) | X86_DR7_LEN(2, X86_DR7_LEN_BYTE) | X86_DR7_G(2)
     5540                                     | X86_DR7_RW(3, X86_DR7_RW_EO) | X86_DR7_LEN(3, X86_DR7_LEN_BYTE) | X86_DR7_G(3)
     5541                                     );
     5542                        Bs3TrapSetJmpAndRestore(&Ctx2, &TrapCtx);
     5543                        Bs3RegSetDr7(X86_DR7_INIT_VAL);
     5544                        bs3CpuBasic2_CompareUdCtx(&TrapCtx, &CtxExpected);
     5545                        bs3CpuBasic2_CheckDr6InitVal();
     5546                    }
     5547                    g_usBs3TestStep++; /* 8 */
     5548
    55245549                    /* Now do single stepping: */
    55255550                    //Bs3TestPrintf("stepping...\n");
     
    55425567                    Ctx.rflags.u16        &= ~X86_EFL_TF;
    55435568                    CtxExpected.rflags.u16 = Ctx.rflags.u16;
    5544                     g_usBs3TestStep++; /* 8 */
     5569                    g_usBs3TestStep++; /* 9 */
    55455570
    55465571                    /* Single step with B0-B3 set to check that they're not preserved
     
    55605585                    Ctx.rflags.u16        &= ~X86_EFL_TF;
    55615586                    CtxExpected.rflags.u16 = Ctx.rflags.u16;
    5562                     g_usBs3TestStep++; /* 9 */
     5587                    g_usBs3TestStep++; /* 10 */
    55635588
    55645589                }
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