Changeset 13185 in vbox for trunk/src/recompiler
- Timestamp:
- Oct 10, 2008 9:26:06 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 37720
- Location:
- trunk/src/recompiler
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/VBoxRecompiler.c
r13144 r13185 139 139 static STAMCOUNTER gStatSelOutOfSyncStateBack[6]; 140 140 static STAMCOUNTER gStatFlushTBs; 141 /* in exec.c */ 142 extern uint32_t tlb_flush_count; 143 extern uint32_t tb_flush_count; 144 extern uint32_t tb_phys_invalidate_count; 141 145 #endif 142 146 … … 391 395 STAM_REG(pVM, &gStatSelOutOfSyncStateBack[4], STAMTYPE_COUNTER, "/REM/StateBack/SelOutOfSync/FS", STAMUNIT_OCCURENCES, "FS out of sync"); 392 396 STAM_REG(pVM, &gStatSelOutOfSyncStateBack[5], STAMTYPE_COUNTER, "/REM/StateBack/SelOutOfSync/GS", STAMUNIT_OCCURENCES, "GS out of sync"); 397 398 STAM_REG(pVM, &tb_flush_count, STAMTYPE_U32_RESET, "/REM/TbFlushCount", STAMUNIT_OCCURENCES, "tb_flush() calls"); 399 STAM_REG(pVM, &tb_phys_invalidate_count,STAMTYPE_U32_RESET, "/REM/TbPhysInvldCount", STAMUNIT_OCCURENCES, "tb_phys_invalidate() calls"); 400 STAM_REG(pVM, &tlb_flush_count, STAMTYPE_U32_RESET, "/REM/TlbFlushCount", STAMUNIT_OCCURENCES, "tlb_flush() calls"); 393 401 394 402 -
trunk/src/recompiler/exec.c
r11982 r13185 171 171 172 172 /* statistics */ 173 #ifndef VBOX 173 174 static int tlb_flush_count; 174 175 static int tb_flush_count; 175 #ifndef VBOX176 176 static int tb_phys_invalidate_count; 177 #endif /* !VBOX */ 177 #else /* VBOX */ 178 # ifdef VBOX_WITH_STATISTICS 179 uint32_t tlb_flush_count; 180 uint32_t tb_flush_count; 181 uint32_t tb_phys_invalidate_count; 182 # endif 183 #endif /* VBOX */ 178 184 179 185 static void page_init(void) … … 378 384 /* XXX: flush processor icache at this point if cache flush is 379 385 expensive */ 386 #if !defined(VBOX) || defined(VBOX_WITH_STATISTICS) 380 387 tb_flush_count++; 388 #endif 381 389 } 382 390 … … 559 567 tb->jmp_first = (TranslationBlock *)((long)tb | 2); /* fail safe */ 560 568 561 #if ndef VBOX569 #if !defined(VBOX) || defined(VBOX_WITH_STATISTICS) 562 570 tb_phys_invalidate_count++; 563 #endif /* !VBOX */571 #endif 564 572 } 565 573 … … 1377 1385 } 1378 1386 #endif 1387 #if !defined(VBOX) || defined(VBOX_WITH_STATISTICS) 1379 1388 tlb_flush_count++; 1389 #endif 1380 1390 } 1381 1391
Note:
See TracChangeset
for help on using the changeset viewer.