VirtualBox

Ignore:
Timestamp:
Sep 3, 2019 12:51:00 PM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
133080
Message:

IPRT/string.h: Added hexformatting variants that takes an additional 64-bit offset/address argument to be used instead of the memory pointer: %RhXd, %RhXD, %RhXs Also changed space between the pointer and offset to a slash.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/string/strformatrt.cpp

    r80496 r80565  
    832832                     */
    833833                    case 'x':
     834                    case 'X':
    834835                    {
    835836                        uint8_t *pu8 = va_arg(*pArgs, uint8_t *);
     837                        uint64_t uMemAddr;
     838                        int      cchMemAddrWidth;
     839
    836840                        if (cchPrecision < 0)
    837841                            cchPrecision = 16;
     842
     843                        if (ch == 'x')
     844                        {
     845                            uMemAddr = (uintptr_t)pu8;
     846                            cchMemAddrWidth = sizeof(pu8) * 2;
     847                        }
     848                        else
     849                        {
     850                            uMemAddr = va_arg(*pArgs, uint64_t);
     851                            cchMemAddrWidth = uMemAddr > UINT32_MAX || uMemAddr + cchPrecision > UINT32_MAX ? 16 : 8;
     852                        }
     853
    838854                        if (pu8)
    839855                        {
     
    854870                                    {
    855871                                        int i;
    856                                         cch += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0,
    857                                                            "%s%0*p %04x:", off ? "\n" : "", sizeof(pu8) * 2, (uintptr_t)pu8, off);
     872                                        cch += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, "%s%0*llx/%04x:",
     873                                                           off ? "\n" : "", cchMemAddrWidth, uMemAddr + off, off);
    858874                                        for (i = 0; i < cchWidth && off + i < cchPrecision ; i++)
    859875                                            cch += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0,
     
    904920                                            if (cDuplicates > 0)
    905921                                            {
    906                                                 cch += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0,
    907                                                                    "\n%.*s ****  <ditto x %u>",
    908                                                                    sizeof(pu8) * 2, "****************", cDuplicates);
     922                                                cch += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, "\n%.*s ****  <ditto x %u>",
     923                                                                   cchMemAddrWidth, "****************", cDuplicates);
    909924                                                cDuplicates = 0;
    910925                                            }
    911926
    912                                             cch += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0,
    913                                                                "%s%0*p %04x:", off ? "\n" : "", sizeof(pu8) * 2, (uintptr_t)pu8, off);
     927                                            cch += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, "%s%0*llx/%04x:",
     928                                                               off ? "\n" : "", cchMemAddrWidth, uMemAddr + off, off);
    914929                                            for (i = 0; i < cchWidth && off + i < cchPrecision ; i++)
    915930                                                cch += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0,
     
    945960                                    if (cchPrecision-- > 0)
    946961                                    {
    947                                         cch = RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, "%02x", *pu8++);
     962                                        if (ch == 'x')
     963                                            cch = RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, "%02x", *pu8++);
     964                                        else
     965                                            cch = RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, "%0*llx: %02x",
     966                                                              cchMemAddrWidth, uMemAddr, *pu8++);
    948967                                        for (; cchPrecision > 0; cchPrecision--, pu8++)
    949968                                            cch += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, " %02x", *pu8);
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