2022-08-05 12:55:59 +00:00
|
|
|
#!/usr/bin/env python3
|
2015-06-19 10:40:41 +00:00
|
|
|
#
|
|
|
|
# Copyright 2015 the V8 project authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
|
|
|
#
|
|
|
|
# This is an utility for generating csv files based on GC traces produced by
|
|
|
|
# V8 when run with flags --trace-gc --trace-gc-nvp.
|
|
|
|
#
|
|
|
|
# Usage: gc-nvp-to-csv.py <GC-trace-filename>
|
|
|
|
#
|
|
|
|
|
2019-02-19 08:28:26 +00:00
|
|
|
|
|
|
|
# for py2/py3 compatibility
|
|
|
|
from __future__ import print_function
|
|
|
|
|
2015-06-19 10:40:41 +00:00
|
|
|
import sys
|
|
|
|
import gc_nvp_common
|
|
|
|
|
2019-02-19 08:28:26 +00:00
|
|
|
|
2015-06-19 10:40:41 +00:00
|
|
|
def process_trace(filename):
|
|
|
|
trace = gc_nvp_common.parse_gc_trace(filename)
|
|
|
|
if len(trace):
|
|
|
|
keys = trace[0].keys()
|
2019-02-19 08:28:26 +00:00
|
|
|
print(', '.join(keys))
|
2015-06-19 10:40:41 +00:00
|
|
|
for entry in trace:
|
2019-02-19 08:28:26 +00:00
|
|
|
print(', '.join(map(lambda key: str(entry[key]), keys)))
|
2015-06-19 10:40:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
if len(sys.argv) != 2:
|
2019-02-19 08:28:26 +00:00
|
|
|
print("Usage: %s <GC-trace-filename>" % sys.argv[0])
|
2015-06-19 10:40:41 +00:00
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
process_trace(sys.argv[1])
|