summaryrefslogtreecommitdiffstats
path: root/lib/display_options.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-07-23 06:17:30 -0400
committerWolfgang Denk <wd@denx.de>2010-08-09 00:28:38 +0200
commit64419e47518bbba059c80b77558f93ad4804145c (patch)
treeba402e033d5191592d045c3eaee6d1a3bf7da0ed /lib/display_options.c
parent8faba4894c6e2bafbfab17260f3db17867cd50d2 (diff)
downloadtalos-obmc-uboot-64419e47518bbba059c80b77558f93ad4804145c.tar.gz
talos-obmc-uboot-64419e47518bbba059c80b77558f93ad4804145c.zip
print_buffer: optimize & shrink
Applying a little creative format string allows us to shrink the initial data read & display loop by only calling printf once. Re-using the local data buffer to generate the string we want to display then allows us to output everything with just one printf call instead of multiple calls to the putc function. The local stack buffer needs increasing by 1 byte, but the resulting code shrink and speed up is worth it I think. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'lib/display_options.c')
-rw-r--r--lib/display_options.c27
1 files changed, 13 insertions, 14 deletions
diff --git a/lib/display_options.c b/lib/display_options.c
index a711425b90..20319e64bd 100644
--- a/lib/display_options.c
+++ b/lib/display_options.c
@@ -101,7 +101,7 @@ void print_size(unsigned long long size, const char *s)
#define DEFAULT_LINE_LENGTH_BYTES (16)
int print_buffer (ulong addr, void* data, uint width, uint count, uint linelen)
{
- uint8_t linebuf[MAX_LINE_LENGTH_BYTES];
+ uint8_t linebuf[MAX_LINE_LENGTH_BYTES + 1];
uint32_t *uip = (void*)linebuf;
uint16_t *usp = (void*)linebuf;
uint8_t *ucp = (void*)linebuf;
@@ -121,24 +121,23 @@ int print_buffer (ulong addr, void* data, uint width, uint count, uint linelen)
/* Copy from memory into linebuf and print hex values */
for (i = 0; i < linelen; i++) {
- if (width == 4) {
- uip[i] = *(volatile uint32_t *)data;
- printf(" %08x", uip[i]);
- } else if (width == 2) {
- usp[i] = *(volatile uint16_t *)data;
- printf(" %04x", usp[i]);
- } else {
- ucp[i] = *(volatile uint8_t *)data;
- printf(" %02x", ucp[i]);
- }
+ uint32_t x;
+ if (width == 4)
+ x = uip[i] = *(volatile uint32_t *)data;
+ else if (width == 2)
+ x = usp[i] = *(volatile uint16_t *)data;
+ else
+ x = ucp[i] = *(volatile uint8_t *)data;
+ printf(" %0*x", width * 2, x);
data += width;
}
/* Print data in ASCII characters */
- puts(" ");
for (i = 0; i < linelen * width; i++)
- putc(isprint(ucp[i]) && (ucp[i] < 0x80) ? ucp[i] : '.');
- putc ('\n');
+ if (!isprint(ucp[i]) || ucp[i] >= 0x80)
+ ucp[i] = '.';
+ ucp[i] = '\0';
+ printf(" %s\n", ucp);
/* update references */
addr += linelen * width;
OpenPOWER on IntegriCloud