blob: 6db2a5e58ce5581a7fd56a6eb698b6e6d69c8a6f [file] [log] [blame]
Lauri Kasanen98f213e2011-07-08 10:56:58 +02001#!/usr/bin/env python
Rob Landleyf8a80842006-05-07 19:26:53 +00002#
3# Copyright 2004 Matt Mackall <mpm@selenic.com>
4#
Lauri Kasanen98f213e2011-07-08 10:56:58 +02005# Inspired by perl Bloat-O-Meter (c) 1997 by Andi Kleen
Rob Landleyf8a80842006-05-07 19:26:53 +00006#
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 = {}, {}, {}
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +010042 for l in os.popen("readelf -W -s %s %s" % (sym_args, file)).readlines():
Bernhard Reutner-Fischer25dbb072012-03-30 19:50:39 +020043 l = l.strip()
44 if not (len(l) and l[0].isdigit() and len(l.split()) == 8):
45 continue
46 num, value, size, typ, bind, vis, ndx, name = l.split()
47 if ndx == "UND": continue # skip undefined
48 if typ in ["SECTION", "FILES"]: continue # skip sections and files
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +010049 if "." in name: name = "static." + name.split(".")[0]
50 value = int(value, 16)
Bernhard Reutner-Fischerb1b70962012-03-30 19:14:27 +020051 size = int(size, 16) if size.startswith('0x') else int(size)
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010052 if vis != "DEFAULT" and bind != "GLOBAL": # see if it is an alias
53 alias[(value, size)] = {"name" : name}
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +010054 else:
55 sym[name] = {"addr" : value, "size": size}
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010056 lut[(value, size)] = 0
Marek Polacek8410ac12010-10-26 02:34:36 +020057 for addr, sz in iter(alias.keys()):
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +010058 # If the non-GLOBAL sym has an implementation elsewhere then
59 # it's an alias, disregard it.
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010060 if not (addr, sz) in lut:
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +010061 # If this non-GLOBAL sym does not have an implementation at
62 # another address, then treat it as a normal symbol.
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010063 sym[alias[(addr, sz)]["name"]] = {"addr" : addr, "size": sz}
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +010064 for l in os.popen("readelf -W -S " + file).readlines():
Rob Landleyf14f7fc2006-05-29 20:56:27 +000065 x = l.split()
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +010066 if len(x)<6: continue
67 # Should take these into account too!
68 #if x[1] not in [".text", ".rodata", ".symtab", ".strtab"]: continue
69 if x[1] not in [".rodata"]: continue
70 sym[x[1]] = {"addr" : int(x[3], 16), "size" : int(x[5], 16)}
Rob Landleyf8a80842006-05-07 19:26:53 +000071 return sym
72
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010073if flag_timing:
74 start_t1 = int(time.time() * 1e9)
75old = getsizes(f1)
76if flag_timing:
77 end_t1 = int(time.time() * 1e9)
78 start_t2 = int(time.time() * 1e9)
79new = getsizes(f2)
80if flag_timing:
81 end_t2 = int(time.time() * 1e9)
82 start_t3 = int(time.time() * 1e9)
Rob Landleyf8a80842006-05-07 19:26:53 +000083grow, shrink, add, remove, up, down = 0, 0, 0, 0, 0, 0
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010084delta, common = [], {}
Rob Landleyf8a80842006-05-07 19:26:53 +000085
Marek Polacek8410ac12010-10-26 02:34:36 +020086for name in iter(old.keys()):
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010087 if name in new:
88 common[name] = 1
Rob Landleyf8a80842006-05-07 19:26:53 +000089
90for name in old:
91 if name not in common:
92 remove += 1
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +010093 sz = old[name]["size"]
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +010094 down += sz
95 delta.append((-sz, name))
Rob Landleyf8a80842006-05-07 19:26:53 +000096
97for name in new:
98 if name not in common:
99 add += 1
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +0100100 sz = new[name]["size"]
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +0100101 up += sz
102 delta.append((sz, name))
Rob Landleyf8a80842006-05-07 19:26:53 +0000103
104for name in common:
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +0100105 d = new[name].get("size", 0) - old[name].get("size", 0)
Rob Landleyf8a80842006-05-07 19:26:53 +0000106 if d>0: grow, up = grow+1, up+d
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +0100107 elif d<0: shrink, down = shrink+1, down-d
108 else:
109 continue
Rob Landleyf8a80842006-05-07 19:26:53 +0000110 delta.append((d, name))
111
112delta.sort()
113delta.reverse()
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +0100114if flag_timing:
115 end_t3 = int(time.time() * 1e9)
Rob Landleyf8a80842006-05-07 19:26:53 +0000116
Bernhard Reutner-Fischereb255752010-02-07 19:42:48 +0100117print("%-48s %7s %7s %+7s" % ("function", "old", "new", "delta"))
Rob Landleyf8a80842006-05-07 19:26:53 +0000118for d, n in delta:
Bernhard Reutner-Fischer659507f2010-01-30 18:01:17 +0100119 if d:
120 old_sz = old.get(n, {}).get("size", "-")
121 new_sz = new.get(n, {}).get("size", "-")
Bernhard Reutner-Fischereb255752010-02-07 19:42:48 +0100122 print("%-48s %7s %7s %+7d" % (n, old_sz, new_sz, d))
123print("-"*78)
Rob Landleyf14f7fc2006-05-29 20:56:27 +0000124total="(add/remove: %s/%s grow/shrink: %s/%s up/down: %s/%s)%%sTotal: %s bytes"\
125 % (add, remove, grow, shrink, up, -down, up-down)
Bernhard Reutner-Fischereb255752010-02-07 19:42:48 +0100126print(total % (" "*(80-len(total))))
Bernhard Reutner-Fischerf16d7c42010-02-07 19:26:18 +0100127if flag_timing:
128 print("\n%d/%d; %d Parse origin/new; processing nsecs" %
129 (end_t1-start_t1, end_t2-start_t2, end_t3-start_t3))
130 print("total nsecs: %d" % (end_t3-start_t1))