Changeset 55004 in vbox for trunk/include
- Timestamp:
- Mar 30, 2015 11:14:04 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99275
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/cpum.mac
r54999 r55004 136 136 137 137 struc CPUMCTX 138 .XState resb XSTATE_SIZE 138 139 .eax resq 1 139 140 .ecx resq 1 … … 235 236 .msrApicBase resb 8 236 237 .au32SizePadding resb 24 237 .XState resb XSTATE_SIZE238 238 endstruc 239 239 -
trunk/include/VBox/vmm/cpumctx.h
r54999 r55004 247 247 typedef struct CPUMCTX 248 248 { 249 /** FPU state. (16-byte alignment) 250 * @todo This doesn't have to be in X86FXSTATE on CPUs without fxsr - we need a type for the 251 * actual format or convert it (waste of time). */ 252 X86XSAVEAREA XState; 253 249 254 /** CPUMCTXCORE Part. 250 255 * @{ */ … … 401 406 /** Size padding. */ 402 407 uint32_t au32SizePadding[6]; 403 404 /** FPU state. (16-byte alignment)405 * @todo This doesn't have to be in X86FXSTATE on CPUs without fxsr - we need a type for the406 * actual format or convert it (waste of time). */407 X86XSAVEAREA XState;408 408 } CPUMCTX; 409 409 #pragma pack()
Note:
See TracChangeset
for help on using the changeset viewer.