Changeset 58540 in vbox for trunk/src/VBox/Debugger
- Timestamp:
- Nov 1, 2015 4:38:54 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103866
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp
r58170 r58540 1838 1838 case X86_SEL_TYPE_SYS_386_TRAP_GATE: 1839 1839 { 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->G en.u4Type], sel, off,1846 pDesc->G en.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); 1847 1847 if (pfDblEntry) 1848 1848 *pfDblEntry = true;
Note:
See TracChangeset
for help on using the changeset viewer.