blob: dcd8d8750b8bf3b7204718c379edc5a71e31711b [file] [log] [blame]
Andy Shevchenko51839e292020-12-09 13:50:17 +02001#!/usr/bin/env python3
Matt Mackalld9606002006-01-08 01:05:19 -08002#
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
Maninder Singh192efb72017-11-15 17:31:14 -080015if len(sys.argv) < 3:
16 sys.stderr.write("usage: %s [option] file1 file2\n" % sys.argv[0])
17 sys.stderr.write("The options are:\n")
Matteo Croce61fc4702018-02-14 18:47:18 +010018 sys.stderr.write("-c categorize output based on symbol type\n")
Maninder Singh192efb72017-11-15 17:31:14 -080019 sys.stderr.write("-d Show delta of Data Section\n")
20 sys.stderr.write("-t Show delta of text Section\n")
Matt Mackalld9606002006-01-08 01:05:19 -080021 sys.exit(-1)
22
Alexey Dobriyan0d7bbb42016-12-12 16:40:48 -080023re_NUMBER = re.compile(r'\.[0-9]+')
24
Maninder Singh192efb72017-11-15 17:31:14 -080025def getsizes(file, format):
Matt Mackalld9606002006-01-08 01:05:19 -080026 sym = {}
Alexey Dobriyan3af06fd2016-12-12 16:40:45 -080027 with os.popen("nm --size-sort " + file) as f:
28 for line in f:
Nikolay Borisov1d35b602020-08-06 23:17:32 -070029 if line.startswith("\n") or ":" in line:
30 continue
Alexey Dobriyan3af06fd2016-12-12 16:40:45 -080031 size, type, name = line.split()
Maninder Singh192efb72017-11-15 17:31:14 -080032 if type in format:
Alexey Dobriyan3af06fd2016-12-12 16:40:45 -080033 # strip generated symbols
34 if name.startswith("__mod_"): continue
Dominik Brodowskie145242e2018-04-09 12:51:42 +020035 if name.startswith("__se_sys"): continue
Dominik Brodowski5ac9efa2018-04-09 12:51:43 +020036 if name.startswith("__se_compat_sys"): continue
Rasmus Villemoese0b24752018-12-28 00:31:18 -080037 if name.startswith("__addressable_"): continue
Alexey Dobriyan3af06fd2016-12-12 16:40:45 -080038 if name == "linux_banner": continue
39 # statics and some other optimizations adds random .NUMBER
Alexey Dobriyan0d7bbb42016-12-12 16:40:48 -080040 name = re_NUMBER.sub('', name)
Alexey Dobriyan3af06fd2016-12-12 16:40:45 -080041 sym[name] = sym.get(name, 0) + int(size, 16)
Matt Mackalld9606002006-01-08 01:05:19 -080042 return sym
43
Maninder Singh192efb72017-11-15 17:31:14 -080044def calc(oldfile, newfile, format):
45 old = getsizes(oldfile, format)
46 new = getsizes(newfile, format)
47 grow, shrink, add, remove, up, down = 0, 0, 0, 0, 0, 0
48 delta, common = [], {}
49 otot, ntot = 0, 0
Matt Mackalld9606002006-01-08 01:05:19 -080050
Maninder Singh192efb72017-11-15 17:31:14 -080051 for a in old:
52 if a in new:
53 common[a] = 1
Matt Mackalld9606002006-01-08 01:05:19 -080054
Maninder Singh192efb72017-11-15 17:31:14 -080055 for name in old:
56 otot += old[name]
57 if name not in common:
58 remove += 1
59 down += old[name]
60 delta.append((-old[name], name))
Matt Mackalld9606002006-01-08 01:05:19 -080061
Maninder Singh192efb72017-11-15 17:31:14 -080062 for name in new:
63 ntot += new[name]
64 if name not in common:
65 add += 1
66 up += new[name]
67 delta.append((new[name], name))
Matt Mackalld9606002006-01-08 01:05:19 -080068
Maninder Singh192efb72017-11-15 17:31:14 -080069 for name in common:
Matt Mackalld9606002006-01-08 01:05:19 -080070 d = new.get(name, 0) - old.get(name, 0)
71 if d>0: grow, up = grow+1, up+d
72 if d<0: shrink, down = shrink+1, down-d
73 delta.append((d, name))
74
Maninder Singh192efb72017-11-15 17:31:14 -080075 delta.sort()
76 delta.reverse()
77 return grow, shrink, add, remove, up, down, delta, old, new, otot, ntot
Matt Mackalld9606002006-01-08 01:05:19 -080078
Maninder Singh192efb72017-11-15 17:31:14 -080079def print_result(symboltype, symbolformat, argc):
80 grow, shrink, add, remove, up, down, delta, old, new, otot, ntot = \
81 calc(sys.argv[argc - 1], sys.argv[argc], symbolformat)
Vineet Guptab21e91c2016-05-19 17:09:17 -070082
Maninder Singh192efb72017-11-15 17:31:14 -080083 print("add/remove: %s/%s grow/shrink: %s/%s up/down: %s/%s (%s)" % \
84 (add, remove, grow, shrink, up, -down, up-down))
85 print("%-40s %7s %7s %+7s" % (symboltype, "old", "new", "delta"))
86 for d, n in delta:
87 if d: print("%-40s %7s %7s %+7d" % (n, old.get(n,"-"), new.get(n,"-"), d))
88
Andy Shevchenkoedbddb82017-11-29 16:11:05 -080089 if otot:
90 percent = (ntot - otot) * 100.0 / otot
91 else:
92 percent = 0
93 print("Total: Before=%d, After=%d, chg %+.2f%%" % (otot, ntot, percent))
Maninder Singh192efb72017-11-15 17:31:14 -080094
95if sys.argv[1] == "-c":
96 print_result("Function", "tT", 3)
97 print_result("Data", "dDbB", 3)
98 print_result("RO Data", "rR", 3)
99elif sys.argv[1] == "-d":
100 print_result("Data", "dDbBrR", 3)
101elif sys.argv[1] == "-t":
102 print_result("Function", "tT", 3)
103else:
104 print_result("Function", "tTdDbBrR", 2)