util/hexdump: Squeeze repeated patterns instead of zero-ed chunks

Our u_hexdump() squeezes 16-byte chunks filled of zeros, where the unix
hexdump squeezes repeated 16-byte chunks. Turns out panfrost/panvk dumps
can be pretty big when when VM dump is requested
(PANVK_DEBUG/PAN_MESA_DEBUG=dump) and memory regions are
filled with repeated non-zero patterns (like a Z16_UNORM buffer cleared
to 1.0, AKA 0xffff).

Avoiding the repetition of such non-zero patterns in dumps significantly
reduces the size of the dumps. It also clears any confusion for people
used to the original hexdump semantics where a star means the previous
line is repeated.

Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
Acked-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30692>
This commit is contained in:
Boris Brezillon
2024-06-28 09:08:53 +02:00
committed by Marge Bot
parent e10cbb59a5
commit d6d8bb8657

View File

@@ -13,29 +13,24 @@ static inline void
u_hexdump(FILE *fp, const uint8_t *hex, size_t cnt, bool with_strings)
{
for (unsigned i = 0; i < cnt; ++i) {
if ((i & 0xF) == 0)
fprintf(fp, "%06X ", i);
if ((i & 0xF) == 0 && i >= 0x10) {
unsigned j;
uint8_t v = hex[i];
if (v == 0 && (i & 0xF) == 0) {
/* Check if we're starting an aligned run of zeroes */
unsigned zero_count = 0;
for (unsigned j = i; j < cnt; ++j) {
if (hex[j] == 0)
zero_count++;
else
for (j = i; j + 0x10 < cnt; j += 0x10) {
if (memcmp(&hex[j], &hex[j - 0x10], 0x10))
break;
}
if (zero_count >= 32) {
if (j > i) {
fprintf(fp, "*\n");
i += (zero_count & ~0xF) - 1;
i = j - 1;
continue;
}
}
if ((i & 0xF) == 0)
fprintf(fp, "%06X ", i);
fprintf(fp, "%02X ", hex[i]);
if ((i & 0xF) == 0xF && with_strings) {
fprintf(fp, " | ");