Changeset 41931 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Jun 27, 2012 4:12:16 PM (13 years ago)
- Location:
- trunk/src/VBox/VMM/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/CPUMInternal.h
r41905 r41931 369 369 CPUMCTXMSRS GuestMsrs; 370 370 371 /** Pointer to the current hypervisor core context - R3Ptr. */372 R3PTRTYPE(PCPUMCTXCORE) pHyperCoreR3;373 /** Pointer to the current hypervisor core context - R0Ptr. */374 R0PTRTYPE(PCPUMCTXCORE) pHyperCoreR0;375 /** Pointer to the current hypervisor core context - RCPtr. */376 RCPTRTYPE(PCPUMCTXCORE) pHyperCoreRC;377 378 371 /** Use flags. 379 372 * These flags indicates both what is to be used and what has been used. … … 401 394 402 395 /** Align the structure on a 64-byte boundary. */ 403 uint8_t abPadding2[HC_ARCH_BITS == 32 ? 34 : 26];396 uint8_t abPadding2[HC_ARCH_BITS == 32 ? 48 : 46]; 404 397 } CPUMCPU; 405 398 /** Pointer to the CPUMCPU instance data residing in the shared VMCPU structure. */ -
trunk/src/VBox/VMM/include/CPUMInternal.mac
r41906 r41931 424 424 ; Other stuff. 425 425 ; 426 ; hypervisor core context.427 .pHyperCoreR3 RTR3PTR_RES 1428 .pHyperCoreR0 RTR0PTR_RES 1429 .pHyperCoreRC RTRCPTR_RES 1430 431 426 .fUseFlags resd 1 432 427 .fChanged resd 1 … … 437 432 438 433 %if RTHCPTR_CB == 8 439 .abPadding2 resb 26434 .abPadding2 resb 46 440 435 %else 441 .abPadding2 resb 34436 .abPadding2 resb 48 442 437 %endif 443 438
Note:
See TracChangeset
for help on using the changeset viewer.