- Timestamp:
- Nov 19, 2009 3:52:31 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vm.h
r24722 r24799 211 211 struct PGMCPU s; 212 212 #endif 213 uint8_t padding[ 28*1024]; /* multiple of 4096 */213 uint8_t padding[32*1024]; /* multiple of 4096 */ 214 214 } pgm; 215 215 -
trunk/src/VBox/VMM/PGMInternal.h
r24793 r24799 1564 1564 /** The index of the current CPU, only valid if the set is open. */ 1565 1565 int32_t iCpu; 1566 #if HC_ARCH_BITS == 641567 1566 uint32_t alignment; 1568 #endif1569 1567 /** The entries. */ 1570 1568 PGMMAPSETENTRY aEntries[64]; … … 1574 1572 uint8_t aiHashTable[128]; 1575 1573 } PGMMAPSET; 1574 AssertCompileSizeAlignment(PGMMAPSET, 8); 1576 1575 /** Pointer to the mapping cache set. */ 1577 1576 typedef PGMMAPSET *PPGMMAPSET; … … 2972 2971 /** The guest's page directory pointer table, R0 pointer. */ 2973 2972 R0PTRTYPE(PX86PML4) pGstAmd64Pml4R0; 2973 #else 2974 RTR0PTR alignment6b; /**< alignment equalizer. */ 2974 2975 #endif 2975 2976 /** @} */ -
trunk/src/VBox/VMM/testcase/Makefile.kmk
r23672 r24799 98 98 tstVMStructGC_TEMPLATE = VBOXGCEXE 99 99 tstVMStructGC_DEFS = IN_VMM_RC IN_DIS IN_RT_RC IN_RT_GC 100 tstVMStructGC_DEFS.darwin.x86 = \ 101 VBOX_WITH_2X_4GB_ADDR_SPACE VBOX_WITH_2X_4GB_ADDR_SPACE_IN_RC \ 102 VBOX_WITH_HYBRID_32BIT_KERNEL VBOX_WITH_HYBRID_32BIT_KERNEL_IN_RC 100 103 ifdef VBOX_WITH_R0_LOGGING 101 104 tstVMStructGC_DEFS += VBOX_WITH_R0_LOGGING … … 106 109 tstVMStructSize_TEMPLATE= VBOXR3AUTOTST 107 110 tstVMStructSize_DEFS = IN_VMM_R3 IN_DIS 111 tstVMStructSize_DEFS.darwin.x86 = \ 112 VBOX_WITH_2X_4GB_ADDR_SPACE VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R3 \ 113 VBOX_WITH_HYBRID_32BIT_KERNEL VBOX_WITH_HYBRID_32BIT_KERNEL_IN_R3 108 114 tstVMStructSize_INCS = $(VBOX_PATH_VMM_SRC) $(VBOX_PATH_VMM_SRC)/PATM $(VBOX_VMM_TESTCASE_OUT_DIR) 109 115 tstVMStructSize_SOURCES = tstVMStructSize.cpp
Note:
See TracChangeset
for help on using the changeset viewer.