VirtualBox

Changeset 19293 in vbox for trunk/src/VBox/VMM/DBGFDisas.cpp


Ignore:
Timestamp:
May 1, 2009 4:11:18 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
46745
Message:

DBGF,VMM: SMP refactoring of the DBGF disassembler code. Changed VMMGetCpu and VMMGetCpuId to return NULL and NIL if the caller isn't an EMT. Renamed VMMGetCpuEx to VMMGetCpuById.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/DBGFDisas.cpp

    r19181 r19293  
    312312                         char *pszOutput, uint32_t cchOutput, uint32_t *pcbInstr)
    313313{
     314    VMCPU_ASSERT_EMT(pVCpu);
    314315    RTGCPTR GCPtr = *pGCPtr;
    315316
     
    520521 * @returns VBox status code.
    521522 * @param   pVM             VM handle.
    522  * @param   pVCpu           The virtual CPU handle, defaults to CPU 0 if NULL.
     523 * @param   idCpu           The ID of virtual CPU.
    523524 * @param   Sel             The code selector. This used to determin the 32/16 bit ness and
    524525 *                          calculation of the actual instruction address.
     
    533534 *          address conversion.
    534535 */
    535 VMMR3DECL(int) DBGFR3DisasInstrEx(PVM pVM, PVMCPU pVCpu, RTSEL Sel, RTGCPTR GCPtr, unsigned fFlags,
     536VMMR3DECL(int) DBGFR3DisasInstrEx(PVM pVM, VMCPUID idCpu, RTSEL Sel, RTGCPTR GCPtr, unsigned fFlags,
    536537                                  char *pszOutput, uint32_t cchOutput, uint32_t *pcbInstr)
    537538{
    538     /* If not specified, assume CPU 0. */
    539     if (!pVCpu)
    540         pVCpu = &pVM->aCpus[0];
    541 
    542     int rc;
    543     if (VMCPU_IS_EMT(pVCpu)) /* not necessary, but it's faster. */
     539    VM_ASSERT_VALID_EXT_RETURN(pVM, VERR_INVALID_VM_HANDLE);
     540    AssertReturn(idCpu < pVM->cCPUs, VERR_INVALID_CPU_ID);
     541
     542    int     rc;
     543    PVMCPU  pVCpu = VMMGetCpu(pVM);
     544    if (    pVCpu
     545        &&  pVCpu->idCpu == idCpu) /* not necessary, but it's faster. */
    544546        rc = dbgfR3DisasInstrExOnVCpu(pVM, pVCpu, Sel, &GCPtr, fFlags, pszOutput, cchOutput, pcbInstr);
    545547    else
    546548    {
    547549        PVMREQ pReq = NULL;
    548         rc = VMR3ReqCall(pVCpu->pVMR3, VMREQDEST_FROM_VMCPU(pVCpu), &pReq, RT_INDEFINITE_WAIT,
     550        rc = VMR3ReqCall(pVM, VMREQDEST_FROM_ID(idCpu), &pReq, RT_INDEFINITE_WAIT,
    549551                         (PFNRT)dbgfR3DisasInstrExOnVCpu, 8,
    550                          pVM, pVCpu, Sel, &GCPtr, fFlags, pszOutput, cchOutput, pcbInstr);
     552                         pVM, VMMGetCpuById(pVM, idCpu), Sel, &GCPtr, fFlags, pszOutput, cchOutput, pcbInstr);
    551553        if (RT_SUCCESS(rc))
    552554        {
     
    556558    }
    557559    return rc;
    558 }
    559 
    560 
    561 /**
    562  * Disassembles an instruction.
    563  * Addresses will be tried resolved to symbols
    564  *
    565  * @returns VBox status code.
    566  * @param   pVM             VM handle.
    567  * @param   pVCpu           The virtual CPU handle, defaults to CPU 0 if NULL.
    568  * @param   Sel             The code selector. This used to determin the 32/16 bit ness and
    569  *                          calculation of the actual instruction address.
    570  * @param   GCPtr           The code address relative to the base of Sel.
    571  * @param   pszOutput       Output buffer.
    572  * @param   cchOutput        Size of the output buffer.
    573  */
    574 VMMR3DECL(int) DBGFR3DisasInstr(PVM pVM, PVMCPU pVCpu, RTSEL Sel, RTGCPTR GCPtr, char *pszOutput, uint32_t cchOutput)
    575 {
    576     return DBGFR3DisasInstrEx(pVM, pVCpu, Sel, GCPtr, 0, pszOutput, cchOutput, NULL);
    577560}
    578561
     
    589572VMMR3DECL(int) DBGFR3DisasInstrCurrent(PVM pVM, char *pszOutput, uint32_t cchOutput)
    590573{
    591     return DBGFR3DisasInstrEx(pVM, VMMGetCpu(pVM), 0, 0, DBGF_DISAS_FLAGS_CURRENT_GUEST, pszOutput, cchOutput, NULL);
     574    *pszOutput = '\0';
     575    PVMCPU pVCpu = VMMGetCpu(pVM);
     576    AssertReturn(pVCpu, VERR_INVALID_CONTEXT);
     577    return DBGFR3DisasInstrEx(pVM, pVCpu->idCpu, 0, 0, DBGF_DISAS_FLAGS_CURRENT_GUEST,
     578                              pszOutput, cchOutput, NULL);
    592579}
    593580
     
    628615 * @param   GCPtr           The code address relative to the base of Sel.
    629616 */
    630 VMMR3DECL(int) DBGFR3DisasInstrLogInternal(PVM pVM, PVMCPU pVCpu, RTSEL Sel, RTGCPTR GCPtr)
    631 {
     617VMMR3DECL(int) DBGFR3DisasInstrLogInternal(PVM pVM, RTSEL Sel, RTGCPTR GCPtr)
     618{
     619    PVMCPU pVCpu = VMMGetCpu(pVM);
     620    AssertReturn(pVCpu, VERR_INVALID_CONTEXT);
     621
    632622    char szBuf[256];
    633623    szBuf[0] = '\0';
    634     int rc = DBGFR3DisasInstr(pVM, pVCpu, Sel, GCPtr, &szBuf[0], sizeof(szBuf));
     624    int rc = DBGFR3DisasInstrEx(pVM, pVCpu->idCpu, Sel, GCPtr, 0, &szBuf[0], sizeof(szBuf), NULL);
    635625    if (RT_FAILURE(rc))
    636626        RTStrPrintf(szBuf, sizeof(szBuf), "DBGFR3DisasInstrLog(, %RTsel, %RGv) failed with rc=%Rrc\n", Sel, GCPtr, rc);
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