- Timestamp:
- Jul 4, 2008 9:27:59 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r10107 r10209 1693 1693 EMDECL(int) EMInterpretCpuId(PVM pVM, PCPUMCTXCORE pRegFrame) 1694 1694 { 1695 uint32_t iLeaf = pRegFrame->eax; NOREF(iLeaf); 1696 1695 1697 /* Note: operates the same in 64 and non-64 bits mode. */ 1696 1698 CPUMGetGuestCpuId(pVM, pRegFrame->eax, &pRegFrame->eax, &pRegFrame->ebx, &pRegFrame->ecx, &pRegFrame->edx); 1699 Log(("Emulate: CPUID %x -> %08x %08x %08x %08x\n", iLeaf, pRegFrame->eax, pRegFrame->ebx, pRegFrame->ecx, pRegFrame->edx)); 1697 1700 return VINF_SUCCESS; 1698 1701 } … … 1700 1703 static int emInterpretCpuId(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize) 1701 1704 { 1702 uint32_t iLeaf = pRegFrame->eax; NOREF(iLeaf);1703 1704 1705 int rc = EMInterpretCpuId(pVM, pRegFrame); 1705 Log(("Emulate: CPUID %x -> %08x %08x %08x %08x\n", iLeaf, pRegFrame->eax, pRegFrame->ebx, pRegFrame->ecx, pRegFrame->edx));1706 1706 return rc; 1707 1707 }
Note:
See TracChangeset
for help on using the changeset viewer.