blob: de3dc90bd42b0eb83a9d8aaa5b43cdfde52bc436 [file] [log] [blame]
Leon Clarkef7060e22010-06-03 12:02:55 +01001#!/usr/bin/env python
2#
3# Copyright 2010 the V8 project authors. All rights reserved.
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met:
7#
8# * Redistributions of source code must retain the above copyright
9# notice, this list of conditions and the following disclaimer.
10# * Redistributions in binary form must reproduce the above
11# copyright notice, this list of conditions and the following
12# disclaimer in the documentation and/or other materials provided
13# with the distribution.
14# * Neither the name of Google Inc. nor the names of its
15# contributors may be used to endorse or promote products derived
16# from this software without specific prior written permission.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29#
30
31#
32# This is an utility for plotting charts based on GC traces produced by V8 when
33# run with flags --trace-gc --trace-gc-nvp. Relies on gnuplot for actual
34# plotting.
35#
36# Usage: gc-nvp-trace-processor.py <GC-trace-filename>
37#
38
39
40from __future__ import with_statement
Iain Merrick75681382010-08-19 15:07:18 +010041import sys, types, re, subprocess, math
Leon Clarkef7060e22010-06-03 12:02:55 +010042
43def flatten(l):
44 flat = []
45 for i in l: flat.extend(i)
46 return flat
47
48def split_nvp(s):
49 t = {}
Kristian Monsen50ef84f2010-07-29 15:18:00 +010050 for (name, value) in re.findall(r"(\w+)=([-\w]+)", s):
51 try:
52 t[name] = int(value)
53 except ValueError:
54 t[name] = value
55
Leon Clarkef7060e22010-06-03 12:02:55 +010056 return t
57
58def parse_gc_trace(input):
59 trace = []
60 with open(input) as f:
61 for line in f:
62 info = split_nvp(line)
63 if info and 'pause' in info and info['pause'] > 0:
64 info['i'] = len(trace)
65 trace.append(info)
66 return trace
67
68def extract_field_names(script):
69 fields = { 'data': true, 'in': true }
70
71 for m in re.finditer(r"$(\w+)", script):
72 field_name = m.group(1)
73 if field_name not in fields:
74 fields[field] = field_count
75 field_count = field_count + 1
76
77 return fields
78
79def gnuplot(script):
80 gnuplot = subprocess.Popen(["gnuplot"], stdin=subprocess.PIPE)
81 gnuplot.stdin.write(script)
82 gnuplot.stdin.close()
83 gnuplot.wait()
84
85x1y1 = 'x1y1'
86x1y2 = 'x1y2'
87x2y1 = 'x2y1'
88x2y2 = 'x2y2'
89
90class Item(object):
91 def __init__(self, title, field, axis = x1y1, **keywords):
92 self.title = title
93 self.axis = axis
94 self.props = keywords
95 if type(field) is types.ListType:
96 self.field = field
97 else:
98 self.field = [field]
99
100 def fieldrefs(self):
101 return self.field
102
103 def to_gnuplot(self, context):
104 args = ['"%s"' % context.datafile,
105 'using %s' % context.format_fieldref(self.field),
106 'title "%s"' % self.title,
107 'axis %s' % self.axis]
108 if 'style' in self.props:
109 args.append('with %s' % self.props['style'])
110 if 'lc' in self.props:
111 args.append('lc rgb "%s"' % self.props['lc'])
112 if 'fs' in self.props:
113 args.append('fs %s' % self.props['fs'])
114 return ' '.join(args)
115
116class Plot(object):
117 def __init__(self, *items):
118 self.items = items
119
120 def fieldrefs(self):
121 return flatten([item.fieldrefs() for item in self.items])
122
123 def to_gnuplot(self, ctx):
124 return 'plot ' + ', '.join([item.to_gnuplot(ctx) for item in self.items])
125
126class Set(object):
127 def __init__(self, value):
128 self.value = value
129
130 def to_gnuplot(self, ctx):
131 return 'set ' + self.value
132
133 def fieldrefs(self):
134 return []
135
136class Context(object):
137 def __init__(self, datafile, field_to_index):
138 self.datafile = datafile
139 self.field_to_index = field_to_index
140
141 def format_fieldref(self, fieldref):
142 return ':'.join([str(self.field_to_index[field]) for field in fieldref])
143
144def collect_fields(plot):
145 field_to_index = {}
146 fields = []
147
148 def add_field(field):
149 if field not in field_to_index:
150 fields.append(field)
151 field_to_index[field] = len(fields)
152
153 for field in flatten([item.fieldrefs() for item in plot]):
154 add_field(field)
155
156 return (fields, field_to_index)
157
158def is_y2_used(plot):
159 for subplot in plot:
160 if isinstance(subplot, Plot):
161 for item in subplot.items:
162 if item.axis == x1y2 or item.axis == x2y2:
163 return True
164 return False
165
166def get_field(trace_line, field):
167 t = type(field)
168 if t is types.StringType:
169 return trace_line[field]
170 elif t is types.FunctionType:
171 return field(trace_line)
172
173def generate_datafile(datafile_name, trace, fields):
174 with open(datafile_name, 'w') as datafile:
175 for line in trace:
176 data_line = [str(get_field(line, field)) for field in fields]
177 datafile.write('\t'.join(data_line))
178 datafile.write('\n')
179
180def generate_script_and_datafile(plot, trace, datafile, output):
181 (fields, field_to_index) = collect_fields(plot)
182 generate_datafile(datafile, trace, fields)
183 script = [
184 'set terminal png',
185 'set output "%s"' % output,
186 'set autoscale',
187 'set ytics nomirror',
188 'set xtics nomirror',
189 'set key below'
190 ]
191
192 if is_y2_used(plot):
193 script.append('set autoscale y2')
194 script.append('set y2tics')
195
196 context = Context(datafile, field_to_index)
197
198 for item in plot:
199 script.append(item.to_gnuplot(context))
200
201 return '\n'.join(script)
202
203def plot_all(plots, trace, prefix):
204 charts = []
205
206 for plot in plots:
207 outfilename = "%s_%d.png" % (prefix, len(charts))
208 charts.append(outfilename)
209 script = generate_script_and_datafile(plot, trace, '~datafile', outfilename)
210 print 'Plotting %s...' % outfilename
211 gnuplot(script)
212
213 return charts
214
215def reclaimed_bytes(row):
216 return row['total_size_before'] - row['total_size_after']
217
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100218def other_scope(r):
Ben Murdoch257744e2011-11-30 15:57:28 +0000219 if r['gc'] == 's':
220 # there is no 'other' scope for scavenging collections.
221 return 0
222 return r['pause'] - r['mark'] - r['sweep'] - r['compact'] - r['external']
223
224def scavenge_scope(r):
225 if r['gc'] == 's':
226 return r['pause'] - r['external']
227 return 0
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100228
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000229
230def real_mutator(r):
231 return r['mutator'] - r['stepstook']
232
Leon Clarkef7060e22010-06-03 12:02:55 +0100233plots = [
234 [
235 Set('style fill solid 0.5 noborder'),
236 Set('style histogram rowstacked'),
237 Set('style data histograms'),
Ben Murdoch257744e2011-11-30 15:57:28 +0000238 Plot(Item('Scavenge', scavenge_scope, lc = 'green'),
239 Item('Marking', 'mark', lc = 'purple'),
Leon Clarkef7060e22010-06-03 12:02:55 +0100240 Item('Sweep', 'sweep', lc = 'blue'),
241 Item('Compaction', 'compact', lc = 'red'),
Ben Murdoch257744e2011-11-30 15:57:28 +0000242 Item('External', 'external', lc = '#489D43'),
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000243 Item('Other', other_scope, lc = 'grey'),
244 Item('IGC Steps', 'stepstook', lc = '#FF6347'))
245 ],
246 [
247 Set('style fill solid 0.5 noborder'),
248 Set('style histogram rowstacked'),
249 Set('style data histograms'),
250 Plot(Item('Scavenge', scavenge_scope, lc = 'green'),
251 Item('Marking', 'mark', lc = 'purple'),
252 Item('Sweep', 'sweep', lc = 'blue'),
253 Item('Compaction', 'compact', lc = 'red'),
254 Item('External', 'external', lc = '#489D43'),
255 Item('Other', other_scope, lc = '#ADD8E6'),
256 Item('External', 'external', lc = '#D3D3D3'))
257 ],
258
259 [
260 Plot(Item('Mutator', real_mutator, lc = 'black', style = 'lines'))
Leon Clarkef7060e22010-06-03 12:02:55 +0100261 ],
262 [
263 Set('style histogram rowstacked'),
264 Set('style data histograms'),
265 Plot(Item('Heap Size (before GC)', 'total_size_before', x1y2,
266 fs = 'solid 0.4 noborder',
267 lc = 'green'),
268 Item('Total holes (after GC)', 'holes_size_before', x1y2,
269 fs = 'solid 0.4 noborder',
270 lc = 'red'),
271 Item('GC Time', ['i', 'pause'], style = 'lines', lc = 'red'))
272 ],
273 [
274 Set('style histogram rowstacked'),
275 Set('style data histograms'),
276 Plot(Item('Heap Size (after GC)', 'total_size_after', x1y2,
277 fs = 'solid 0.4 noborder',
278 lc = 'green'),
279 Item('Total holes (after GC)', 'holes_size_after', x1y2,
280 fs = 'solid 0.4 noborder',
281 lc = 'red'),
282 Item('GC Time', ['i', 'pause'],
283 style = 'lines',
284 lc = 'red'))
285 ],
286 [
287 Set('style fill solid 0.5 noborder'),
288 Set('style data histograms'),
289 Plot(Item('Allocated', 'allocated'),
290 Item('Reclaimed', reclaimed_bytes),
291 Item('Promoted', 'promoted', style = 'lines', lc = 'black'))
292 ],
293]
294
Iain Merrick75681382010-08-19 15:07:18 +0100295def freduce(f, field, trace, init):
296 return reduce(lambda t,r: f(t, r[field]), trace, init)
297
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100298def calc_total(trace, field):
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000299 return freduce(lambda t,v: t + long(v), field, trace, long(0))
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100300
301def calc_max(trace, field):
Iain Merrick75681382010-08-19 15:07:18 +0100302 return freduce(lambda t,r: max(t, r), field, trace, 0)
303
304def count_nonzero(trace, field):
305 return freduce(lambda t,r: t if r == 0 else t + 1, field, trace, 0)
306
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100307
Leon Clarkef7060e22010-06-03 12:02:55 +0100308def process_trace(filename):
309 trace = parse_gc_trace(filename)
Leon Clarkef7060e22010-06-03 12:02:55 +0100310
Iain Merrick75681382010-08-19 15:07:18 +0100311 marksweeps = filter(lambda r: r['gc'] == 'ms', trace)
312 markcompacts = filter(lambda r: r['gc'] == 'mc', trace)
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100313 scavenges = filter(lambda r: r['gc'] == 's', trace)
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000314 globalgcs = filter(lambda r: r['gc'] != 's', trace)
315
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100316
Leon Clarkef7060e22010-06-03 12:02:55 +0100317 charts = plot_all(plots, trace, filename)
318
Iain Merrick75681382010-08-19 15:07:18 +0100319 def stats(out, prefix, trace, field):
320 n = len(trace)
321 total = calc_total(trace, field)
322 max = calc_max(trace, field)
323 if n > 0:
324 avg = total / n
325 else:
326 avg = 0
327 if n > 1:
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000328 dev = math.sqrt(freduce(lambda t,r: t + (r - avg) ** 2, field, trace, 0) /
Iain Merrick75681382010-08-19 15:07:18 +0100329 (n - 1))
330 else:
331 dev = 0
332
333 out.write('<tr><td>%s</td><td>%d</td><td>%d</td>'
334 '<td>%d</td><td>%d [dev %f]</td></tr>' %
335 (prefix, n, total, max, avg, dev))
336
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000337 def HumanReadable(size):
338 suffixes = ['bytes', 'kB', 'MB', 'GB']
339 power = 1
340 for i in range(len(suffixes)):
341 if size < power*1024:
342 return "%.1f" % (float(size) / power) + " " + suffixes[i]
343 power *= 1024
344
345 def throughput(name, trace):
346 total_live_after = calc_total(trace, 'total_size_after')
347 total_live_before = calc_total(trace, 'total_size_before')
348 total_gc = calc_total(trace, 'pause')
349 if total_gc == 0:
350 return
351 out.write('GC %s Throughput (after): %s / %s ms = %s/ms<br/>' %
352 (name,
353 HumanReadable(total_live_after),
354 total_gc,
355 HumanReadable(total_live_after / total_gc)))
356 out.write('GC %s Throughput (before): %s / %s ms = %s/ms<br/>' %
357 (name,
358 HumanReadable(total_live_before),
359 total_gc,
360 HumanReadable(total_live_before / total_gc)))
361
Iain Merrick75681382010-08-19 15:07:18 +0100362
Leon Clarkef7060e22010-06-03 12:02:55 +0100363 with open(filename + '.html', 'w') as out:
364 out.write('<html><body>')
Iain Merrick75681382010-08-19 15:07:18 +0100365 out.write('<table>')
366 out.write('<tr><td>Phase</td><td>Count</td><td>Time (ms)</td>')
367 out.write('<td>Max</td><td>Avg</td></tr>')
368 stats(out, 'Total in GC', trace, 'pause')
369 stats(out, 'Scavenge', scavenges, 'pause')
370 stats(out, 'MarkSweep', marksweeps, 'pause')
371 stats(out, 'MarkCompact', markcompacts, 'pause')
372 stats(out, 'Mark', filter(lambda r: r['mark'] != 0, trace), 'mark')
373 stats(out, 'Sweep', filter(lambda r: r['sweep'] != 0, trace), 'sweep')
374 stats(out, 'Compact', filter(lambda r: r['compact'] != 0, trace), 'compact')
Ben Murdoch257744e2011-11-30 15:57:28 +0000375 stats(out,
376 'External',
377 filter(lambda r: r['external'] != 0, trace),
378 'external')
Iain Merrick75681382010-08-19 15:07:18 +0100379 out.write('</table>')
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000380 throughput('TOTAL', trace)
381 throughput('MS', marksweeps)
382 throughput('MC', markcompacts)
383 throughput('OLDSPACE', globalgcs)
384 out.write('<br/>')
Leon Clarkef7060e22010-06-03 12:02:55 +0100385 for chart in charts:
386 out.write('<img src="%s">' % chart)
387 out.write('</body></html>')
388
389 print "%s generated." % (filename + '.html')
390
391if len(sys.argv) != 2:
392 print "Usage: %s <GC-trace-filename>" % sys.argv[0]
393 sys.exit(1)
394
395process_trace(sys.argv[1])