Changeset 80565 in vbox for trunk/src/VBox/Runtime/common/string
- Timestamp:
- Sep 3, 2019 12:51:00 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 133080
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/strformatrt.cpp
r80496 r80565 832 832 */ 833 833 case 'x': 834 case 'X': 834 835 { 835 836 uint8_t *pu8 = va_arg(*pArgs, uint8_t *); 837 uint64_t uMemAddr; 838 int cchMemAddrWidth; 839 836 840 if (cchPrecision < 0) 837 841 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 838 854 if (pu8) 839 855 { … … 854 870 { 855 871 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); 858 874 for (i = 0; i < cchWidth && off + i < cchPrecision ; i++) 859 875 cch += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, … … 904 920 if (cDuplicates > 0) 905 921 { 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); 909 924 cDuplicates = 0; 910 925 } 911 926 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); 914 929 for (i = 0; i < cchWidth && off + i < cchPrecision ; i++) 915 930 cch += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, … … 945 960 if (cchPrecision-- > 0) 946 961 { 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++); 948 967 for (; cchPrecision > 0; cchPrecision--, pu8++) 949 968 cch += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, " %02x", *pu8);
Note:
See TracChangeset
for help on using the changeset viewer.