VirtualBox

Changeset 58540 in vbox for trunk/src/VBox/Debugger


Ignore:
Timestamp:
Nov 1, 2015 4:38:54 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
103866
Message:

DBGC: The 'di' command should dump the IST field for 64-bit interrupt and trap gates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp

    r58170 r58540  
    18381838            case X86_SEL_TYPE_SYS_386_TRAP_GATE:
    18391839            {
    1840                 RTSEL sel = pDesc->au16[1];
    1841                 uint64_t off =    pDesc->au16[0]
    1842                                 | ((uint64_t)pDesc->au16[3] << 16)
    1843                                 | ((uint64_t)pDesc->Gen.u32BaseHigh3 << 32);
    1844                 rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s Sel:Off=%04x:%016RX64     DPL=%d %s%s\n",
    1845                                         iEntry, s_apszTypes[pDesc->Gen.u4Type], sel, off,
    1846                                         pDesc->Gen.u2Dpl, pszPresent, pszHyper);
     1840                RTSEL sel = pDesc->Gate.u16Sel;
     1841                uint64_t off =            pDesc->Gate.u16OffsetLow
     1842                             | ((uint64_t)pDesc->Gate.u16OffsetHigh << 16)
     1843                             | ((uint64_t)pDesc->Gate.u32OffsetTop << 32);
     1844                rc = DBGCCmdHlpPrintf(pCmdHlp, "%04x %s Sel:Off=%04x:%016RX64     DPL=%u %s IST=%u%s\n",
     1845                                        iEntry, s_apszTypes[pDesc->Gate.u4Type], sel, off,
     1846                                        pDesc->Gate.u2Dpl, pszPresent, pDesc->Gate.u3IST, pszHyper);
    18471847                if (pfDblEntry)
    18481848                    *pfDblEntry = true;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette