Changeset 75611 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Nov 20, 2018 11:20:25 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126785
- Location:
- trunk/src/VBox/VMM/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/CPUMInternal.h
r75493 r75611 410 410 /** The host MXCSR mask (determined at init). */ 411 411 uint32_t fHostMxCsrMask; 412 413 /** The VMX APIC-access page handler type. */ 414 PGMPHYSHANDLERTYPE hVmxApicAccessPage; 415 uint8_t abPadding1[16]; 412 uint8_t abPadding1[20]; 416 413 417 414 /** Host CPU feature information. … … 423 420 /** Guest CPU info. */ 424 421 CPUMINFO GuestInfo; 425 426 422 427 423 /** The standard set of CpuId leaves. */ … … 531 527 PCPUMCPUIDLEAF cpumCpuIdGetLeaf(PVM pVM, uint32_t uLeaf); 532 528 PCPUMCPUIDLEAF cpumCpuIdGetLeafEx(PVM pVM, uint32_t uLeaf, uint32_t uSubLeaf, bool *pfExactSubLeafHit); 533 # ifdef VBOX_WITH_NESTED_HWVIRT_VMX534 PGM_ALL_CB2_PROTO(FNPGMPHYSHANDLER) cpumVmxApicAccessPageHandler;535 # endif536 529 537 530 # ifdef IN_RING3 -
trunk/src/VBox/VMM/include/IEMInternal.h
r73555 r75611 21 21 #include <VBox/vmm/cpum.h> 22 22 #include <VBox/vmm/iem.h> 23 #include <VBox/vmm/pgm.h> 23 24 #include <VBox/vmm/stam.h> 24 25 #include <VBox/param.h> … … 558 559 /** The CR2 for the current exception / interrupt. */ 559 560 uint64_t uCurXcptCr2; 561 /** The VMX APIC-access page handler type. */ 562 PGMPHYSHANDLERTYPE hVmxApicAccessPage; 560 563 561 564 /** @name Statistics … … 582 585 /** Number of long jumps. */ 583 586 uint32_t cLongJumps; 584 uint32_t uAlignment6; /**< Alignment padding. */585 587 /** @} */ 586 588 … … 928 930 } IEMACCESSCRX; 929 931 932 # ifdef VBOX_WITH_NESTED_HWVIRT_VMX 933 PGM_ALL_CB2_PROTO(FNPGMPHYSHANDLER) iemVmxApicAccessPageHandler; 934 # endif 930 935 931 936 /**
Note:
See TracChangeset
for help on using the changeset viewer.