blob: 378dfd7ff81df80f6f5903b3a4873936568eb252 [file] [log] [blame]
Matt Mackalld9606002006-01-08 01:05:19 -08001#!/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
10import sys, os, re
Alexey Dobriyaneef06b82016-11-10 10:46:13 -080011from signal import signal, SIGPIPE, SIG_DFL
12
13signal(SIGPIPE, SIG_DFL)
Matt Mackalld9606002006-01-08 01:05:19 -080014
15if len(sys.argv) != 3:
16 sys.stderr.write("usage: %s file1 file2\n" % sys.argv[0])
17 sys.exit(-1)
18
19def getsizes(file):
20 sym = {}
Alexey Dobriyan3af06fd2016-12-12 16:40:45 -080021 with os.popen("nm --size-sort " + file) as f:
22 for line in f:
23 size, type, name = line.split()
24 if type in "tTdDbBrR":
25 # strip generated symbols
26 if name.startswith("__mod_"): continue
27 if name.startswith("SyS_"): continue
28 if name.startswith("compat_SyS_"): continue
29 if name == "linux_banner": continue
30 # statics and some other optimizations adds random .NUMBER
31 name = re.sub(r'\.[0-9]+', '', name)
32 sym[name] = sym.get(name, 0) + int(size, 16)
Matt Mackalld9606002006-01-08 01:05:19 -080033 return sym
34
35old = getsizes(sys.argv[1])
36new = getsizes(sys.argv[2])
37grow, shrink, add, remove, up, down = 0, 0, 0, 0, 0, 0
38delta, common = [], {}
Vineet Guptab21e91c2016-05-19 17:09:17 -070039otot, ntot = 0, 0
Matt Mackalld9606002006-01-08 01:05:19 -080040
41for a in old:
42 if a in new:
43 common[a] = 1
44
45for name in old:
Vineet Guptab21e91c2016-05-19 17:09:17 -070046 otot += old[name]
Matt Mackalld9606002006-01-08 01:05:19 -080047 if name not in common:
48 remove += 1
49 down += old[name]
50 delta.append((-old[name], name))
51
52for name in new:
Vineet Guptab21e91c2016-05-19 17:09:17 -070053 ntot += new[name]
Matt Mackalld9606002006-01-08 01:05:19 -080054 if name not in common:
55 add += 1
56 up += new[name]
57 delta.append((new[name], name))
58
59for name in common:
60 d = new.get(name, 0) - old.get(name, 0)
61 if d>0: grow, up = grow+1, up+d
62 if d<0: shrink, down = shrink+1, down-d
63 delta.append((d, name))
64
65delta.sort()
66delta.reverse()
67
Sergey Senozhatsky72214a22016-01-14 15:16:53 -080068print("add/remove: %s/%s grow/shrink: %s/%s up/down: %s/%s (%s)" % \
69 (add, remove, grow, shrink, up, -down, up-down))
70print("%-40s %7s %7s %+7s" % ("function", "old", "new", "delta"))
Matt Mackalld9606002006-01-08 01:05:19 -080071for d, n in delta:
Sergey Senozhatsky72214a22016-01-14 15:16:53 -080072 if d: print("%-40s %7s %7s %+7d" % (n, old.get(n,"-"), new.get(n,"-"), d))
Vineet Guptab21e91c2016-05-19 17:09:17 -070073
Riku Voipio8cde0da2016-07-26 15:21:20 -070074print("Total: Before=%d, After=%d, chg %+.2f%%" % \
75 (otot, ntot, (ntot - otot)*100.0/otot))