VirtualBox

Changeset 10209 in vbox for trunk/src


Ignore:
Timestamp:
Jul 4, 2008 9:27:59 AM (16 years ago)
Author:
vboxsync
Message:

Logging update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/EMAll.cpp

    r10107 r10209  
    16931693EMDECL(int) EMInterpretCpuId(PVM pVM, PCPUMCTXCORE pRegFrame)
    16941694{
     1695    uint32_t iLeaf = pRegFrame->eax; NOREF(iLeaf);
     1696
    16951697    /* Note: operates the same in 64 and non-64 bits mode. */
    16961698    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));
    16971700    return VINF_SUCCESS;
    16981701}
     
    17001703static int emInterpretCpuId(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize)
    17011704{
    1702     uint32_t iLeaf = pRegFrame->eax; NOREF(iLeaf);
    1703 
    17041705    int rc = EMInterpretCpuId(pVM, pRegFrame);
    1705     Log(("Emulate: CPUID %x -> %08x %08x %08x %08x\n", iLeaf, pRegFrame->eax, pRegFrame->ebx, pRegFrame->ecx, pRegFrame->edx));
    17061706    return rc;
    17071707}
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette