code_size_compare.py: integrate code with CodeSizeBase
The code size measurement script generates code size record / comparison csv file in a more readable format. The script won't generate new record file if there is an existing one. It reads the record and stores data into dictionary of code_size for comparison. Signed-off-by: Yanray Wang <yanray.wang@arm.com>
This commit is contained in:
parent
16ebc5725b
commit
8804db9d99
1 changed files with 21 additions and 41 deletions
|
@ -256,6 +256,7 @@ class CodeSizeComparison(CodeSizeBase):
|
||||||
result_dir: directory for comparison result.
|
result_dir: directory for comparison result.
|
||||||
code_size_info: an object containing information to build library.
|
code_size_info: an object containing information to build library.
|
||||||
"""
|
"""
|
||||||
|
super().__init__()
|
||||||
self.repo_path = "."
|
self.repo_path = "."
|
||||||
self.result_dir = os.path.abspath(result_dir)
|
self.result_dir = os.path.abspath(result_dir)
|
||||||
os.makedirs(self.result_dir, exist_ok=True)
|
os.makedirs(self.result_dir, exist_ok=True)
|
||||||
|
@ -309,19 +310,26 @@ class CodeSizeComparison(CodeSizeBase):
|
||||||
def _gen_code_size_csv(self, revision, git_worktree_path):
|
def _gen_code_size_csv(self, revision, git_worktree_path):
|
||||||
"""Generate code size csv file."""
|
"""Generate code size csv file."""
|
||||||
|
|
||||||
csv_fname = revision + self.fname_suffix + ".csv"
|
|
||||||
if revision == "current":
|
if revision == "current":
|
||||||
print("Measuring code size in current work directory.")
|
print("Measuring code size in current work directory.")
|
||||||
else:
|
else:
|
||||||
print("Measuring code size for", revision)
|
print("Measuring code size for", revision)
|
||||||
result = subprocess.check_output(
|
|
||||||
["size library/*.o"], cwd=git_worktree_path, shell=True
|
for mod, st_lib in MBEDTLS_STATIC_LIB.items():
|
||||||
)
|
try:
|
||||||
size_text = result.decode()
|
result = subprocess.check_output(
|
||||||
csv_file = open(os.path.join(self.csv_dir, csv_fname), "w")
|
["size", st_lib, "-t"], cwd=git_worktree_path
|
||||||
for line in size_text.splitlines()[1:]:
|
)
|
||||||
data = line.split()
|
except subprocess.CalledProcessError as e:
|
||||||
csv_file.write("{}, {}\n".format(data[5], data[3]))
|
self._handle_called_process_error(e, git_worktree_path)
|
||||||
|
size_text = result.decode("utf-8")
|
||||||
|
|
||||||
|
self.set_size_record(revision, mod, size_text)
|
||||||
|
|
||||||
|
print("Generating code size csv for", revision)
|
||||||
|
csv_file = open(os.path.join(self.csv_dir, revision +
|
||||||
|
self.fname_suffix + ".csv"), "w")
|
||||||
|
self.write_size_record(revision, csv_file)
|
||||||
|
|
||||||
def _remove_worktree(self, git_worktree_path):
|
def _remove_worktree(self, git_worktree_path):
|
||||||
"""Remove temporary worktree."""
|
"""Remove temporary worktree."""
|
||||||
|
@ -341,54 +349,26 @@ class CodeSizeComparison(CodeSizeBase):
|
||||||
if (revision != "current") and \
|
if (revision != "current") and \
|
||||||
os.path.exists(os.path.join(self.csv_dir, csv_fname)):
|
os.path.exists(os.path.join(self.csv_dir, csv_fname)):
|
||||||
print("Code size csv file for", revision, "already exists.")
|
print("Code size csv file for", revision, "already exists.")
|
||||||
|
self.read_size_record(revision, os.path.join(self.csv_dir, csv_fname))
|
||||||
else:
|
else:
|
||||||
git_worktree_path = self._create_git_worktree(revision)
|
git_worktree_path = self._create_git_worktree(revision)
|
||||||
self._build_libraries(git_worktree_path)
|
self._build_libraries(git_worktree_path)
|
||||||
self._gen_code_size_csv(revision, git_worktree_path)
|
self._gen_code_size_csv(revision, git_worktree_path)
|
||||||
self._remove_worktree(git_worktree_path)
|
self._remove_worktree(git_worktree_path)
|
||||||
|
|
||||||
def compare_code_size(self):
|
def _gen_code_size_comparison(self):
|
||||||
"""Generate results of the size changes between two revisions,
|
"""Generate results of the size changes between two revisions,
|
||||||
old and new. Measured code size results of these two revisions
|
old and new. Measured code size results of these two revisions
|
||||||
must be available."""
|
must be available."""
|
||||||
|
|
||||||
old_file = open(os.path.join(self.csv_dir, self.old_rev +
|
|
||||||
self.fname_suffix + ".csv"), "r")
|
|
||||||
new_file = open(os.path.join(self.csv_dir, self.new_rev +
|
|
||||||
self.fname_suffix + ".csv"), "r")
|
|
||||||
res_file = open(os.path.join(self.result_dir, "compare-" +
|
res_file = open(os.path.join(self.result_dir, "compare-" +
|
||||||
self.old_rev + "-" + self.new_rev +
|
self.old_rev + "-" + self.new_rev +
|
||||||
self.fname_suffix +
|
self.fname_suffix +
|
||||||
".csv"), "w")
|
".csv"), "w")
|
||||||
|
|
||||||
res_file.write("file_name, this_size, old_size, change, change %\n")
|
|
||||||
print("Generating comparison results.")
|
print("Generating comparison results.")
|
||||||
|
self.write_comparison(self.old_rev, self.new_rev, res_file)
|
||||||
|
|
||||||
old_ds = {}
|
|
||||||
for line in old_file.readlines():
|
|
||||||
cols = line.split(", ")
|
|
||||||
fname = cols[0]
|
|
||||||
size = int(cols[1])
|
|
||||||
if size != 0:
|
|
||||||
old_ds[fname] = size
|
|
||||||
|
|
||||||
new_ds = {}
|
|
||||||
for line in new_file.readlines():
|
|
||||||
cols = line.split(", ")
|
|
||||||
fname = cols[0]
|
|
||||||
size = int(cols[1])
|
|
||||||
new_ds[fname] = size
|
|
||||||
|
|
||||||
for fname in new_ds:
|
|
||||||
this_size = new_ds[fname]
|
|
||||||
if fname in old_ds:
|
|
||||||
old_size = old_ds[fname]
|
|
||||||
change = this_size - old_size
|
|
||||||
change_pct = change / old_size
|
|
||||||
res_file.write("{}, {}, {}, {}, {:.2%}\n".format(fname, \
|
|
||||||
this_size, old_size, change, float(change_pct)))
|
|
||||||
else:
|
|
||||||
res_file.write("{}, {}\n".format(fname, this_size))
|
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
def get_comparision_results(self):
|
def get_comparision_results(self):
|
||||||
|
@ -397,7 +377,7 @@ class CodeSizeComparison(CodeSizeBase):
|
||||||
build_tree.check_repo_path()
|
build_tree.check_repo_path()
|
||||||
self._get_code_size_for_rev(self.old_rev)
|
self._get_code_size_for_rev(self.old_rev)
|
||||||
self._get_code_size_for_rev(self.new_rev)
|
self._get_code_size_for_rev(self.new_rev)
|
||||||
return self.compare_code_size()
|
return self._gen_code_size_comparison()
|
||||||
|
|
||||||
def _handle_called_process_error(self, e: subprocess.CalledProcessError,
|
def _handle_called_process_error(self, e: subprocess.CalledProcessError,
|
||||||
git_worktree_path):
|
git_worktree_path):
|
||||||
|
|
Loading…
Reference in a new issue