summaryrefslogtreecommitdiffstats
path: root/src/tools/utils/sbe-size/section-sizes.py
blob: 764a254a1b47519bce16d0845784bd5676eb2ff4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#!/usr/bin/env python3
# IBM_PROLOG_BEGIN_TAG
# This is an automatically generated prolog.
#
# $Source: src/tools/utils/sbe-size/section-sizes.py $
#
# OpenPOWER sbe Project
#
# Contributors Listed Below - COPYRIGHT 2018
# [+] International Business Machines Corp.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied. See the License for the specific language governing
# permissions and limitations under the License.
#
# IBM_PROLOG_END_TAG

from elftools.elf.elffile import ELFFile
from os import path
from itertools import groupby
from sys import argv, stderr
from argparse import ArgumentParser
from collections import defaultdict

def load_mapfile(fname):
    sections = defaultdict(lambda: set())
    with open(fname) as f:
        for line in f:
            if "memory map" in line:
                break

        for line in f:
            if line[0:2] != " .":
                continue

            parts = line.split()
            if len(parts) == 1:
                parts += next(f).split()

            name, addr, size, object = parts
            if "(" in object:
                dirname, fname = path.split(object)
                fname = fname[fname.index("(")+1:-1]
                object = path.join(dirname, fname)

            sections[path.abspath(object)].add(name)

    return sections

parser = ArgumentParser(description="Collect summary of section sizes")
parser.add_argument("-m", "--mapfile", help="Count only sections that are used according to MAPFILE")
parser.add_argument("object", nargs="+", help="List of object files to count")
args = parser.parse_args()

section_filter = None if not args.mapfile else load_mapfile(args.mapfile)

for fname in sorted(args.object):
    fname = path.abspath(fname)
    pname = "/".join(fname.split("/")[-2:])
    with open(fname, "rb") as f:
        data = 0
        code = 0
        elf = ELFFile(f)

        for section in elf.iter_sections():
            if section_filter and section.name not in section_filter[fname]:
                continue

            for start in (".text", ".base"):
                if section.name.startswith(start):
                    code += section.header.sh_size
                    continue

            for start in (".rodata", ".data", ".sdata", ".sbss", ".bss"):
                if section.name.startswith(start):
                    data += section.header.sh_size
                    continue
        stack = 0
        if code:
            try:
                with open(path.splitext(fname)[0] + ".su") as f:
                    stack = sum(int(line.split("\t")[1]) for line in f)
            except IOError:
                pass

        if code or data or stack:
            print(pname, code, data, stack)
OpenPOWER on IntegriCloud