VirtualBox

Changeset 10209

Show
Ignore:
Timestamp:
07/04/08 11:27:59 (2 months ago)
Author:
vboxsync
Message:

Logging update

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 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} 

© 2008 Sun Microsystems, Inc.
ContactPrivacy policy