Changeset 90597 in vbox for trunk/include
- Timestamp:
- Aug 10, 2021 1:08:35 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146208
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/gvm.h
r90380 r90597 193 193 struct GVMMPERVM s; 194 194 #endif 195 uint8_t padding[ 256];195 uint8_t padding[4352]; 196 196 } gvmm; 197 197 -
trunk/include/VBox/vmm/gvm.mac
r90380 r90597 67 67 68 68 alignb 64 69 .gvmm resb 25669 .gvmm resb 4352 70 70 alignb 64 71 71 .gmm resb 1024 -
trunk/include/VBox/vmm/gvmm.h
r85121 r90597 188 188 GVMMR0DECL(PVMCC) GVMMR0GetVMByEMT(RTNATIVETHREAD hEMT); 189 189 GVMMR0DECL(PGVMCPU) GVMMR0GetGVCpuByEMT(RTNATIVETHREAD hEMT); 190 GVMMR0DECL(PGVMCPU) GVMMR0GetGVCpuByGVMandEMT(PGVM pGVM, RTNATIVETHREAD hEMT); 190 191 GVMMR0DECL(int) GVMMR0SchedHalt(PGVM pGVM, PGVMCPU pGVCpu, uint64_t u64ExpireGipTime); 191 192 GVMMR0DECL(int) GVMMR0SchedHaltReq(PGVM pGVM, VMCPUID idCpu, uint64_t u64ExpireGipTime); -
trunk/include/VBox/vmm/vm.h
r90500 r90597 275 275 /** Trace groups enable flags. */ 276 276 uint32_t fTraceGroups; /* 64 / 44 */ 277 /** State data for use by ad hoc profiling. */ 278 uint32_t uAdHoc; 277 /** Number of collisions hashing the ring-0 EMT handle. */ 278 uint8_t cEmtHashCollisions; 279 uint8_t abAdHoc[3]; 279 280 /** Profiling samples for use by ad hoc profiling. */ 280 281 STAMPROFILEADV aStatAdHoc[8]; /* size: 40*8 = 320 */ … … 1240 1241 /** @} */ 1241 1242 1243 /** Max EMT hash lookup collisions (in GVMM). */ 1244 uint8_t cMaxEmtHashCollisions; 1245 1242 1246 /** Padding - the unions must be aligned on a 64 bytes boundary. */ 1243 uint8_t abAlignment3[HC_ARCH_BITS == 64 ? 2 4 : 52];1247 uint8_t abAlignment3[HC_ARCH_BITS == 64 ? 23 : 51]; 1244 1248 1245 1249 /** CPUM part. */ -
trunk/include/VBox/vmm/vm.mac
r90500 r90597 83 83 alignb 64 84 84 .fTraceGroups resd 1 85 .uAdHoc resd 1 85 .cEmtHashCollisions resb 1 86 .abAdHoc resb 3 86 87 alignb 8 87 88 .aStatAdHoc resb STAMPROFILEADV_size * 8
Note:
See TracChangeset
for help on using the changeset viewer.