- Timestamp:
- Jun 4, 2008 6:01:34 PM (17 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMInternal.h
r9389 r9397 1623 1623 STAMCOUNTER StatCacheUncacheable; 1624 1624 # endif 1625 #elif HC_ARCH_BITS == 64 && GC_ARCH_BITS == 321625 #elif HC_ARCH_BITS == 64 1626 1626 uint32_t Alignment1; /**< Align the next member on a 64-bit boundrary. */ 1627 1627 #endif 1628 1628 /** The AVL tree for looking up a page by its HC physical address. */ 1629 1629 AVLOHCPHYSTREE HCPhysTree; 1630 uint32_t Alignment 3; /**< Align the next member on a 64-bit boundrary. */1630 uint32_t Alignment2; /**< Align the next member on a 64-bit boundrary. */ 1631 1631 /** Array of pages. (cMaxPages in length) 1632 1632 * The Id is the index into thist array. 1633 1633 */ 1634 #if GC_ARCH_BITS == 641635 uint32_t Alignment4;1636 #endif1637 1634 PGMPOOLPAGE aPages[PGMPOOL_IDX_FIRST]; 1638 1635 } PGMPOOL, *PPGMPOOL, **PPPGMPOOL; … … 2294 2291 /** GC: Which statistic this \#PF should be attributed to. */ 2295 2292 RCPTRTYPE(PSTAMPROFILE) pStatTrap0eAttributionGC; 2296 RT GCPTR padding0;2293 RTRCPTR padding0; 2297 2294 /** HC: Which statistic this \#PF should be attributed to. */ 2298 2295 R3R0PTRTYPE(PSTAMPROFILE) pStatTrap0eAttributionHC; 2299 RTHCPTR padding1;2296 RTHCPTR padding1; 2300 2297 STAMPROFILE StatGCTrap0e; /**< GC: PGMGCTrap0eHandler() profiling. */ 2301 2298 STAMPROFILE StatTrap0eCSAM; /**< Profiling of the Trap0eHandler body when the cause is CSAM. */ -
trunk/src/VBox/VMM/testcase/tstVMStructGC.cpp
r8557 r9397 493 493 GEN_CHECK_OFF(PGM, cZeroPages); 494 494 GEN_CHECK_OFF(PGM, cGuestModeChanges); 495 #ifdef VBOX_WITH_STATISTICS 496 GEN_CHECK_OFF(PGM, pStatTrap0eAttributionHC); 497 #endif 495 498 496 499 GEN_CHECK_SIZE(PGMMAPPING);
Note:
See TracChangeset
for help on using the changeset viewer.