Changeset 9790 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jun 18, 2008 2:51:45 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 32159
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/CPUM.cpp
r9760 r9790 1030 1030 pHlp->pfnPrintf(pHlp, "Guest CPUM state: %s\n", pszComment); 1031 1031 cpumR3InfoOne(pVM, &pVM->cpum.s.Guest, CPUMCTX2CORE(&pVM->cpum.s.Guest), pHlp, enmType, ""); 1032 1033 char szInstruction[256]; 1034 int rc = DBGFR3DisasInstrCurrent(pVM, szInstruction, sizeof(szInstruction)); 1035 if (VBOX_SUCCESS(rc)) 1036 pHlp->pfnPrintf(pHlp, "\nCPUM: %s\n\n", szInstruction); 1032 1037 } 1033 1038 … … 1258 1263 1259 1264 pHlp->pfnPrintf(pHlp, 1260 "Family: %d \tExtended: %d \tEffectiv : %d\n"1261 "Model: %d \tExtended: %d \tEffectiv : %d\n"1265 "Family: %d \tExtended: %d \tEffective: %d\n" 1266 "Model: %d \tExtended: %d \tEffective: %d\n" 1262 1267 "Stepping: %d\n" 1263 1268 "APIC ID: %#04x\n" … … 1435 1440 uint32_t uEAX = Guest.eax; 1436 1441 pHlp->pfnPrintf(pHlp, 1437 "Family: %d \tExtended: %d \tEffectiv : %d\n"1438 "Model: %d \tExtended: %d \tEffectiv : %d\n"1442 "Family: %d \tExtended: %d \tEffective: %d\n" 1443 "Model: %d \tExtended: %d \tEffective: %d\n" 1439 1444 "Stepping: %d\n" 1440 1445 "Brand ID: %#05x\n", -
trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp
r9713 r9790 90 90 rc = EMInterpretDisasOne(pVM, pRegFrame, &Cpu, &cbOp); 91 91 if ( RT_SUCCESS(rc) 92 && Cpu.mode == CPUMODE_32BIT 92 && Cpu.mode == CPUMODE_32BIT /* @todo why does this matter? */ 93 93 && !(Cpu.prefix & (PREFIX_REPNE | PREFIX_REP | PREFIX_SEG))) 94 94 {
Note:
See TracChangeset
for help on using the changeset viewer.