diff options
author | Andi Kleen <ak@linux.intel.com> | 2013-10-22 11:46:23 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2013-11-06 16:25:59 -0500 |
commit | 21cf6e584ce35b79374581e6344dd7c74f8b4a2b (patch) | |
tree | 8a8a6c8cc29b56b8e3a91e89afad70f3fb08249f /scripts | |
parent | f3462aa952cfc8f4b095103cb9b3d306dd216558 (diff) |
kbuild, bloat-o-meter: fix static detection
Disable static detection: the static currently drops a lot of useful
information including clones generated by gcc. Drop this. The statics
will appear now without static. prefix.
But remove the LTO .NUMBER postfixes that look ugly
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/bloat-o-meter | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/bloat-o-meter b/scripts/bloat-o-meter index 6129020c41a9..855198c9dedb 100755 --- a/scripts/bloat-o-meter +++ b/scripts/bloat-o-meter | |||
@@ -20,8 +20,8 @@ def getsizes(file): | |||
20 | if type in "tTdDbBrR": | 20 | if type in "tTdDbBrR": |
21 | # strip generated symbols | 21 | # strip generated symbols |
22 | if name[:6] == "__mod_": continue | 22 | if name[:6] == "__mod_": continue |
23 | # function names begin with '.' on 64-bit powerpc | 23 | # statics and some other optimizations adds random .NUMBER |
24 | if "." in name[1:]: name = "static." + name.split(".")[0] | 24 | name = re.sub(r'\.[0-9]+', '', name) |
25 | sym[name] = sym.get(name, 0) + int(size, 16) | 25 | sym[name] = sym.get(name, 0) + int(size, 16) |
26 | return sym | 26 | return sym |
27 | 27 | ||