VirtualBox

Changeset 105718 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Aug 19, 2024 2:20:25 AM (8 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
164421
Message:

VMM/IEM: Take down the FLAT PC when compiling TBs the first time. Made 'tbtop' and 'tb' display it and together with a TB id, which 'tb' now accepts as input to make it simpler to display any single entry in the 'tbtop' output. bugref:10720

Location:
trunk/src/VBox/VMM
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/IEMAllN8veRecompiler.cpp

    r105717 r105718  
    91059105     */
    91069106    pHlp->pfnPrintf(pHlp,
    9107                     "pTb=%p: GCPhysPc=%RGp cInstructions=%u LB %#x cRanges=%u\n"
     9107                    "pTb=%p: GCPhysPc=%RGp (%%%RGv) cInstructions=%u LB %#x cRanges=%u\n"
    91089108                    "pTb=%p: cUsed=%u msLastUsed=%u fFlags=%#010x %s\n",
    9109                     pTb, pTb->GCPhysPc, pTb->cInstructions, pTb->cbOpcodes, pTb->cRanges,
     9109                    pTb, pTb->GCPhysPc,
     9110#ifdef IEMNATIVE_WITH_TB_DEBUG_INFO
     9111                    pTb->pDbgInfo ? pTb->pDbgInfo->FlatPc : RTGCPTR_MAX,
     9112#else
     9113                    pTb->FlatPc,
     9114#endif
     9115                    pTb->cInstructions, pTb->cbOpcodes, pTb->cRanges,
    91109116                    pTb, pTb->cUsed, pTb->msLastUsed, pTb->fFlags, iemTbFlagsToString(pTb->fFlags, szDisBuf, sizeof(szDisBuf)));
    91119117#ifdef IEMNATIVE_WITH_TB_DEBUG_INFO
     
    91209126         */
    91219127        uint32_t                idxThreadedCall  = 0;
     9128        uint32_t                idxGuestInstr    = 0;
    91229129        uint32_t                fExec            = pTb->fFlags & UINT32_C(0x00ffffff);
    91239130        uint8_t                 idxRange         = UINT8_MAX;
     
    92089215                                    memcpy(&szDisBuf[cch], s_szMarker, sizeof(s_szMarker));
    92099216
    9210                                 pHlp->pfnPrintf(pHlp, "  %%%%%RGp: %s\n", GCPhysPc, szDisBuf);
     9217                                pHlp->pfnPrintf(pHlp, "\n  %%%%%RGp: %s #%u\n", GCPhysPc, szDisBuf, idxGuestInstr);
    92119218                            }
    92129219                            else
    92139220                            {
    9214                                 pHlp->pfnPrintf(pHlp, "  %%%%%RGp: %.*Rhxs - guest disassembly failure %Rrc\n",
     9221                                pHlp->pfnPrintf(pHlp, "\n  %%%%%RGp: %.*Rhxs - guest disassembly failure %Rrc\n",
    92159222                                                GCPhysPc, cbInstrMax, &pTb->pabOpcodes[offOpcodes], rc);
    92169223                                cbInstr = 1;
    92179224                            }
     9225                            idxGuestInstr++;
    92189226                            GCPhysPc   += cbInstr;
    92199227                            offOpcodes += cbInstr;
     
    94899497                                    | DIS_FMT_FLAGS_RELATIVE_BRANCH | DIS_FMT_FLAGS_C_HEX,
    94909498                                    NULL /*pfnGetSymbol*/, NULL /*pvUser*/);
    9491                     pHlp->pfnPrintf(pHlp, "    %RGp: %s\n", GCPhysPc, szDisBuf);
     9499                    pHlp->pfnPrintf(pHlp, "    %%%%%RGp: %s\n", GCPhysPc, szDisBuf);
    94929500                    GCPhysPc += cbInstr;
    94939501                    off      += cbInstr;
     
    94959503                else
    94969504                {
    9497                     pHlp->pfnPrintf(pHlp, "    %RGp: %.*Rhxs - disassembly failure %Rrc\n",
     9505                    pHlp->pfnPrintf(pHlp, "    %%%%%RGp: %.*Rhxs - disassembly failure %Rrc\n",
    94989506                                    GCPhysPc, cbOpcodes - off, &pTb->pabOpcodes[off], rc);
    94999507                    break;
     
    1033710345    pTb->fFlags                 = (pTb->fFlags & ~IEMTB_F_TYPE_MASK) | IEMTB_F_TYPE_NATIVE;
    1033810346#ifdef IEMNATIVE_WITH_TB_DEBUG_INFO
     10347    pReNative->pDbgInfo->FlatPc = pTb->FlatPc;
    1033910348    pTb->pDbgInfo               = (PIEMTBDBG)RTMemDup(pReNative->pDbgInfo, /* non-fatal, so not return check. */
    1034010349                                                      RT_UOFFSETOF_DYN(IEMTBDBG, aEntries[pReNative->pDbgInfo->cEntries]));
  • trunk/src/VBox/VMM/VMMAll/IEMAllThrdRecompiler.cpp

    r105712 r105718  
    15181518     */
    15191519    pHlp->pfnPrintf(pHlp,
    1520                     "pTb=%p: GCPhysPc=%RGp cInstructions=%u LB %#x cRanges=%u cTbLookupEntries=%u\n"
     1520                    "pTb=%p: GCPhysPc=%RGp (%RGv) cInstructions=%u LB %#x cRanges=%u cTbLookupEntries=%u\n"
    15211521                    "pTb=%p: cUsed=%u msLastUsed=%u fFlags=%#010x %s\n",
    1522                     pTb, pTb->GCPhysPc, pTb->cInstructions, pTb->cbOpcodes, pTb->cRanges, pTb->cTbLookupEntries,
     1522                    pTb, pTb->GCPhysPc, pTb->FlatPc, pTb->cInstructions, pTb->cbOpcodes, pTb->cRanges, pTb->cTbLookupEntries,
    15231523                    pTb, pTb->cUsed, pTb->msLastUsed, pTb->fFlags, iemTbFlagsToString(pTb->fFlags, szDisBuf, sizeof(szDisBuf)));
    15241524
     
    27802780        pVCpu->iem.s.pThrdCompileTbR3 = pTb;
    27812781    }
     2782    pTb->FlatPc = pVCpu->iem.s.uInstrBufPc | (GCPhysPc & GUEST_PAGE_OFFSET_MASK);
    27822783
    27832784    /* Set the current TB so iemThreadedCompileLongJumped and the CIMPL
  • trunk/src/VBox/VMM/VMMR3/IEMR3.cpp

    r105716 r105718  
    17781778
    17791779/**
     1780 * Get get compile time flat PC for the TB.
     1781 */
     1782DECL_FORCE_INLINE(RTGCPTR) iemR3GetTbFlatPc(PCIEMTB pTb)
     1783{
     1784#ifdef IEMNATIVE_WITH_TB_DEBUG_INFO
     1785    if (pTb->fFlags & IEMTB_F_TYPE_NATIVE)
     1786    {
     1787        PCIEMTBDBG const pDbgInfo = pTb->pDbgInfo;
     1788        return pDbgInfo ? pDbgInfo->FlatPc : RTGCPTR_MAX;
     1789    }
     1790#endif
     1791    return pTb->FlatPc;
     1792}
     1793
     1794
     1795/**
    17801796 * @callback_method_impl{FNDBGFINFOARGVINT, tb}
    17811797 */
     
    17971813        { "--physical-address", 'p', RTGETOPT_REQ_UINT64 | RTGETOPT_FLAG_HEX },
    17981814        { "--flags",            'f', RTGETOPT_REQ_UINT32 | RTGETOPT_FLAG_HEX },
     1815        { "--tb",               't', RTGETOPT_REQ_UINT32 | RTGETOPT_FLAG_HEX },
     1816        { "--tb-id",            't', RTGETOPT_REQ_UINT32 },
    17991817    };
    18001818
     
    18081826    RTGCPHYS        GCVirt      = NIL_RTGCPTR;
    18091827    uint32_t        fFlags      = UINT32_MAX;
     1828    uint32_t        idTb        = UINT32_MAX;
    18101829
    18111830    RTGETOPTUNION ValueUnion;
     
    18241843                GCVirt   = ValueUnion.u64;
    18251844                GCPhysPc = NIL_RTGCPHYS;
     1845                idTb     = UINT32_MAX;
    18261846                break;
    18271847
     
    18291849                GCVirt   = NIL_RTGCPHYS;
    18301850                GCPhysPc = ValueUnion.u64;
     1851                idTb     = UINT32_MAX;
    18311852                break;
    18321853
    18331854            case 'f':
    1834                 fFlags = ValueUnion.u32;
    1835                 break;
     1855                fFlags   = ValueUnion.u32;
     1856                break;
     1857
     1858            case 't':
     1859                GCVirt   = NIL_RTGCPHYS;
     1860                GCPhysPc = NIL_RTGCPHYS;
     1861                idTb     = ValueUnion.u32;
     1862                break;
     1863
     1864            case VINF_GETOPT_NOT_OPTION:
     1865            {
     1866                if (   (ValueUnion.psz[0] == 'T' || ValueUnion.psz[0] == 't')
     1867                    && (ValueUnion.psz[1] == 'B' || ValueUnion.psz[1] == 'b')
     1868                    &&  ValueUnion.psz[2] == '#')
     1869                {
     1870                    rc = RTStrToUInt32Full(&ValueUnion.psz[3], 0, &idTb);
     1871                    if (RT_SUCCESS(rc))
     1872                    {
     1873                        GCVirt   = NIL_RTGCPHYS;
     1874                        GCPhysPc = NIL_RTGCPHYS;
     1875                        break;
     1876                    }
     1877                    pHlp->pfnPrintf(pHlp, "error: failed to convert '%s' to TD ID: %Rrc\n", ValueUnion.psz, rc);
     1878                }
     1879                else
     1880                    pHlp->pfnGetOptError(pHlp, rc, &ValueUnion, &State);
     1881                return;
     1882            }
    18361883
    18371884            case 'h':
     
    18461893                                "  -p<phys>, --phys=<phys>, --phys-addr=<phys>\n"
    18471894                                "    Shows the TB for the specified guest physical address.\n"
     1895                                "  -t<id>, --tb=<id>, --tb-id=<id>, TD#<id>\n"
     1896                                "    Show the TB specified by the identifier/number (from tbtop).\n"
    18481897                                "  -f<flags>,--flags=<flags>\n"
    18491898                                "    The TB flags value (hex) to use when looking up the TB.\n"
     
    18691918     * Defaults.
    18701919     */
    1871     if (GCPhysPc == NIL_RTGCPHYS)
     1920    if (GCPhysPc == NIL_RTGCPHYS && idTb == UINT32_MAX)
    18721921    {
    18731922        if (GCVirt == NIL_RTGCPTR)
     
    18801929        }
    18811930    }
    1882     if (fFlags == UINT32_MAX)
     1931    if (fFlags == UINT32_MAX && idTb == UINT32_MAX)
    18831932    {
    18841933        /* Note! This is duplicating code in IEMAllThrdRecompiler. */
     
    18981947    }
    18991948
    1900     /*
    1901      * Do the lookup...
    1902      *
    1903      * Note! This is also duplicating code in IEMAllThrdRecompiler.  We don't
    1904      *       have much choice since we don't want to increase use counters and
    1905      *       trigger native recompilation.
    1906      */
    1907     fFlags &= IEMTB_F_KEY_MASK;
    1908     IEMTBCACHE const * const pTbCache = pVCpu->iem.s.pTbCacheR3;
    1909     uint32_t const           idxHash  = IEMTBCACHE_HASH(pTbCache, fFlags, GCPhysPc);
    1910     PCIEMTB                  pTb      = IEMTBCACHE_PTR_GET_TB(pTbCache->apHash[idxHash]);
    1911     while (pTb)
    1912     {
    1913         if (pTb->GCPhysPc == GCPhysPc)
     1949    PCIEMTB pTb;
     1950    if (idTb == UINT32_MAX)
     1951    {
     1952        /*
     1953         * Do the lookup...
     1954         *
     1955         * Note! This is also duplicating code in IEMAllThrdRecompiler.  We don't
     1956         *       have much choice since we don't want to increase use counters and
     1957         *       trigger native recompilation.
     1958         */
     1959        fFlags &= IEMTB_F_KEY_MASK;
     1960        IEMTBCACHE const * const pTbCache = pVCpu->iem.s.pTbCacheR3;
     1961        uint32_t const           idxHash  = IEMTBCACHE_HASH(pTbCache, fFlags, GCPhysPc);
     1962        pTb = IEMTBCACHE_PTR_GET_TB(pTbCache->apHash[idxHash]);
     1963        while (pTb)
    19141964        {
    1915             if ((pTb->fFlags & IEMTB_F_KEY_MASK) == fFlags)
     1965            if (pTb->GCPhysPc == GCPhysPc)
    19161966            {
    1917                 /// @todo if (pTb->x86.fAttr == (uint16_t)pVCpu->cpum.GstCtx.cs.Attr.u)
    1918                 break;
     1967                if ((pTb->fFlags & IEMTB_F_KEY_MASK) == fFlags)
     1968                {
     1969                    /// @todo if (pTb->x86.fAttr == (uint16_t)pVCpu->cpum.GstCtx.cs.Attr.u)
     1970                    break;
     1971                }
    19191972            }
     1973            pTb = pTb->pNext;
    19201974        }
    1921         pTb = pTb->pNext;
     1975        if (!pTb)
     1976            pHlp->pfnPrintf(pHlp, "PC=%RGp fFlags=%#x - no TB found on #%u\n", GCPhysPc, fFlags, pVCpu->idCpu);
    19221977    }
    1923     if (!pTb)
    1924         pHlp->pfnPrintf(pHlp, "PC=%RGp fFlags=%#x - no TB found on #%u\n", GCPhysPc, fFlags, pVCpu->idCpu);
    19251978    else
     1979    {
     1980        /*
     1981         * Use the TB ID for indexing.
     1982         */
     1983        pTb = NULL;
     1984        PIEMTBALLOCATOR const pTbAllocator = pVCpu->iem.s.pTbAllocatorR3;
     1985        if (pTbAllocator)
     1986        {
     1987            size_t const idxTbChunk   = idTb / pTbAllocator->cTbsPerChunk;
     1988            size_t const idxTbInChunk = idTb % pTbAllocator->cTbsPerChunk;
     1989            if (idxTbChunk < pTbAllocator->cAllocatedChunks)
     1990                pTb = &pTbAllocator->aChunks[idxTbChunk].paTbs[idxTbInChunk];
     1991            else
     1992                pHlp->pfnPrintf(pHlp, "Invalid TB ID: %u (%#x)\n", idTb, idTb);
     1993        }
     1994    }
     1995
     1996    if (pTb)
    19261997    {
    19271998        /*
    19281999         * Disassemble according to type.
    19292000         */
     2001        size_t const  idxTbChunk = pTb->idxAllocChunk;
     2002        size_t const  idxTbNo    = (pTb - &pVCpu->iem.s.pTbAllocatorR3->aChunks[idxTbChunk].paTbs[0])
     2003                                 + idxTbChunk * pVCpu->iem.s.pTbAllocatorR3->cTbsPerChunk;
    19302004        switch (pTb->fFlags & IEMTB_F_TYPE_MASK)
    19312005        {
    19322006# ifdef VBOX_WITH_IEM_NATIVE_RECOMPILER
    19332007            case IEMTB_F_TYPE_NATIVE:
    1934                 pHlp->pfnPrintf(pHlp, "PC=%RGp fFlags=%#x on #%u: %p - native\n", GCPhysPc, fFlags, pVCpu->idCpu, pTb);
     2008                pHlp->pfnPrintf(pHlp, "PC=%RGp (%%%RGv) fFlags=%#x on #%u: TB#%#zx/%p - native\n",
     2009                                GCPhysPc, iemR3GetTbFlatPc(pTb),  fFlags, pVCpu->idCpu, idxTbNo, pTb);
    19352010                iemNativeDisassembleTb(pVCpu, pTb, pHlp);
    19362011                break;
     
    19382013
    19392014            case IEMTB_F_TYPE_THREADED:
    1940                 pHlp->pfnPrintf(pHlp, "PC=%RGp fFlags=%#x on #%u: %p - threaded\n", GCPhysPc, fFlags, pVCpu->idCpu, pTb);
     2015                pHlp->pfnPrintf(pHlp, "PC=%RGp (%%%RGv) fFlags=%#x on #%u: TB#%#zx/%p - threaded\n",
     2016                                GCPhysPc, pTb->FlatPc, fFlags, pVCpu->idCpu, idxTbNo, pTb);
    19412017                iemThreadedDisassembleTb(pTb, pHlp);
    19422018                break;
    19432019
    19442020            default:
    1945                 pHlp->pfnPrintf(pHlp, "PC=%RGp fFlags=%#x on #%u: %p - ??? %#x\n",
    1946                                 GCPhysPc, fFlags, pVCpu->idCpu, pTb, pTb->fFlags);
     2021                pHlp->pfnPrintf(pHlp, "PC=%RGp (%%%RGv) fFlags=%#x on #%u: TB#%#zx/%p - ??? %#x\n",
     2022                                GCPhysPc, pTb->FlatPc, fFlags, pVCpu->idCpu, idxTbNo, pTb, pTb->fFlags);
    19472023                break;
    19482024        }
     
    22002276            pHlp->pfnPrintf(pHlp, "\n------------------------------- %u -------------------------------\n", idx);
    22012277
    2202         PCIEMTB pTb = aTop[idx].pTb;
     2278        PCIEMTB const pTb        = aTop[idx].pTb;
     2279        size_t const  idxTbChunk = pTb->idxAllocChunk;
     2280        Assert(idxTbChunk < pTbAllocator->cAllocatedChunks);
     2281        size_t const  idxTbNo    = (pTb - &pTbAllocator->aChunks[idxTbChunk].paTbs[0])
     2282                                 + idxTbChunk * pTbAllocator->cTbsPerChunk;
    22032283        switch (pTb->fFlags & IEMTB_F_TYPE_MASK)
    22042284        {
    22052285# ifdef VBOX_WITH_IEM_NATIVE_RECOMPILER
    22062286            case IEMTB_F_TYPE_NATIVE:
    2207                 pHlp->pfnPrintf(pHlp, "PC=%RGp cUsed=%u msLastUsed=%u fFlags=%#010x - native\n",
    2208                                 pTb->GCPhysPc, pTb->cUsed, pTb->msLastUsed, pTb->fFlags);
     2287                pHlp->pfnPrintf(pHlp, "TB#%#zx: PC=%RGp (%%%RGv) cUsed=%u msLastUsed=%u fFlags=%#010x - native\n",
     2288                                idxTbNo, pTb->GCPhysPc, iemR3GetTbFlatPc(pTb), pTb->cUsed, pTb->msLastUsed, pTb->fFlags);
    22092289                if (fDisassemble)
    22102290                    iemNativeDisassembleTb(pVCpu, pTb, pHlp);
     
    22132293
    22142294            case IEMTB_F_TYPE_THREADED:
    2215                 pHlp->pfnPrintf(pHlp, "PC=%RGp cUsed=%u msLastUsed=%u fFlags=%#010x - threaded\n",
    2216                                 pTb->GCPhysPc, pTb->cUsed, pTb->msLastUsed, pTb->fFlags);
     2295                pHlp->pfnPrintf(pHlp, "TB#%#zx: PC=%RGp (%%%RGv) cUsed=%u msLastUsed=%u fFlags=%#010x - threaded\n",
     2296                                idxTbNo, pTb->GCPhysPc, pTb->FlatPc, pTb->cUsed, pTb->msLastUsed, pTb->fFlags);
    22172297                if (fDisassemble)
    22182298                    iemThreadedDisassembleTb(pTb, pHlp);
     
    22202300
    22212301            default:
    2222                 pHlp->pfnPrintf(pHlp, "PC=%RGp cUsed=%u msLastUsed=%u fFlags=%#010x - ???\n",
    2223                                 pTb->GCPhysPc, pTb->cUsed, pTb->msLastUsed, pTb->fFlags);
     2302                pHlp->pfnPrintf(pHlp, "TB#%#zx:%zu: PC=%RGp (%%%RGv) cUsed=%u msLastUsed=%u fFlags=%#010x - ???\n",
     2303                                idxTbNo, pTb->GCPhysPc, pTb->FlatPc, pTb->cUsed, pTb->msLastUsed, pTb->fFlags);
    22242304                break;
    22252305        }
  • trunk/src/VBox/VMM/include/IEMInternal.h

    r105702 r105718  
    14881488typedef struct IEMTBDBG
    14891489{
     1490    /** This is the flat PC corresponding to IEMTB::GCPhysPc. */
     1491    RTGCPTR         FlatPc;
    14901492    /** Number of entries in aEntries. */
    14911493    uint32_t        cEntries;
     
    15811583    uint8_t            *pabOpcodes;
    15821584
    1583     /** Debug info if enabled.
    1584      * This is only generated by the native recompiler. */
    1585     PIEMTBDBG           pDbgInfo;
     1585    union
     1586    {
     1587        /** Native recompilation debug info if enabled.
     1588         * This is only generated by the native recompiler. */
     1589        PIEMTBDBG       pDbgInfo;
     1590        /** For threaded TBs and natives when debug info is disabled, this is the flat
     1591         * PC corresponding to GCPhysPc. */
     1592        RTGCPTR         FlatPc;
     1593    };
    15861594
    15871595    /* --- 64 byte cache line end --- */
  • trunk/src/VBox/VMM/include/IEMN8veRecompiler.h

    r105673 r105718  
    4242/** @def IEMNATIVE_WITH_TB_DEBUG_INFO
    4343 * Enables generating internal debug info for better TB disassembly dumping. */
    44 #if defined(DEBUG) || defined(DOXYGEN_RUNNING)
     44#if defined(DEBUG) || defined(DOXYGEN_RUNNING) || 0
    4545# define IEMNATIVE_WITH_TB_DEBUG_INFO
    4646#endif
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