VirtualBox

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


Ignore:
Timestamp:
Mar 9, 2007 10:40:11 AM (18 years ago)
Author:
vboxsync
Message:

SELM function changes for v86 mode code.

File:
1 edited

Legend:

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

    r836 r1358  
    43214321    int     rc;
    43224322    *pResult = *pArg;
     4323
    43234324    switch (pArg->enmType)
    43244325    {
     
    43274328
    43284329        case DBGCVAR_TYPE_GC_FAR:
     4330        {
     4331            PCPUMCTX        pCtx;
     4332            CPUMQueryGuestCtxPtr(pDbgc->pVM, &pCtx);
     4333
    43294334            Assert(pDbgc->pVM);
     4335
    43304336            pResult->enmType    = DBGCVAR_TYPE_GC_FLAT;
    4331             rc = SELMToFlatEx(pDbgc->pVM, pResult->u.GCFar.sel, pResult->u.GCFar.off,
     4337            rc = SELMToFlatEx(pDbgc->pVM, pCtx->eflags, pResult->u.GCFar.sel, pResult->u.GCFar.off,
    43324338                              SELMTOFLAT_FLAGS_NO_PL | SELMTOFLAT_FLAGS_HYPER, &pResult->u.GCFlat, NULL);
    43334339            if (VBOX_SUCCESS(rc))
    43344340                return 0;
    43354341            return VERR_PARSE_CONVERSION_FAILED;
     4342        }
    43364343
    43374344        case DBGCVAR_TYPE_GC_PHYS:
     
    43964403
    43974404        case DBGCVAR_TYPE_GC_FAR:
     4405        {
     4406            PCPUMCTX        pCtx;
     4407            CPUMQueryGuestCtxPtr(pDbgc->pVM, &pCtx);
    43984408            Assert(pDbgc->pVM);
    4399             rc = SELMToFlatEx(pDbgc->pVM, pResult->u.GCFar.sel, pResult->u.GCFar.off,
     4409            rc = SELMToFlatEx(pDbgc->pVM, pCtx->eflags, pResult->u.GCFar.sel, pResult->u.GCFar.off,
    44004410                              SELMTOFLAT_FLAGS_NO_PL | SELMTOFLAT_FLAGS_HYPER, &pResult->u.GCFlat, NULL);
    44014411            if (VBOX_SUCCESS(rc))
     
    44084418            }
    44094419            return VERR_PARSE_CONVERSION_FAILED;
     4420        }
    44104421
    44114422        case DBGCVAR_TYPE_GC_PHYS:
     
    44714482
    44724483        case DBGCVAR_TYPE_GC_FAR:
     4484        {
     4485            PCPUMCTX        pCtx;
     4486            CPUMQueryGuestCtxPtr(pDbgc->pVM, &pCtx);
     4487
    44734488            Assert(pDbgc->pVM);
    4474             rc = SELMToFlatEx(pDbgc->pVM, pResult->u.GCFar.sel, pResult->u.GCFar.off,
     4489            rc = SELMToFlatEx(pDbgc->pVM, pCtx->eflags, pResult->u.GCFar.sel, pResult->u.GCFar.off,
    44754490                              SELMTOFLAT_FLAGS_NO_PL | SELMTOFLAT_FLAGS_HYPER, &pResult->u.GCFlat, NULL);
    44764491            if (VBOX_SUCCESS(rc))
     
    44834498            }
    44844499            return VERR_PARSE_CONVERSION_FAILED;
     4500        }
    44854501
    44864502        case DBGCVAR_TYPE_GC_PHYS:
     
    45514567
    45524568        case DBGCVAR_TYPE_GC_FAR:
     4569        {
     4570            PCPUMCTX        pCtx;
     4571            CPUMQueryGuestCtxPtr(pDbgc->pVM, &pCtx);
     4572
    45534573            Assert(pDbgc->pVM);
    4554             rc = SELMToFlatEx(pDbgc->pVM, pResult->u.GCFar.sel, pResult->u.GCFar.off,
     4574            rc = SELMToFlatEx(pDbgc->pVM, pCtx->eflags, pResult->u.GCFar.sel, pResult->u.GCFar.off,
    45554575                              SELMTOFLAT_FLAGS_NO_PL | SELMTOFLAT_FLAGS_HYPER, &pResult->u.GCFlat, NULL);
    45564576            if (VBOX_SUCCESS(rc))
     
    45634583            }
    45644584            return VERR_PARSE_CONVERSION_FAILED;
     4585        }
    45654586
    45664587        case DBGCVAR_TYPE_GC_PHYS:
     
    57555776        {
    57565777            uint32_t    cb;
     5778            PCPUMCTX    pCtx;
     5779            CPUMQueryGuestCtxPtr(pDbgc->pVM, &pCtx);
     5780
    57575781            Var.enmType = DBGCVAR_TYPE_GC_FLAT;
    5758             int rc = SELMToFlatEx(pDbgc->pVM, Var.u.GCFar.sel, Var.u.GCFar.off,
     5782            int rc = SELMToFlatEx(pDbgc->pVM, pCtx->eflags, Var.u.GCFar.sel, Var.u.GCFar.off,
    57595783                                  SELMTOFLAT_FLAGS_NO_PL | SELMTOFLAT_FLAGS_HYPER, &Var.u.GCFlat, &cb);
    57605784            if (VBOX_FAILURE(rc))
Note: See TracChangeset for help on using the changeset viewer.

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