Changeset 88290 in vbox for trunk/include
- Timestamp:
- Mar 25, 2021 11:54:08 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 143501
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/cpum.h
r87523 r88290 1481 1481 VMMDECL(CPUMCPUVENDOR) CPUMGetGuestCpuVendor(PVM pVM); 1482 1482 VMMDECL(CPUMMICROARCH) CPUMGetGuestMicroarch(PCVM pVM); 1483 VMMDECL(void) CPUMGetGuestAddrWidths(PCVM pVM, uint8_t *pcPhysAddrWidth, uint8_t *pcLinearAddrWidth); 1483 1484 VMMDECL(CPUMCPUVENDOR) CPUMGetHostCpuVendor(PVM pVM); 1484 1485 VMMDECL(CPUMMICROARCH) CPUMGetHostMicroarch(PCVM pVM); -
trunk/include/VBox/vmm/pdmdev.h
r88153 r88290 2349 2349 2350 2350 /** Current PDMDEVHLPR3 version number. */ 2351 #define PDM_DEVHLPR3_VERSION PDM_VERSION_MAKE_PP(0xffe7, 4 6, 0)2351 #define PDM_DEVHLPR3_VERSION PDM_VERSION_MAKE_PP(0xffe7, 47, 0) 2352 2352 2353 2353 /** … … 4248 4248 DECLR3CALLBACKMEMBER(CPUMMICROARCH, pfnCpuGetGuestMicroarch,(PPDMDEVINS pDevIns)); 4249 4249 4250 /** 4251 * Get the number of physical and linear address bits supported by the guest. 4252 * 4253 * @param pDevIns The device instance. 4254 * @param pcPhysAddrWidth Where to store the number of physical address bits 4255 * supported by the guest. 4256 * @param pcLinearAddrWidth Where to store the number of linear address bits 4257 * supported by the guest. 4258 */ 4259 DECLR3CALLBACKMEMBER(void, pfnCpuGetGuestAddrWidths,(PPDMDEVINS pDevIns, uint8_t *pcPhysAddrWidth, 4260 uint8_t *pcLinearAddrWidth)); 4261 4250 4262 /** Space reserved for future members. 4251 4263 * @{ */ … … 6637 6649 { 6638 6650 return pDevIns->CTX_SUFF(pHlp)->pfnCpuGetGuestMicroarch(pDevIns); 6651 } 6652 6653 /** 6654 * @copydoc PDMDEVHLPR3::pfnCpuGetGuestAddrWidths 6655 */ 6656 DECLINLINE(void) PDMDevHlpCpuGetGuestAddrWidths(PPDMDEVINS pDevIns, uint8_t *pcPhysAddrWidth, uint8_t *pcLinearAddrWidth) 6657 { 6658 pDevIns->CTX_SUFF(pHlp)->pfnCpuGetGuestAddrWidths(pDevIns, pcPhysAddrWidth, pcLinearAddrWidth); 6639 6659 } 6640 6660
Note:
See TracChangeset
for help on using the changeset viewer.