Changeset 15161 in vbox
- Timestamp:
- Dec 9, 2008 1:03:20 PM (16 years ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r15160 r15161 1901 1901 /* Note: operates the same in 64 and non-64 bits mode. */ 1902 1902 CPUMGetGuestCpuId(pVM, iLeaf, &pRegFrame->eax, &pRegFrame->ebx, &pRegFrame->ecx, &pRegFrame->edx); 1903 Log Flow(("Emulate: CPUID %x -> %08x %08x %08x %08x\n", iLeaf, pRegFrame->eax, pRegFrame->ebx, pRegFrame->ecx, pRegFrame->edx));1903 Log(("Emulate: CPUID %x -> %08x %08x %08x %08x\n", iLeaf, pRegFrame->eax, pRegFrame->ebx, pRegFrame->ecx, pRegFrame->edx)); 1904 1904 return VINF_SUCCESS; 1905 1905 } -
trunk/src/VBox/VMM/VMMAll/HWACCMAll.cpp
r15160 r15161 107 107 108 108 #if HC_ARCH_BITS == 32 109 if (CPUMIsGuestInLongMode (pVM))109 if (CPUMIsGuestInLongModeEx(pCtx)) 110 110 enmShwPagingMode = PGMMODE_AMD64_NX; 111 111 else -
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r15160 r15161 366 366 VMMDECL(int) PGMTrap0eHandler(PVM pVM, RTGCUINT uErr, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault) 367 367 { 368 Log (("PGMTrap0eHandler: uErr=%RGu pvFault=%RGv eip=%RGv\n", uErr, pvFault, (RTGCPTR)pRegFrame->rip));368 LogFlow(("PGMTrap0eHandler: uErr=%RGu pvFault=%RGv eip=%RGv\n", uErr, pvFault, (RTGCPTR)pRegFrame->rip)); 369 369 STAM_PROFILE_START(&pVM->pgm.s.StatRZTrap0e, a); 370 370 STAM_STATS({ pVM->pgm.s.CTX_SUFF(pStatTrap0eAttribution) = NULL; } );
Note:
See TracChangeset
for help on using the changeset viewer.