Changeset 8818 in vbox for trunk/src/VBox
- Timestamp:
- May 14, 2008 7:44:56 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/TRPMAll.cpp
r8155 r8818 660 660 #ifdef DEBUG 661 661 for (int j=idx;j<0;j++) 662 { 663 LogFlow(("Stack %VGv pos %02d: %08x\n", &pTrapStack[j], j, pTrapStack[j])); 664 } 662 Log4(("Stack %VGv pos %02d: %08x\n", &pTrapStack[j], j, pTrapStack[j])); 663 665 664 const char *pszPrefix = ""; 666 665 const char *szEFlags = ""; 667 666 668 Log Flow(( "%seax=%08x %sebx=%08x %secx=%08x %sedx=%08x %sesi=%08x %sedi=%08x\n"669 "%seip=%08x %sesp=%08x %sebp=%08x %siopl=%d %*s\n"670 "%scs=%04x %sds=%04x %ses=%04x %sfs=%04x %sgs=%04x %seflags=%08x\n",671 pszPrefix, pRegFrame->eax, pszPrefix, pRegFrame->ebx, pszPrefix, pRegFrame->ecx, pszPrefix, pRegFrame->edx, pszPrefix, pRegFrame->esi, pszPrefix, pRegFrame->edi,672 pszPrefix, pRegFrame->eip, pszPrefix, pRegFrame->esp, pszPrefix, pRegFrame->ebp, pszPrefix, eflags.Bits.u2IOPL, *pszPrefix ? 33 : 31, szEFlags,673 pszPrefix, (RTSEL)pRegFrame->cs, pszPrefix, (RTSEL)pRegFrame->ds, pszPrefix, (RTSEL)pRegFrame->es,674 pszPrefix, (RTSEL)pRegFrame->fs, pszPrefix, (RTSEL)pRegFrame->gs, pszPrefix, eflags.u32));667 Log4(("eax=%08x ebx=%08x ecx=%08x edx=%08x esi=%08x edi=%08x\n" 668 "eip=%08x esp=%08x ebp=%08x iopl=%d\n" 669 "cs=%04x ds=%04x es=%04x fs=%04x gs=%04x eflags=%08x\n", 670 pRegFrame->eax, pRegFrame->ebx, pRegFrame->ecx, pRegFrame->edx, pRegFrame->esi, pRegFrame->edi, 671 pRegFrame->eip, pRegFrame->esp, pRegFrame->ebp, eflags.Bits.u2IOPL, 672 (RTSEL)pRegFrame->cs, (RTSEL)pRegFrame->ds, (RTSEL)pRegFrame->es, 673 (RTSEL)pRegFrame->fs, (RTSEL)pRegFrame->gs, eflags.u32)); 675 674 #endif 676 675
Note:
See TracChangeset
for help on using the changeset viewer.