~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/scripts/bloat-o-meter

Version: ~ [ linux-6.4-rc3 ] ~ [ linux-6.3.4 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.30 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.113 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.180 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.243 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.283 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.315 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  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 from signal import signal, SIGPIPE, SIG_DFL
 12 
 13 signal(SIGPIPE, SIG_DFL)
 14 
 15 if len(sys.argv) != 3:
 16     sys.stderr.write("usage: %s file1 file2\n" % sys.argv[0])
 17     sys.exit(-1)
 18 
 19 re_NUMBER = re.compile(r'\.[0-9]+')
 20 
 21 def getsizes(file):
 22     sym = {}
 23     with os.popen("nm --size-sort " + file) as f:
 24         for line in f:
 25             size, type, name = line.split()
 26             if type in "tTdDbBrR":
 27                 # strip generated symbols
 28                 if name.startswith("__mod_"): continue
 29                 if name.startswith("SyS_"): continue
 30                 if name.startswith("compat_SyS_"): continue
 31                 if name == "linux_banner": continue
 32                 # statics and some other optimizations adds random .NUMBER
 33                 name = re_NUMBER.sub('', name)
 34                 sym[name] = sym.get(name, 0) + int(size, 16)
 35     return sym
 36 
 37 old = getsizes(sys.argv[1])
 38 new = getsizes(sys.argv[2])
 39 grow, shrink, add, remove, up, down = 0, 0, 0, 0, 0, 0
 40 delta, common = [], {}
 41 otot, ntot = 0, 0
 42 
 43 for a in old:
 44     if a in new:
 45         common[a] = 1
 46 
 47 for name in old:
 48     otot += old[name]
 49     if name not in common:
 50         remove += 1
 51         down += old[name]
 52         delta.append((-old[name], name))
 53 
 54 for name in new:
 55     ntot += new[name]
 56     if name not in common:
 57         add += 1
 58         up += new[name]
 59         delta.append((new[name], name))
 60 
 61 for name in common:
 62         d = new.get(name, 0) - old.get(name, 0)
 63         if d>0: grow, up = grow+1, up+d
 64         if d<0: shrink, down = shrink+1, down-d
 65         delta.append((d, name))
 66 
 67 delta.sort()
 68 delta.reverse()
 69 
 70 print("add/remove: %s/%s grow/shrink: %s/%s up/down: %s/%s (%s)" % \
 71       (add, remove, grow, shrink, up, -down, up-down))
 72 print("%-40s %7s %7s %+7s" % ("function", "old", "new", "delta"))
 73 for d, n in delta:
 74     if d: print("%-40s %7s %7s %+7d" % (n, old.get(n,"-"), new.get(n,"-"), d))
 75 
 76 print("Total: Before=%d, After=%d, chg %+.2f%%" % \
 77     (otot, ntot, (ntot - otot)*100.0/otot))

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | Wiki (Japanese) | Wiki (English) | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

osdn.jp