diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-09 17:59:56 +0200 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-09 17:59:56 +0200 |
| commit | e52da5570eb93d6cb2950e55c48bd22edb5a9f18 (patch) | |
| tree | e76f2f6dd399a131f52e2b5951ba99e1399a2179 /libbb | |
| parent | 550bf5b4a418378cd8f9fbbf5252fe57acdacb5a (diff) | |
| download | busybox-w32-e52da5570eb93d6cb2950e55c48bd22edb5a9f18.tar.gz busybox-w32-e52da5570eb93d6cb2950e55c48bd22edb5a9f18.tar.bz2 busybox-w32-e52da5570eb93d6cb2950e55c48bd22edb5a9f18.zip | |
libbb: auto_string() for efficient handling of temporary malloced stirngs
Use it in libiproute: get rid of one static string buffer.
function old new delta
auto_string - 51 +51
ll_index_to_name 10 49 +39
buffer_fill_and_print 169 178 +9
scan_recursive 378 380 +2
decode_one_format 732 734 +2
cmdputs 334 332 -2
static.cur_saved 4 1 -3
static.nbuf 16 - -16
printable_string 94 57 -37
ll_idx_n2a 53 - -53
------------------------------------------------------------------------------
(add/remove: 2/2 grow/shrink: 4/3 up/down: 103/-111) Total: -8 bytes
text data bss dec hex filename
939880 992 17496 958368 e9fa0 busybox_old
939880 992 17480 958352 e9f90 busybox_unstripped
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
| -rw-r--r-- | libbb/auto_string.c | 23 | ||||
| -rw-r--r-- | libbb/printable_string.c | 10 |
2 files changed, 24 insertions, 9 deletions
diff --git a/libbb/auto_string.c b/libbb/auto_string.c new file mode 100644 index 000000000..ae940069a --- /dev/null +++ b/libbb/auto_string.c | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | /* vi: set sw=4 ts=4: */ | ||
| 2 | /* | ||
| 3 | * Utility routines. | ||
| 4 | * | ||
| 5 | * Copyright (C) 2015 Denys Vlasenko | ||
| 6 | * | ||
| 7 | * Licensed under GPLv2, see file LICENSE in this source tree. | ||
| 8 | */ | ||
| 9 | //kbuild:lib-y += auto_string.o | ||
| 10 | |||
| 11 | #include "libbb.h" | ||
| 12 | |||
| 13 | char* FAST_FUNC auto_string(char *str) | ||
| 14 | { | ||
| 15 | static char *saved[4]; | ||
| 16 | static uint8_t cur_saved; /* = 0 */ | ||
| 17 | |||
| 18 | free(saved[cur_saved]); | ||
| 19 | saved[cur_saved] = str; | ||
| 20 | cur_saved = (cur_saved + 1) & (ARRAY_SIZE(saved)-1); | ||
| 21 | |||
| 22 | return str; | ||
| 23 | } | ||
diff --git a/libbb/printable_string.c b/libbb/printable_string.c index a316f60de..077d58d32 100644 --- a/libbb/printable_string.c +++ b/libbb/printable_string.c | |||
| @@ -11,9 +11,6 @@ | |||
| 11 | 11 | ||
| 12 | const char* FAST_FUNC printable_string(uni_stat_t *stats, const char *str) | 12 | const char* FAST_FUNC printable_string(uni_stat_t *stats, const char *str) |
| 13 | { | 13 | { |
| 14 | static char *saved[4]; | ||
| 15 | static unsigned cur_saved; /* = 0 */ | ||
| 16 | |||
| 17 | char *dst; | 14 | char *dst; |
| 18 | const char *s; | 15 | const char *s; |
| 19 | 16 | ||
| @@ -56,10 +53,5 @@ const char* FAST_FUNC printable_string(uni_stat_t *stats, const char *str) | |||
| 56 | } | 53 | } |
| 57 | } | 54 | } |
| 58 | #endif | 55 | #endif |
| 59 | 56 | return auto_string(dst); | |
| 60 | free(saved[cur_saved]); | ||
| 61 | saved[cur_saved] = dst; | ||
| 62 | cur_saved = (cur_saved + 1) & (ARRAY_SIZE(saved)-1); | ||
| 63 | |||
| 64 | return dst; | ||
| 65 | } | 57 | } |
