blob: acee6bea95f3176b7b9706f78bdb8fb4e94321fa [file] [log] [blame]
Rob Landleyf8a80842006-05-07 19:26:53 +00001#!/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
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010010import sys, os#, re
Rob Landleyf8a80842006-05-07 19:26:53 +000011
Bernhard Reutner-Fischercf575ca2008-05-23 12:53:18 +000012def usage():
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010013 sys.stderr.write("usage: %s [-t] file1 file2\n" % sys.argv[0])
Rob Landleyf8a80842006-05-07 19:26:53 +000014 sys.exit(-1)
15
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010016f1, f2 = (None, None)
17flag_timing, dashes = (False, False)
18
19for f in sys.argv[1:]:
20 if f.startswith("-"):
21 if f == "--": # sym_args
22 dashes = True
23 break
24 if f == "-t": # timings
25 flag_timing = True
26 else:
27 if not os.path.exists(f):
28 sys.stderr.write("Error: file '%s' does not exist\n" % f)
29 usage()
30 if f1 is None:
31 f1 = f
32 elif f2 is None:
33 f2 = f
34if flag_timing:
35 import time
36if f1 is None or f2 is None:
Bernhard Reutner-Fischercf575ca2008-05-23 12:53:18 +000037 usage()
38
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010039sym_args = " ".join(sys.argv[3 + flag_timing + dashes:])
Rob Landleyf8a80842006-05-07 19:26:53 +000040def getsizes(file):
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010041 sym, alias, lut = {}, {}, {}
42 #dynsym_filter = re.compile("^\d+:\s+[\dA-Fa-f]+\s+\d+\s+\w+\s+\w+\s+\w+\s+\w+\s+\w+$")
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +010043 for l in os.popen("readelf -W -s %s %s" % (sym_args, file)).readlines():
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010044 if True:
45 l = l.strip()
46 if not (len(l) and l[0].isdigit() and len(l.split()) == 8):
47 continue
48 num, value, size, typ, bind, vis, ndx, name = l.split()
49 if ndx == "UND": continue # skip undefined
50 if typ in ["SECTION", "FILES"]: continue # skip sections and files
51 #else:
52 # l = l.strip()
53 # match = dynsym_filter.match(l)
54 # if not match: continue
55 # x, value, size, typ, bind, x, ndx, name = l.split()
56 # if ndx == "UND": continue # skip undefined
57 # if typ in ["SECTION", "FILES"]: continue # skip sections and files
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +010058 if "." in name: name = "static." + name.split(".")[0]
59 value = int(value, 16)
60 size = int(size)
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010061 if vis != "DEFAULT" and bind != "GLOBAL": # see if it is an alias
62 alias[(value, size)] = {"name" : name}
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +010063 else:
64 sym[name] = {"addr" : value, "size": size}
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010065 lut[(value, size)] = 0
66 for addr, sz in alias.iterkeys():
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +010067 # If the non-GLOBAL sym has an implementation elsewhere then
68 # it's an alias, disregard it.
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010069 if not (addr, sz) in lut:
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +010070 # If this non-GLOBAL sym does not have an implementation at
71 # another address, then treat it as a normal symbol.
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010072 sym[alias[(addr, sz)]["name"]] = {"addr" : addr, "size": sz}
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +010073 for l in os.popen("readelf -W -S " + file).readlines():
Rob Landleyf14f7fc2006-05-29 20:56:27 +000074 x = l.split()
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +010075 if len(x)<6: continue
76 # Should take these into account too!
77 #if x[1] not in [".text", ".rodata", ".symtab", ".strtab"]: continue
78 if x[1] not in [".rodata"]: continue
79 sym[x[1]] = {"addr" : int(x[3], 16), "size" : int(x[5], 16)}
Rob Landleyf8a80842006-05-07 19:26:53 +000080 return sym
81
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010082if flag_timing:
83 start_t1 = int(time.time() * 1e9)
84old = getsizes(f1)
85if flag_timing:
86 end_t1 = int(time.time() * 1e9)
87 start_t2 = int(time.time() * 1e9)
88new = getsizes(f2)
89if flag_timing:
90 end_t2 = int(time.time() * 1e9)
91 start_t3 = int(time.time() * 1e9)
Rob Landleyf8a80842006-05-07 19:26:53 +000092grow, shrink, add, remove, up, down = 0, 0, 0, 0, 0, 0
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010093delta, common = [], {}
Rob Landleyf8a80842006-05-07 19:26:53 +000094
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010095for name in old.iterkeys():
96 if name in new:
97 common[name] = 1
Rob Landleyf8a80842006-05-07 19:26:53 +000098
99for name in old:
100 if name not in common:
101 remove += 1
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +0100102 sz = old[name]["size"]
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +0100103 down += sz
104 delta.append((-sz, name))
Rob Landleyf8a80842006-05-07 19:26:53 +0000105
106for name in new:
107 if name not in common:
108 add += 1
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +0100109 sz = new[name]["size"]
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +0100110 up += sz
111 delta.append((sz, name))
Rob Landleyf8a80842006-05-07 19:26:53 +0000112
113for name in common:
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +0100114 d = new[name].get("size", 0) - old[name].get("size", 0)
Rob Landleyf8a80842006-05-07 19:26:53 +0000115 if d>0: grow, up = grow+1, up+d
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +0100116 elif d<0: shrink, down = shrink+1, down-d
117 else:
118 continue
Rob Landleyf8a80842006-05-07 19:26:53 +0000119 delta.append((d, name))
120
121delta.sort()
122delta.reverse()
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +0100123if flag_timing:
124 end_t3 = int(time.time() * 1e9)
Rob Landleyf8a80842006-05-07 19:26:53 +0000125
Rob Landleyf14f7fc2006-05-29 20:56:27 +0000126print "%-48s %7s %7s %+7s" % ("function", "old", "new", "delta")
Rob Landleyf8a80842006-05-07 19:26:53 +0000127for d, n in delta:
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +0100128 if d:
129 old_sz = old.get(n, {}).get("size", "-")
130 new_sz = new.get(n, {}).get("size", "-")
131 print "%-48s %7s %7s %+7d" % (n, old_sz, new_sz, d)
Rob Landleyf14f7fc2006-05-29 20:56:27 +0000132print "-"*78
133total="(add/remove: %s/%s grow/shrink: %s/%s up/down: %s/%s)%%sTotal: %s bytes"\
134 % (add, remove, grow, shrink, up, -down, up-down)
135print total % (" "*(80-len(total)))
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +0100136if flag_timing:
137 print("\n%d/%d; %d Parse origin/new; processing nsecs" %
138 (end_t1-start_t1, end_t2-start_t2, end_t3-start_t3))
139 print("total nsecs: %d" % (end_t3-start_t1))