From: Marek Olšák Date: Wed, 9 Dec 2015 22:39:45 +0000 (+0100) Subject: radeonsi: also print hexadecimal values for register fields in the IB parser X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=62d82193b8f2d7c480d0218aec56a68c522b6006;p=mesa.git radeonsi: also print hexadecimal values for register fields in the IB parser Reviewed-by: Michel Dänzer --- diff --git a/src/gallium/drivers/radeonsi/si_debug.c b/src/gallium/drivers/radeonsi/si_debug.c index cce665e85fa..034acf56508 100644 --- a/src/gallium/drivers/radeonsi/si_debug.c +++ b/src/gallium/drivers/radeonsi/si_debug.c @@ -61,13 +61,16 @@ static void print_spaces(FILE *f, unsigned num) static void print_value(FILE *file, uint32_t value, int bits) { /* Guess if it's int or float */ - if (value <= (1 << 15)) - fprintf(file, "%u\n", value); - else { + if (value <= (1 << 15)) { + if (value <= 9) + fprintf(file, "%u\n", value); + else + fprintf(file, "%u (0x%0*x)\n", value, bits / 4, value); + } else { float f = uif(value); if (fabs(f) < 100000 && f*10 == floor(f*10)) - fprintf(file, "%.1ff\n", f); + fprintf(file, "%.1ff (0x%0*x)\n", f, bits / 4, value); else /* Don't print more leading zeros than there are bits. */ fprintf(file, "0x%0*x\n", bits / 4, value);