forked from github/verilator
Improve ccache-report
This commit is contained in:
parent
809701d7c6
commit
5555f20bd2
@ -4,8 +4,11 @@
|
|||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import collections
|
import collections
|
||||||
|
import pathlib
|
||||||
import re
|
import re
|
||||||
|
|
||||||
|
from datetime import datetime
|
||||||
|
|
||||||
parser = argparse.ArgumentParser(
|
parser = argparse.ArgumentParser(
|
||||||
allow_abbrev=False,
|
allow_abbrev=False,
|
||||||
formatter_class=argparse.RawDescriptionHelpFormatter,
|
formatter_class=argparse.RawDescriptionHelpFormatter,
|
||||||
@ -23,22 +26,33 @@ parser.add_argument('-o',
|
|||||||
metavar="OUTFILE",
|
metavar="OUTFILE",
|
||||||
required=True,
|
required=True,
|
||||||
help='output file')
|
help='output file')
|
||||||
parser.add_argument('logfile',
|
parser.add_argument('logdir', type=pathlib.Path, help='log directory')
|
||||||
type=argparse.FileType('r'),
|
|
||||||
help='ccache log file')
|
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
results = {}
|
results = {}
|
||||||
|
elapsed = {}
|
||||||
|
|
||||||
for line in args.logfile:
|
|
||||||
line = line.strip()
|
def toDateTime(s):
|
||||||
match = re.match(r'.*Object file: (.*)$', line)
|
return datetime.strptime(s, "%Y-%m-%dT%H:%M:%S.%f")
|
||||||
if match:
|
|
||||||
obj = match.group(1)
|
|
||||||
match = re.match(r'.*Result: (.*)$', line)
|
for logfile in args.logdir.iterdir():
|
||||||
if match:
|
with logfile.open() as fh:
|
||||||
results[obj] = match.group(1)
|
start = None
|
||||||
|
obj = None
|
||||||
|
for line in fh:
|
||||||
|
line = line.strip()
|
||||||
|
match = re.match(r'\[(\S+)\s.*Object file: (.*)$', line)
|
||||||
|
if match:
|
||||||
|
start = toDateTime(match.group(1))
|
||||||
|
obj = match.group(2)
|
||||||
|
match = re.match(r'\[(\S+)\s.*Result: (.*)$', line)
|
||||||
|
if match:
|
||||||
|
assert obj is not None
|
||||||
|
elapsed[obj] = toDateTime(match.group(1)) - start
|
||||||
|
results[obj] = match.group(2)
|
||||||
|
|
||||||
args.o.write("#" * 80 + "\n")
|
args.o.write("#" * 80 + "\n")
|
||||||
args.o.write("ccache report (from verilator_ccache_report) :\n")
|
args.o.write("ccache report (from verilator_ccache_report) :\n")
|
||||||
@ -47,19 +61,33 @@ if not results:
|
|||||||
args.o.write("\nAll object files up to date\n")
|
args.o.write("\nAll object files up to date\n")
|
||||||
else:
|
else:
|
||||||
args.o.write("\nCompiled object files:\n")
|
args.o.write("\nCompiled object files:\n")
|
||||||
width = max(len(_) for _ in results) + 1
|
wnames = max(len(_) for _ in results) + 1
|
||||||
|
wresults = max(len(_) for _ in results.values()) + 1
|
||||||
for k in sorted(results.keys()):
|
for k in sorted(results.keys()):
|
||||||
args.o.write("{:{width}} : {}\n".format(k, results[k], width=width))
|
args.o.write("{:{wnames}} : {:{wresults}} : {}s\n".format(
|
||||||
|
k,
|
||||||
|
results[k],
|
||||||
|
elapsed[k].total_seconds(),
|
||||||
|
wnames=wnames,
|
||||||
|
wresults=wresults))
|
||||||
|
|
||||||
args.o.write("\nSummary:\n")
|
args.o.write("\nSummary:\n")
|
||||||
counts = collections.Counter(_ for _ in results.values())
|
counts = collections.Counter(_ for _ in results.values())
|
||||||
total = sum(counts.values())
|
total = sum(counts.values())
|
||||||
width = max(len(_) for _ in results.values()) + 1
|
|
||||||
for k in sorted(counts.keys()):
|
for k in sorted(counts.keys()):
|
||||||
c = counts[k]
|
c = counts[k]
|
||||||
args.o.write("{:{width}}| {} ({:.2%})\n".format(k,
|
args.o.write("{:{width}}| {} ({:.2%})\n".format(k,
|
||||||
c,
|
c,
|
||||||
c / total,
|
c / total,
|
||||||
width=width))
|
width=wresults))
|
||||||
|
|
||||||
|
args.o.write("\nLongest:\n")
|
||||||
|
longest = sorted(list(elapsed.items()),
|
||||||
|
key=lambda kv: -kv[1].total_seconds())
|
||||||
|
for i, (k, v) in enumerate(longest):
|
||||||
|
args.o.write("{:{width}}| {}s\n".format(k,
|
||||||
|
v.total_seconds(),
|
||||||
|
width=wnames))
|
||||||
|
if i > 4: break
|
||||||
|
|
||||||
args.o.write("#" * 80 + "\n")
|
args.o.write("#" * 80 + "\n")
|
||||||
|
@ -269,15 +269,20 @@ ifneq ($(findstring ccache-report,$(MAKECMDGOALS)),)
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
# Report ccache behaviour for this invocation of make
|
# Report ccache behaviour for this invocation of make
|
||||||
export CCACHE_LOGFILE := $(VM_PREFIX).ccache-log
|
VK_CCACHE_LOGDIR := ccache-logs
|
||||||
VK_CCACHE_REPORT := $(VM_PREFIX)__ccache_report.txt
|
VK_CCACHE_REPORT := $(VM_PREFIX)__ccache_report.txt
|
||||||
# Truncate logfile
|
# Remove previous logfiles and report
|
||||||
$(shell echo "" > $(CCACHE_LOGFILE))
|
$(shell rm -rf $(VK_CCACHE_LOGDIR) $(VK_CCACHE_REPORT))
|
||||||
# Remove previous report
|
|
||||||
$(shell rm -f $(VK_CCACHE_REPORT))
|
$(VK_CCACHE_LOGDIR):
|
||||||
|
mkdir -p $@
|
||||||
|
|
||||||
|
$(VK_OBJS): | $(VK_CCACHE_LOGDIR)
|
||||||
|
|
||||||
|
$(VK_OBJS): export CCACHE_LOGFILE=$(VK_CCACHE_LOGDIR)/$@.log
|
||||||
|
|
||||||
$(VK_CCACHE_REPORT): $(VK_OBJS)
|
$(VK_CCACHE_REPORT): $(VK_OBJS)
|
||||||
$(VERILATOR_CCACHE_REPORT) -o $@ $(CCACHE_LOGFILE)
|
$(VERILATOR_CCACHE_REPORT) -o $@ $(VK_CCACHE_LOGDIR)
|
||||||
|
|
||||||
.PHONY: ccache-report
|
.PHONY: ccache-report
|
||||||
ccache-report: $(VK_CCACHE_REPORT)
|
ccache-report: $(VK_CCACHE_REPORT)
|
||||||
|
@ -31,8 +31,7 @@ my $report = "$Self->{obj_dir}/$Self->{VM_PREFIX}__ccache_report.txt";
|
|||||||
|
|
||||||
# We do not actually want to make this test depend on whether the file was
|
# We do not actually want to make this test depend on whether the file was
|
||||||
# cached or not, so trim the report to ignore actual caching behaviour
|
# cached or not, so trim the report to ignore actual caching behaviour
|
||||||
run(cmd => ["sed", "-i", "-e", "'s/ : .*/ : IGNORED/; /^Summary/,\$d;'", $report]);
|
run(cmd => ["sed", "-i", "-e", "'s/ : .*/ : IGNORED/; /|/s/.*/IGNORED/;'", $report]);
|
||||||
|
|
||||||
files_identical($report, "t/$Self->{name}__ccache_report_initial.out");
|
files_identical($report, "t/$Self->{name}__ccache_report_initial.out");
|
||||||
|
|
||||||
# Now rebuild again (should be all up to date)
|
# Now rebuild again (should be all up to date)
|
||||||
|
@ -2,8 +2,11 @@
|
|||||||
ccache report (from verilator_ccache_report) :
|
ccache report (from verilator_ccache_report) :
|
||||||
|
|
||||||
Compiled object files:
|
Compiled object files:
|
||||||
Vt_ccache_report__ALL.o : IGNORED
|
Vt_ccache_report__ALL.o : IGNORED
|
||||||
Vt_ccache_report__main.o : IGNORED
|
|
||||||
verilated.o : IGNORED
|
|
||||||
verilated_vcd_c.o : IGNORED
|
|
||||||
|
|
||||||
|
Summary:
|
||||||
|
IGNORED
|
||||||
|
|
||||||
|
Longest:
|
||||||
|
IGNORED
|
||||||
|
################################################################################
|
||||||
|
Loading…
Reference in New Issue
Block a user