Searched refs:cMaxPhysAddrWidth (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/VMM/VMMR3/
H A DPGM.cpp2150 uint32_t cMaxPhysAddrWidth; local
2155 cMaxPhysAddrWidth = ASMCpuId_EAX(0x80000008) & 0xff;
2156 LogRel(("PGM: The CPU physical address width is %u bits\n", cMaxPhysAddrWidth));
2157 cMaxPhysAddrWidth = RT_MIN(52, cMaxPhysAddrWidth);
2158 pVM->pgm.s.fLessThan52PhysicalAddressBits = cMaxPhysAddrWidth < 52;
2159 for (uint32_t iBit = cMaxPhysAddrWidth; iBit < 52; iBit++)
2165 cMaxPhysAddrWidth = 48;
2172 for (uint32_t iBit = cMaxPhysAddrWidth; iBit < 64; iBit++)
2218 pVM->pgm.s.GCPhys4MBPSEMask = RT_BIT_64(RT_MAX(36, cMaxPhysAddrWidth))
[all...]
H A DCPUMR3Db.cpp58 uint8_t cMaxPhysAddrWidth; member in struct:CPUMDBENTRY
H A DCPUMR3CpuId.cpp1550 pFeatures->cMaxPhysAddrWidth = pLeaf->uEax & 0xff;
1552 pFeatures->cMaxPhysAddrWidth = 36;
1554 pFeatures->cMaxPhysAddrWidth = 32;
/vbox/include/VBox/vmm/
H A Dcpum.h916 uint8_t cMaxPhysAddrWidth; member in struct:CPUMFEATURES
/vbox/src/VBox/VMM/VMMAll/
H A DCPUMAllMsrs.cpp404 uint64_t fInvPhysMask = ~(RT_BIT_64(pVCpu->CTX_SUFF(pVM)->cpum.s.GuestFeatures.cMaxPhysAddrWidth) - 1U);
438 uint64_t fInvPhysMask = ~(RT_BIT_64(pVCpu->CTX_SUFF(pVM)->cpum.s.GuestFeatures.cMaxPhysAddrWidth) - 1U);

Completed in 155 milliseconds