VirtualBox

Changeset 13841 in vbox


Ignore:
Timestamp:
Nov 5, 2008 3:38:52 AM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
38833
Message:

The VBox format types - they are not retired, just sligtly deprecated (like VBOX_SUCCESS/FAILURE).

Location:
trunk/src
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/testcase/tstLog.cpp

    r13840 r13841  
    7979    RTLogPrintf("%%RU64: %RU64\n", _2E);
    8080
    81     RTLogPrintf("%%RX8 : %RX8 %#VX8\n",   (uint8_t)808, (uint8_t)808);
    82     RTLogPrintf("%%RX16: %RX16 %#VX16\n", (uint16_t)16016, (uint16_t)16016);
    83     RTLogPrintf("%%RX32: %RX32 %#VX32\n", _2G32, _2G32);
    84     RTLogPrintf("%%RX64: %RX64 %#VX64\n", _2E, _2E);
     81    RTLogPrintf("%%RX8 : %RX8 %#RX8\n",   (uint8_t)808, (uint8_t)808);
     82    RTLogPrintf("%%RX16: %RX16 %#RX16\n", (uint16_t)16016, (uint16_t)16016);
     83    RTLogPrintf("%%RX32: %RX32 %#RX32\n", _2G32, _2G32);
     84    RTLogPrintf("%%RX64: %RX64 %#RX64\n", _2E, _2E);
    8585
    8686    RTLogFlush(NULL);
  • trunk/src/VBox/VMM/DBGFSym.cpp

    r13823 r13841  
    510510                    int rc2 = DBGFR3SymbolAdd(pVM, ModuleAddress, Address + AddressDelta, 0, psz);
    511511                    if (RT_FAILURE(rc2))
    512                         Log2(("DBGFR3SymbolAdd(,, %#VGv, 0, '%s') -> %Rrc\n", Address, psz, rc2));
     512                        Log2(("DBGFR3SymbolAdd(,, %RGv, 0, '%s') -> %Rrc\n", Address, psz, rc2));
    513513                }
    514514            }
  • trunk/src/VBox/VMM/MMPhys.cpp

    r13824 r13841  
    251251    if (!pCur)
    252252    {
    253         AssertMsgFailed(("No physical range was found matching the ROM location (%#VGp LB%#x)\n", GCPhys, cbRange));
     253        AssertMsgFailed(("No physical range was found matching the ROM location (%RGp LB%#x)\n", GCPhys, cbRange));
    254254        return VERR_INVALID_PARAMETER;
    255255    }
    256256    if (GCPhysLast - pCur->u.phys.GCPhys >= pCur->cb)
    257257    {
    258         AssertMsgFailed(("The ROM range (%#VGp LB%#x) was crossing the end of the physical range (%#VGp LB%#x)\n",
     258        AssertMsgFailed(("The ROM range (%RGp LB%#x) was crossing the end of the physical range (%RGp LB%#x)\n",
    259259                         GCPhys, cbRange, pCur->u.phys.GCPhys, pCur->cb));
    260260        return VERR_INVALID_PARAMETER;
     
    386386    if (GCPhysLast - pCur->u.phys.GCPhys >= pCur->cb)
    387387    {
    388         AssertMsgFailed(("The reserved range (%#VGp LB%#x) was crossing the end of the physical range (%#VGp LB%#x)\n",
     388        AssertMsgFailed(("The reserved range (%RGp LB%#x) was crossing the end of the physical range (%RGp LB%#x)\n",
    389389                         GCPhys, cbRange, pCur->u.phys.GCPhys, pCur->cb));
    390390        return VERR_INVALID_PARAMETER;
  • trunk/src/VBox/VMM/PGM.cpp

    r13824 r13841  
    35423542    if (!pPD)
    35433543    {
    3544         pHlp->pfnPrintf(pHlp, "%0*llx error! Page directory at HCPhys=%#VHp was not found in the page pool!\n",
     3544        pHlp->pfnPrintf(pHlp, "%0*llx error! Page directory at HCPhys=%RHp was not found in the page pool!\n",
    35453545                        fLongMode ? 16 : 8, u64Address, HCPhys);
    35463546        return VERR_INVALID_PARAMETER;
     
    36213621                        rc2 = pgmR3DumpHierarchyHCPaePT(pVM, pPT, u64AddressPT, fLongMode, cMaxDepth - 1, pHlp);
    36223622                    else
    3623                         pHlp->pfnPrintf(pHlp, "%0*llx error! Page table at HCPhys=%#VHp was not found in the page pool!\n",
     3623                        pHlp->pfnPrintf(pHlp, "%0*llx error! Page table at HCPhys=%RHp was not found in the page pool!\n",
    36243624                                        fLongMode ? 16 : 8, u64AddressPT, HCPhysPT);
    36253625                    if (rc2 < rc && RT_SUCCESS(rc))
     
    36503650    if (!pPDPT)
    36513651    {
    3652         pHlp->pfnPrintf(pHlp, "%0*llx error! Page directory pointer table at HCPhys=%#VHp was not found in the page pool!\n",
     3652        pHlp->pfnPrintf(pHlp, "%0*llx error! Page directory pointer table at HCPhys=%RHp was not found in the page pool!\n",
    36533653                        fLongMode ? 16 : 8, u64Address, HCPhys);
    36543654        return VERR_INVALID_PARAMETER;
     
    37203720    if (!pPML4)
    37213721    {
    3722         pHlp->pfnPrintf(pHlp, "Page map level 4 at HCPhys=%#VHp was not found in the page pool!\n", HCPhys);
     3722        pHlp->pfnPrintf(pHlp, "Page map level 4 at HCPhys=%RHp was not found in the page pool!\n", HCPhys);
    37233723        return VERR_INVALID_PARAMETER;
    37243724    }
  • trunk/src/VBox/VMM/VMMAll/PGMAllHandler.cpp

    r13832 r13841  
    288288    if (pCur)
    289289    {
    290         LogFlow(("PGMHandlerPhysicalDeregister: Removing Range %#VGp-%#VGp %s\n",
     290        LogFlow(("PGMHandlerPhysicalDeregister: Removing Range %RGp-%RGp %s\n",
    291291                 pCur->Core.Key, pCur->Core.KeyLast, R3STRING(pCur->pszDesc)));
    292292
  • trunk/src/recompiler_new/VBoxRecompiler.c

    r13840 r13841  
    37923792         * Do the disassembling.
    37933793         */
    3794         RTLogPrintf("Guest Code: PC=%RGp %#VGp (%RGp) bytes fFlags=%d\n", uCode, cb, cb, fFlags);
     3794        RTLogPrintf("Guest Code: PC=%RGp %RGp bytes fFlags=%d\n", uCode, cb, fFlags);
    37953795        cs = cpu_single_env->segs[R_CS].selector;
    37963796        eip = uCode - cpu_single_env->segs[R_CS].base;
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