Changeset 15160 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Dec 9, 2008 1:02:46 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 40567
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r14755 r15160 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 (("Emulate: CPUID %x -> %08x %08x %08x %08x\n", iLeaf, pRegFrame->eax, pRegFrame->ebx, pRegFrame->ecx, pRegFrame->edx));1903 LogFlow(("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
r15159 r15160 107 107 108 108 #if HC_ARCH_BITS == 32 109 if (CPUMIsGuestInLongMode Ex(pCtx))109 if (CPUMIsGuestInLongMode(pVM)) 110 110 enmShwPagingMode = PGMMODE_AMD64_NX; 111 111 else -
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r14151 r15160 366 366 VMMDECL(int) PGMTrap0eHandler(PVM pVM, RTGCUINT uErr, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault) 367 367 { 368 Log Flow(("PGMTrap0eHandler: uErr=%RGu pvFault=%RGv eip=%RGv\n", uErr, pvFault, (RTGCPTR)pRegFrame->rip));368 Log(("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.