1 #!/usr/bin/env python3 !! 1 #!/usr/bin/python 2 # 2 # 3 # Copyright 2004 Matt Mackall <mpm@selenic.com> 3 # Copyright 2004 Matt Mackall <mpm@selenic.com> 4 # 4 # 5 # inspired by perl Bloat-O-Meter (c) 1997 by A 5 # inspired by perl Bloat-O-Meter (c) 1997 by Andi Kleen 6 # 6 # 7 # This software may be used and distributed ac 7 # This software may be used and distributed according to the terms 8 # of the GNU General Public License, incorpora 8 # of the GNU General Public License, incorporated herein by reference. 9 9 10 import sys, os, re, argparse !! 10 import sys, os, re 11 from signal import signal, SIGPIPE, SIG_DFL 11 from signal import signal, SIGPIPE, SIG_DFL 12 12 13 signal(SIGPIPE, SIG_DFL) 13 signal(SIGPIPE, SIG_DFL) 14 14 15 parser = argparse.ArgumentParser(description=" !! 15 if len(sys.argv) < 3: 16 group = parser.add_mutually_exclusive_group() !! 16 sys.stderr.write("usage: %s [option] file1 file2\n" % sys.argv[0]) 17 group.add_argument('-c', help='categorize outp !! 17 sys.stderr.write("The options are:\n") 18 group.add_argument('-d', help='Show delta of D !! 18 sys.stderr.write("-c categorize output based on symbol type\n") 19 group.add_argument('-t', help='Show delta of t !! 19 sys.stderr.write("-d Show delta of Data Section\n") 20 parser.add_argument('-p', dest='prefix', help= !! 20 sys.stderr.write("-t Show delta of text Section\n") 21 parser.add_argument('file1', help='First file !! 21 sys.exit(-1) 22 parser.add_argument('file2', help='Second file << 23 << 24 args = parser.parse_args() << 25 22 26 re_NUMBER = re.compile(r'\.[0-9]+') 23 re_NUMBER = re.compile(r'\.[0-9]+') 27 24 28 def getsizes(file, format): 25 def getsizes(file, format): 29 sym = {} 26 sym = {} 30 nm = "nm" !! 27 with os.popen("nm --size-sort " + file) as f: 31 if args.prefix: << 32 nm = "{}nm".format(args.prefix) << 33 << 34 with os.popen("{} --size-sort {}".format(n << 35 for line in f: 28 for line in f: 36 if line.startswith("\n") or ":" in << 37 continue << 38 size, type, name = line.split() 29 size, type, name = line.split() 39 if type in format: 30 if type in format: 40 # strip generated symbols 31 # strip generated symbols 41 if name.startswith("__mod_"): 32 if name.startswith("__mod_"): continue 42 if name.startswith("__se_sys") !! 33 if name.startswith("SyS_"): continue 43 if name.startswith("__se_compa !! 34 if name.startswith("compat_SyS_"): continue 44 if name.startswith("__addressa << 45 if name == "linux_banner": con 35 if name == "linux_banner": continue 46 if name == "vermagic": continu << 47 # statics and some other optim 36 # statics and some other optimizations adds random .NUMBER 48 name = re_NUMBER.sub('', name) 37 name = re_NUMBER.sub('', name) 49 sym[name] = sym.get(name, 0) + 38 sym[name] = sym.get(name, 0) + int(size, 16) 50 return sym 39 return sym 51 40 52 def calc(oldfile, newfile, format): 41 def calc(oldfile, newfile, format): 53 old = getsizes(oldfile, format) 42 old = getsizes(oldfile, format) 54 new = getsizes(newfile, format) 43 new = getsizes(newfile, format) 55 grow, shrink, add, remove, up, down = 0, 0 44 grow, shrink, add, remove, up, down = 0, 0, 0, 0, 0, 0 56 delta, common = [], {} 45 delta, common = [], {} 57 otot, ntot = 0, 0 46 otot, ntot = 0, 0 58 47 59 for a in old: 48 for a in old: 60 if a in new: 49 if a in new: 61 common[a] = 1 50 common[a] = 1 62 51 63 for name in old: 52 for name in old: 64 otot += old[name] 53 otot += old[name] 65 if name not in common: 54 if name not in common: 66 remove += 1 55 remove += 1 67 down += old[name] 56 down += old[name] 68 delta.append((-old[name], name)) 57 delta.append((-old[name], name)) 69 58 70 for name in new: 59 for name in new: 71 ntot += new[name] 60 ntot += new[name] 72 if name not in common: 61 if name not in common: 73 add += 1 62 add += 1 74 up += new[name] 63 up += new[name] 75 delta.append((new[name], name)) 64 delta.append((new[name], name)) 76 65 77 for name in common: 66 for name in common: 78 d = new.get(name, 0) - old.get(name, 0 67 d = new.get(name, 0) - old.get(name, 0) 79 if d>0: grow, up = grow+1, up+d 68 if d>0: grow, up = grow+1, up+d 80 if d<0: shrink, down = shrink+1, down- 69 if d<0: shrink, down = shrink+1, down-d 81 delta.append((d, name)) 70 delta.append((d, name)) 82 71 83 delta.sort(reverse=True) !! 72 delta.sort() >> 73 delta.reverse() 84 return grow, shrink, add, remove, up, down 74 return grow, shrink, add, remove, up, down, delta, old, new, otot, ntot 85 75 86 def print_result(symboltype, symbolformat): !! 76 def print_result(symboltype, symbolformat, argc): 87 grow, shrink, add, remove, up, down, delta 77 grow, shrink, add, remove, up, down, delta, old, new, otot, ntot = \ 88 calc(args.file1, args.file2, symbolformat) !! 78 calc(sys.argv[argc - 1], sys.argv[argc], symbolformat) 89 79 90 print("add/remove: %s/%s grow/shrink: %s/% 80 print("add/remove: %s/%s grow/shrink: %s/%s up/down: %s/%s (%s)" % \ 91 (add, remove, grow, shrink, up, -dow 81 (add, remove, grow, shrink, up, -down, up-down)) 92 print("%-40s %7s %7s %+7s" % (symboltype, 82 print("%-40s %7s %7s %+7s" % (symboltype, "old", "new", "delta")) 93 for d, n in delta: 83 for d, n in delta: 94 if d: print("%-40s %7s %7s %+7d" % (n, 84 if d: print("%-40s %7s %7s %+7d" % (n, old.get(n,"-"), new.get(n,"-"), d)) 95 85 96 if otot: 86 if otot: 97 percent = (ntot - otot) * 100.0 / otot 87 percent = (ntot - otot) * 100.0 / otot 98 else: 88 else: 99 percent = 0 89 percent = 0 100 print("Total: Before=%d, After=%d, chg %+. 90 print("Total: Before=%d, After=%d, chg %+.2f%%" % (otot, ntot, percent)) 101 91 102 if args.c: !! 92 if sys.argv[1] == "-c": 103 print_result("Function", "tTwW") !! 93 print_result("Function", "tT", 3) 104 print_result("Data", "dDbBvV") !! 94 print_result("Data", "dDbB", 3) 105 print_result("RO Data", "rR") !! 95 print_result("RO Data", "rR", 3) 106 elif args.d: !! 96 elif sys.argv[1] == "-d": 107 print_result("Data", "dDbBrRvV") !! 97 print_result("Data", "dDbBrR", 3) 108 elif args.t: !! 98 elif sys.argv[1] == "-t": 109 print_result("Function", "tTwW") !! 99 print_result("Function", "tT", 3) 110 else: 100 else: 111 print_result("Function", "tTdDbBrRvVwW") !! 101 print_result("Function", "tTdDbBrR", 2)
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.