diff options
-rw-r--r-- | Makefile | 5 | ||||
-rwxr-xr-x | scripts/bloat-o-meter | 60 |
2 files changed, 65 insertions, 0 deletions
@@ -132,6 +132,8 @@ help: | |||
132 | @echo ' uninstall' | 132 | @echo ' uninstall' |
133 | @echo | 133 | @echo |
134 | @echo 'Development:' | 134 | @echo 'Development:' |
135 | @echo ' bloatcheck - show size difference between busybox_unstripped' | ||
136 | @echo ' and busybox_old | ||
135 | @echo ' check - run the test suite for all applets' | 137 | @echo ' check - run the test suite for all applets' |
136 | @echo ' checkhelp - check for missing help-entries in Config.in' | 138 | @echo ' checkhelp - check for missing help-entries in Config.in' |
137 | @echo ' randconfig - generate a random configuration' | 139 | @echo ' randconfig - generate a random configuration' |
@@ -358,6 +360,9 @@ checkhelp: | |||
358 | .PHONY: sizes | 360 | .PHONY: sizes |
359 | sizes: busybox_unstripped | 361 | sizes: busybox_unstripped |
360 | $(NM) --size-sort $(<) | 362 | $(NM) --size-sort $(<) |
363 | .PHONY: bloatcheck | ||
364 | bloatcheck: busybox_old busybox_unstripped | ||
365 | @scripts/bloat-o-meter busybox_old busybox_unstripped | ||
361 | 366 | ||
362 | .PHONY: objsizes | 367 | .PHONY: objsizes |
363 | objsizes: busybox_unstripped | 368 | objsizes: busybox_unstripped |
diff --git a/scripts/bloat-o-meter b/scripts/bloat-o-meter new file mode 100755 index 000000000..af42f8402 --- /dev/null +++ b/scripts/bloat-o-meter | |||
@@ -0,0 +1,60 @@ | |||
1 | #!/usr/bin/python | ||
2 | # | ||
3 | # Copyright 2004 Matt Mackall <mpm@selenic.com> | ||
4 | # | ||
5 | # inspired by perl Bloat-O-Meter (c) 1997 by Andi Kleen | ||
6 | # | ||
7 | # This software may be used and distributed according to the terms | ||
8 | # of the GNU General Public License, incorporated herein by reference. | ||
9 | |||
10 | import sys, os, re | ||
11 | |||
12 | if len(sys.argv) != 3: | ||
13 | sys.stderr.write("usage: %s file1 file2\n" % sys.argv[0]) | ||
14 | sys.exit(-1) | ||
15 | |||
16 | def getsizes(file): | ||
17 | sym = {} | ||
18 | for l in os.popen("nm --size-sort " + file).readlines(): | ||
19 | size, type, name = l[:-1].split() | ||
20 | if type in "tTdDbB": | ||
21 | if name.find(".") != -1: name = "static." + name.split(".")[0] | ||
22 | if name in sym: sym[name] += int(size, 16) | ||
23 | else :sym[name] = int(size, 16) | ||
24 | return sym | ||
25 | |||
26 | old = getsizes(sys.argv[1]) | ||
27 | new = getsizes(sys.argv[2]) | ||
28 | grow, shrink, add, remove, up, down = 0, 0, 0, 0, 0, 0 | ||
29 | delta, common = [], {} | ||
30 | |||
31 | for a in old: | ||
32 | if a in new: | ||
33 | common[a] = 1 | ||
34 | |||
35 | for name in old: | ||
36 | if name not in common: | ||
37 | remove += 1 | ||
38 | down += old[name] | ||
39 | delta.append((-old[name], name)) | ||
40 | |||
41 | for name in new: | ||
42 | if name not in common: | ||
43 | add += 1 | ||
44 | up += new[name] | ||
45 | delta.append((new[name], name)) | ||
46 | |||
47 | for name in common: | ||
48 | d = new.get(name, 0) - old.get(name, 0) | ||
49 | if d>0: grow, up = grow+1, up+d | ||
50 | if d<0: shrink, down = shrink+1, down-d | ||
51 | delta.append((d, name)) | ||
52 | |||
53 | delta.sort() | ||
54 | delta.reverse() | ||
55 | |||
56 | print "add/remove: %s/%s grow/shrink: %s/%s up/down: %s/%s (%s)" % \ | ||
57 | (add, remove, grow, shrink, up, -down, up-down) | ||
58 | print "%-40s %7s %7s %+7s" % ("function", "old", "new", "delta") | ||
59 | for d, n in delta: | ||
60 | if d: print "%-40s %7s %7s %+7d" % (n, old.get(n,"-"), new.get(n,"-"), d) | ||