readprofile: code shrink

function                                             old     new   delta
defaultpro                                            14       -     -14
defaultmap                                            17       -     -17
readprofile_main                                    1762    1719     -43
------------------------------------------------------------------------------
(add/remove: 0/2 grow/shrink: 0/1 up/down: 0/-74)             Total: -74 bytes
   text	   data	    bss	    dec	    hex	filename
 933081	    473	   6836	 940390	  e5966	busybox_old
 933035	    473	   6836	 940344	  e5938	busybox_unstripped

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2018-03-11 19:35:58 +01:00
parent 448fdcc17d
commit 0e09ded2f1

View File

@ -61,27 +61,22 @@
#define S_LEN 128 #define S_LEN 128
/* These are the defaults */
static const char defaultmap[] ALIGN1 = "/boot/System.map";
static const char defaultpro[] ALIGN1 = "/proc/profile";
int readprofile_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; int readprofile_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
int readprofile_main(int argc UNUSED_PARAM, char **argv) int readprofile_main(int argc UNUSED_PARAM, char **argv)
{ {
FILE *map; FILE *map;
const char *mapFile, *proFile; const char *mapFile, *proFile;
unsigned long indx = 1; unsigned long indx;
size_t len; size_t len;
uint64_t add0 = 0; uint64_t add0;
unsigned int step; unsigned int step;
unsigned int *buf, total, fn_len; unsigned int *buf, total, fn_len;
unsigned long long fn_add, next_add; /* current and next address */ unsigned long long fn_add, next_add; /* current and next address */
char fn_name[S_LEN], next_name[S_LEN]; /* current and next name */ char fn_name[S_LEN], next_name[S_LEN]; /* current and next name */
char mapline[S_LEN]; char mapline[S_LEN];
char mode[8]; char mode[8];
int maplineno = 1; int maplineno;
int header_printed; int multiplier;
int multiplier = 0;
unsigned opt; unsigned opt;
enum { enum {
OPT_M = (1 << 0), OPT_M = (1 << 0),
@ -106,8 +101,9 @@ int readprofile_main(int argc UNUSED_PARAM, char **argv)
#define next (current^1) #define next (current^1)
proFile = defaultpro; proFile = "/proc/profile";
mapFile = defaultmap; mapFile = "/boot/System.map";
multiplier = 0;
opt = getopt32(argv, "M:+m:p:nabsirv", &multiplier, &mapFile, &proFile); opt = getopt32(argv, "M:+m:p:nabsirv", &multiplier, &mapFile, &proFile);
@ -122,7 +118,7 @@ int readprofile_main(int argc UNUSED_PARAM, char **argv)
if (!optMult) if (!optMult)
to_write = 1; /* sth different from sizeof(int) */ to_write = 1; /* sth different from sizeof(int) */
fd = xopen(defaultpro, O_WRONLY); fd = xopen("/proc/profile", O_WRONLY);
xwrite(fd, &multiplier, to_write); xwrite(fd, &multiplier, to_write);
close(fd); close(fd);
return EXIT_SUCCESS; return EXIT_SUCCESS;
@ -133,12 +129,13 @@ int readprofile_main(int argc UNUSED_PARAM, char **argv)
*/ */
len = MAXINT(ssize_t); len = MAXINT(ssize_t);
buf = xmalloc_xopen_read_close(proFile, &len); buf = xmalloc_xopen_read_close(proFile, &len);
len /= sizeof(*buf);
if (!optNative) { if (!optNative) {
int entries = len / sizeof(*buf); int big = 0, small = 0;
int big = 0, small = 0, i;
unsigned *p; unsigned *p;
for (p = buf+1; p < buf+entries; p++) { for (p = buf+1; p < buf+len; p++) {
if (*p & ~0U << (sizeof(*buf)*4)) if (*p & ~0U << (sizeof(*buf)*4))
big++; big++;
if (*p & ((1 << (sizeof(*buf)*4))-1)) if (*p & ((1 << (sizeof(*buf)*4))-1))
@ -147,14 +144,14 @@ int readprofile_main(int argc UNUSED_PARAM, char **argv)
if (big > small) { if (big > small) {
bb_error_msg("assuming reversed byte order, " bb_error_msg("assuming reversed byte order, "
"use -n to force native byte order"); "use -n to force native byte order");
for (p = buf; p < buf+entries; p++) BUILD_BUG_ON(sizeof(*p) > 8);
for (i = 0; i < sizeof(*buf)/2; i++) { for (p = buf; p < buf+len; p++) {
unsigned char *b = (unsigned char *) p; if (sizeof(*p) == 2)
unsigned char tmp; *p = bswap_16(*p);
if (sizeof(*p) == 4)
tmp = b[i]; *p = bswap_32(*p);
b[i] = b[sizeof(*buf)-i-1]; if (sizeof(*p) == 8)
b[sizeof(*buf)-i-1] = tmp; *p = bb_bswap_64(*p);
} }
} }
} }
@ -165,10 +162,9 @@ int readprofile_main(int argc UNUSED_PARAM, char **argv)
return EXIT_SUCCESS; return EXIT_SUCCESS;
} }
total = 0;
map = xfopen_for_read(mapFile); map = xfopen_for_read(mapFile);
add0 = 0;
maplineno = 1;
while (fgets(mapline, S_LEN, map)) { while (fgets(mapline, S_LEN, map)) {
if (sscanf(mapline, "%llx %s %s", &fn_add, mode, fn_name) != 3) if (sscanf(mapline, "%llx %s %s", &fn_add, mode, fn_name) != 3)
bb_error_msg_and_die("%s(%i): wrong map line", bb_error_msg_and_die("%s(%i): wrong map line",
@ -187,8 +183,11 @@ int readprofile_main(int argc UNUSED_PARAM, char **argv)
/* /*
* Main loop. * Main loop.
*/ */
total = 0;
indx = 1;
while (fgets(mapline, S_LEN, map)) { while (fgets(mapline, S_LEN, map)) {
unsigned int this = 0; bool header_printed;
unsigned int this;
if (sscanf(mapline, "%llx %s %s", &next_add, mode, next_name) != 3) if (sscanf(mapline, "%llx %s %s", &next_add, mode, next_name) != 3)
bb_error_msg_and_die("%s(%i): wrong map line", bb_error_msg_and_die("%s(%i): wrong map line",
@ -198,17 +197,17 @@ int readprofile_main(int argc UNUSED_PARAM, char **argv)
/* ignore any LEADING (before a '[tT]' symbol is found) /* ignore any LEADING (before a '[tT]' symbol is found)
Absolute symbols */ Absolute symbols */
if ((*mode == 'A' || *mode == '?') && total == 0) continue; if ((mode[0] == 'A' || mode[0] == '?') && total == 0)
if (*mode != 'T' && *mode != 't' continue;
&& *mode != 'W' && *mode != 'w' if ((mode[0]|0x20) != 't' && (mode[0]|0x20) != 'w') {
) {
break; /* only text is profiled */ break; /* only text is profiled */
} }
if (indx >= len / sizeof(*buf)) if (indx >= len)
bb_error_msg_and_die("profile address out of range. " bb_error_msg_and_die("profile address out of range. "
"Wrong map file?"); "Wrong map file?");
this = 0;
while (indx < (next_add-add0)/step) { while (indx < (next_add-add0)/step) {
if (optBins && (buf[indx] || optAll)) { if (optBins && (buf[indx] || optAll)) {
if (!header_printed) { if (!header_printed) {
@ -256,7 +255,7 @@ int readprofile_main(int argc UNUSED_PARAM, char **argv)
} }
/* clock ticks, out of kernel text - probably modules */ /* clock ticks, out of kernel text - probably modules */
printf("%6u %s\n", buf[len/sizeof(*buf)-1], "*unknown*"); printf("%6u *unknown*\n", buf[len-1]);
/* trailer */ /* trailer */
if (optVerbose) if (optVerbose)