Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
| 2 | |
| 3 | """ |
| 4 | Purpose |
| 5 | |
| 6 | This script is for comparing the size of the library files from two |
| 7 | different Git revisions within an Mbed TLS repository. |
| 8 | The results of the comparison is formatted as csv and stored at a |
| 9 | configurable location. |
| 10 | Note: must be run from Mbed TLS root. |
| 11 | """ |
| 12 | |
| 13 | # Copyright The Mbed TLS Contributors |
| 14 | # SPDX-License-Identifier: Apache-2.0 |
| 15 | # |
| 16 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 17 | # not use this file except in compliance with the License. |
| 18 | # You may obtain a copy of the License at |
| 19 | # |
| 20 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 21 | # |
| 22 | # Unless required by applicable law or agreed to in writing, software |
| 23 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 24 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 25 | # See the License for the specific language governing permissions and |
| 26 | # limitations under the License. |
| 27 | |
| 28 | import argparse |
| 29 | import os |
| 30 | import subprocess |
| 31 | import sys |
| 32 | |
Gilles Peskine | d9071e7 | 2022-09-18 21:17:09 +0200 | [diff] [blame^] | 33 | from mbedtls_dev import build_tree |
| 34 | |
| 35 | |
Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 36 | class CodeSizeComparison: |
Xiaofei Bai | 2400b50 | 2021-10-21 12:22:58 +0000 | [diff] [blame] | 37 | """Compare code size between two Git revisions.""" |
Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 38 | |
| 39 | def __init__(self, old_revision, new_revision, result_dir): |
| 40 | """ |
| 41 | old_revision: revision to compare against |
| 42 | new_revision: |
Shaun Case | 8b0ecbc | 2021-12-20 21:14:10 -0800 | [diff] [blame] | 43 | result_dir: directory for comparison result |
Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 44 | """ |
| 45 | self.repo_path = "." |
| 46 | self.result_dir = os.path.abspath(result_dir) |
Xiaofei Bai | 184e8b6 | 2021-10-26 09:23:42 +0000 | [diff] [blame] | 47 | os.makedirs(self.result_dir, exist_ok=True) |
Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 48 | |
| 49 | self.csv_dir = os.path.abspath("code_size_records/") |
Xiaofei Bai | 184e8b6 | 2021-10-26 09:23:42 +0000 | [diff] [blame] | 50 | os.makedirs(self.csv_dir, exist_ok=True) |
Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 51 | |
| 52 | self.old_rev = old_revision |
| 53 | self.new_rev = new_revision |
| 54 | self.git_command = "git" |
| 55 | self.make_command = "make" |
| 56 | |
| 57 | @staticmethod |
Xiaofei Bai | 2400b50 | 2021-10-21 12:22:58 +0000 | [diff] [blame] | 58 | def validate_revision(revision): |
Xiaofei Bai | ccd738b | 2021-11-03 07:12:31 +0000 | [diff] [blame] | 59 | result = subprocess.check_output(["git", "rev-parse", "--verify", |
| 60 | revision + "^{commit}"], shell=False) |
Xiaofei Bai | 184e8b6 | 2021-10-26 09:23:42 +0000 | [diff] [blame] | 61 | return result |
Xiaofei Bai | 2400b50 | 2021-10-21 12:22:58 +0000 | [diff] [blame] | 62 | |
Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 63 | def _create_git_worktree(self, revision): |
| 64 | """Make a separate worktree for revision. |
| 65 | Do not modify the current worktree.""" |
| 66 | |
Xiaofei Bai | 184e8b6 | 2021-10-26 09:23:42 +0000 | [diff] [blame] | 67 | if revision == "current": |
Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 68 | print("Using current work directory.") |
| 69 | git_worktree_path = self.repo_path |
| 70 | else: |
| 71 | print("Creating git worktree for", revision) |
Xiaofei Bai | 184e8b6 | 2021-10-26 09:23:42 +0000 | [diff] [blame] | 72 | git_worktree_path = os.path.join(self.repo_path, "temp-" + revision) |
Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 73 | subprocess.check_output( |
| 74 | [self.git_command, "worktree", "add", "--detach", |
| 75 | git_worktree_path, revision], cwd=self.repo_path, |
| 76 | stderr=subprocess.STDOUT |
| 77 | ) |
| 78 | return git_worktree_path |
| 79 | |
| 80 | def _build_libraries(self, git_worktree_path): |
| 81 | """Build libraries in the specified worktree.""" |
| 82 | |
| 83 | my_environment = os.environ.copy() |
| 84 | subprocess.check_output( |
| 85 | [self.make_command, "-j", "lib"], env=my_environment, |
| 86 | cwd=git_worktree_path, stderr=subprocess.STDOUT, |
| 87 | ) |
| 88 | |
| 89 | def _gen_code_size_csv(self, revision, git_worktree_path): |
| 90 | """Generate code size csv file.""" |
| 91 | |
Xiaofei Bai | 184e8b6 | 2021-10-26 09:23:42 +0000 | [diff] [blame] | 92 | csv_fname = revision + ".csv" |
| 93 | if revision == "current": |
| 94 | print("Measuring code size in current work directory.") |
| 95 | else: |
| 96 | print("Measuring code size for", revision) |
Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 97 | result = subprocess.check_output( |
| 98 | ["size library/*.o"], cwd=git_worktree_path, shell=True |
| 99 | ) |
| 100 | size_text = result.decode() |
| 101 | csv_file = open(os.path.join(self.csv_dir, csv_fname), "w") |
| 102 | for line in size_text.splitlines()[1:]: |
| 103 | data = line.split() |
| 104 | csv_file.write("{}, {}\n".format(data[5], data[3])) |
| 105 | |
| 106 | def _remove_worktree(self, git_worktree_path): |
| 107 | """Remove temporary worktree.""" |
| 108 | if git_worktree_path != self.repo_path: |
| 109 | print("Removing temporary worktree", git_worktree_path) |
| 110 | subprocess.check_output( |
| 111 | [self.git_command, "worktree", "remove", "--force", |
| 112 | git_worktree_path], cwd=self.repo_path, |
| 113 | stderr=subprocess.STDOUT |
| 114 | ) |
| 115 | |
| 116 | def _get_code_size_for_rev(self, revision): |
| 117 | """Generate code size csv file for the specified git revision.""" |
| 118 | |
| 119 | # Check if the corresponding record exists |
Xiaofei Bai | 184e8b6 | 2021-10-26 09:23:42 +0000 | [diff] [blame] | 120 | csv_fname = revision + ".csv" |
| 121 | if (revision != "current") and \ |
Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 122 | os.path.exists(os.path.join(self.csv_dir, csv_fname)): |
| 123 | print("Code size csv file for", revision, "already exists.") |
| 124 | else: |
| 125 | git_worktree_path = self._create_git_worktree(revision) |
| 126 | self._build_libraries(git_worktree_path) |
| 127 | self._gen_code_size_csv(revision, git_worktree_path) |
| 128 | self._remove_worktree(git_worktree_path) |
| 129 | |
| 130 | def compare_code_size(self): |
| 131 | """Generate results of the size changes between two revisions, |
| 132 | old and new. Measured code size results of these two revisions |
Xiaofei Bai | 2400b50 | 2021-10-21 12:22:58 +0000 | [diff] [blame] | 133 | must be available.""" |
Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 134 | |
Xiaofei Bai | 184e8b6 | 2021-10-26 09:23:42 +0000 | [diff] [blame] | 135 | old_file = open(os.path.join(self.csv_dir, self.old_rev + ".csv"), "r") |
| 136 | new_file = open(os.path.join(self.csv_dir, self.new_rev + ".csv"), "r") |
| 137 | res_file = open(os.path.join(self.result_dir, "compare-" + self.old_rev |
| 138 | + "-" + self.new_rev + ".csv"), "w") |
| 139 | |
Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 140 | res_file.write("file_name, this_size, old_size, change, change %\n") |
Shaun Case | 8b0ecbc | 2021-12-20 21:14:10 -0800 | [diff] [blame] | 141 | print("Generating comparison results.") |
Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 142 | |
| 143 | old_ds = {} |
| 144 | for line in old_file.readlines()[1:]: |
| 145 | cols = line.split(", ") |
| 146 | fname = cols[0] |
| 147 | size = int(cols[1]) |
| 148 | if size != 0: |
| 149 | old_ds[fname] = size |
| 150 | |
| 151 | new_ds = {} |
| 152 | for line in new_file.readlines()[1:]: |
| 153 | cols = line.split(", ") |
| 154 | fname = cols[0] |
| 155 | size = int(cols[1]) |
| 156 | new_ds[fname] = size |
| 157 | |
| 158 | for fname in new_ds: |
| 159 | this_size = new_ds[fname] |
| 160 | if fname in old_ds: |
| 161 | old_size = old_ds[fname] |
| 162 | change = this_size - old_size |
| 163 | change_pct = change / old_size |
| 164 | res_file.write("{}, {}, {}, {}, {:.2%}\n".format(fname, \ |
| 165 | this_size, old_size, change, float(change_pct))) |
| 166 | else: |
| 167 | res_file.write("{}, {}\n".format(fname, this_size)) |
Xiaofei Bai | 2400b50 | 2021-10-21 12:22:58 +0000 | [diff] [blame] | 168 | return 0 |
Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 169 | |
| 170 | def get_comparision_results(self): |
| 171 | """Compare size of library/*.o between self.old_rev and self.new_rev, |
| 172 | and generate the result file.""" |
Gilles Peskine | d9071e7 | 2022-09-18 21:17:09 +0200 | [diff] [blame^] | 173 | build_tree.check_repo_path() |
Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 174 | self._get_code_size_for_rev(self.old_rev) |
| 175 | self._get_code_size_for_rev(self.new_rev) |
| 176 | return self.compare_code_size() |
| 177 | |
Xiaofei Bai | 2400b50 | 2021-10-21 12:22:58 +0000 | [diff] [blame] | 178 | def main(): |
Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 179 | parser = argparse.ArgumentParser( |
| 180 | description=( |
| 181 | """This script is for comparing the size of the library files |
| 182 | from two different Git revisions within an Mbed TLS repository. |
| 183 | The results of the comparison is formatted as csv, and stored at |
| 184 | a configurable location. |
| 185 | Note: must be run from Mbed TLS root.""" |
| 186 | ) |
| 187 | ) |
| 188 | parser.add_argument( |
| 189 | "-r", "--result-dir", type=str, default="comparison", |
| 190 | help="directory where comparison result is stored, \ |
| 191 | default is comparison", |
| 192 | ) |
| 193 | parser.add_argument( |
Xiaofei Bai | 184e8b6 | 2021-10-26 09:23:42 +0000 | [diff] [blame] | 194 | "-o", "--old-rev", type=str, help="old revision for comparison.", |
Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 195 | required=True, |
| 196 | ) |
| 197 | parser.add_argument( |
Xiaofei Bai | 184e8b6 | 2021-10-26 09:23:42 +0000 | [diff] [blame] | 198 | "-n", "--new-rev", type=str, default=None, |
| 199 | help="new revision for comparison, default is the current work \ |
Shaun Case | 8b0ecbc | 2021-12-20 21:14:10 -0800 | [diff] [blame] | 200 | directory, including uncommitted changes." |
Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 201 | ) |
| 202 | comp_args = parser.parse_args() |
| 203 | |
| 204 | if os.path.isfile(comp_args.result_dir): |
| 205 | print("Error: {} is not a directory".format(comp_args.result_dir)) |
| 206 | parser.exit() |
| 207 | |
Xiaofei Bai | 184e8b6 | 2021-10-26 09:23:42 +0000 | [diff] [blame] | 208 | validate_res = CodeSizeComparison.validate_revision(comp_args.old_rev) |
Xiaofei Bai | ccd738b | 2021-11-03 07:12:31 +0000 | [diff] [blame] | 209 | old_revision = validate_res.decode().replace("\n", "") |
Xiaofei Bai | 2400b50 | 2021-10-21 12:22:58 +0000 | [diff] [blame] | 210 | |
Xiaofei Bai | 184e8b6 | 2021-10-26 09:23:42 +0000 | [diff] [blame] | 211 | if comp_args.new_rev is not None: |
| 212 | validate_res = CodeSizeComparison.validate_revision(comp_args.new_rev) |
Xiaofei Bai | ccd738b | 2021-11-03 07:12:31 +0000 | [diff] [blame] | 213 | new_revision = validate_res.decode().replace("\n", "") |
Xiaofei Bai | 184e8b6 | 2021-10-26 09:23:42 +0000 | [diff] [blame] | 214 | else: |
| 215 | new_revision = "current" |
Xiaofei Bai | 2400b50 | 2021-10-21 12:22:58 +0000 | [diff] [blame] | 216 | |
Xiaofei Bai | bca03e5 | 2021-09-09 09:42:37 +0000 | [diff] [blame] | 217 | result_dir = comp_args.result_dir |
| 218 | size_compare = CodeSizeComparison(old_revision, new_revision, result_dir) |
| 219 | return_code = size_compare.get_comparision_results() |
| 220 | sys.exit(return_code) |
| 221 | |
| 222 | |
| 223 | if __name__ == "__main__": |
Xiaofei Bai | 2400b50 | 2021-10-21 12:22:58 +0000 | [diff] [blame] | 224 | main() |