Changeset 97819 in vbox for trunk/src/VBox/ValidationKit/bootsectors
- Timestamp:
- Dec 15, 2022 11:05:52 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154899
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-basic-2-x0.c
r97695 r97819 4991 4991 BS3TRAPFRAME TrapCtx; 4992 4992 BS3REGCTX Ctx; 4993 BS3REGCTX Ctx2; 4993 4994 BS3REGCTX CtxExpected; 4994 4995 unsigned iTest; … … 5006 5007 /* make sure they're allocated */ 5007 5008 Bs3MemZero(&Ctx, sizeof(Ctx)); 5008 Bs3MemZero(&CtxExpected, sizeof(Ctx)); 5009 Bs3MemZero(&Ctx2, sizeof(Ctx2)); 5010 Bs3MemZero(&CtxExpected, sizeof(CtxExpected)); 5009 5011 Bs3MemZero(&TrapCtx, sizeof(TrapCtx)); 5010 5012 … … 5012 5014 5013 5015 //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; 5015 5017 5016 5018 /* … … 5314 5316 RTSEL const uDstSs = s_aSubTests[iSubTest].uDstSs; 5315 5317 uint64_t uDstRspExpect, uDstRspPush; 5318 uint16_t cErrors; 5316 5319 5317 5320 Ctx.ss = s_aSubTests[iSubTest].uStartSs; … … 5498 5501 g_usBs3TestStep++; /* 6 */ 5499 5502 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. */ 5501 5505 //Bs3TestPrintf("bp 2/g+...\n"); 5506 cErrors = Bs3TestSubErrorCount(); 5502 5507 Bs3RegSetDr0(uFlatDst); 5503 5508 Bs3RegSetDr1(uFlatDst); … … 5522 5527 g_usBs3TestStep++; /* 7 */ 5523 5528 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 5524 5549 /* Now do single stepping: */ 5525 5550 //Bs3TestPrintf("stepping...\n"); … … 5542 5567 Ctx.rflags.u16 &= ~X86_EFL_TF; 5543 5568 CtxExpected.rflags.u16 = Ctx.rflags.u16; 5544 g_usBs3TestStep++; /* 8*/5569 g_usBs3TestStep++; /* 9 */ 5545 5570 5546 5571 /* Single step with B0-B3 set to check that they're not preserved … … 5560 5585 Ctx.rflags.u16 &= ~X86_EFL_TF; 5561 5586 CtxExpected.rflags.u16 = Ctx.rflags.u16; 5562 g_usBs3TestStep++; /* 9*/5587 g_usBs3TestStep++; /* 10 */ 5563 5588 5564 5589 }
Note:
See TracChangeset
for help on using the changeset viewer.