Changeset 104718 in vbox for trunk/src/VBox/ValidationKit/bootsectors
- Timestamp:
- May 18, 2024 12:56:25 AM (9 months ago)
- Location:
- trunk/src/VBox/ValidationKit/bootsectors
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-instr-3.c32
r104717 r104718 601 601 * in and does the native recompilation (currently around 16 times). 602 602 */ 603 #define BS3_SKIPIT_AVG_SKIP 26 603 #define BS3_SKIPIT_AVG_SKIP 26 604 #define BS3_SKIPIT_REPORT_COUNT 150000 604 605 #undef BS3_SKIPIT_DO_SKIP 605 606 #undef BS3_SKIPIT_DO_ARGS … … 660 661 ++g_cSkipped; 661 662 662 if (++g_cSeen % 25000== 0)663 if (++g_cSeen % BS3_SKIPIT_REPORT_COUNT == 0) 663 664 bs3CpuInstr3_ShowTallies(); 664 665 return fSkip; -
trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-instr-4.c32
r104708 r104718 613 613 * in and does the native recompilation (currently around 16 times). 614 614 */ 615 #define BS3_SKIPIT_AVG_SKIP 26 615 #define BS3_SKIPIT_AVG_SKIP 26 616 #define BS3_SKIPIT_REPORT_COUNT 150000 616 617 #undef BS3_SKIPIT_DO_SKIP 617 618 #undef BS3_SKIPIT_DO_ARGS … … 672 673 ++g_cSkipped; 673 674 674 if (++g_cSeen % 25000== 0)675 if (++g_cSeen % BS3_SKIPIT_REPORT_COUNT == 0) 675 676 bs3CpuInstrX_ShowTallies(); 676 677 return fSkip;
Note:
See TracChangeset
for help on using the changeset viewer.