Sha256: 4ac136a703c639ab33081fff5d3f67dcf71f2293eaea8c19fdfb3c3e4b4c618c

Contents?: true

Size: 710 Bytes

Versions: 10

Compression:

Stored size: 710 Bytes

Contents

# 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.

#
# Common code for parsing --trace-gc-nvp output.
#


from __future__ import with_statement
import re

def split_nvp(s):
  t = {}
  for (name, value) in re.findall(r"([._\w]+)=([-\w]+(?:\.[0-9]+)?)", s):
    try:
      t[name] = float(value)
    except ValueError:
      t[name] = value

  return t


def parse_gc_trace(input):
  trace = []
  with open(input) as f:
    for line in f:
      info = split_nvp(line)
      if info and 'pause' in info and info['pause'] > 0:
        info['i'] = len(trace)
        trace.append(info)
  return trace

Version data entries

10 entries across 9 versions & 2 rubygems

Version Path
libv8-6.0.286.54.1 vendor/v8/tools/gc_nvp_common.py
libv8-6.0.286.54.0 vendor/v8/tools/gc_nvp_common.py
libv8-6.0.286.54.0beta2 vendor/v8/tools/gc_nvp_common.py
libv8-6.0.286.54.0beta1 vendor/v8/tools/gc_nvp_common.py
libv8-6.0.286.44.0beta1 vendor/v8/tools/gc_nvp_common.py
node-compiler-0.9.1 vendor/node/deps/v8/tools/gc_nvp_common.py
node-compiler-0.9.0 vendor/node-v7.2.1/deps/v8/tools/gc_nvp_common.py
node-compiler-0.8.0 vendor/node-v7.2.0/deps/v8/tools/gc_nvp_common.py
node-compiler-0.7.0 vendor/node-v7.1.0/deps/v8/tools/gc_nvp_common.py
node-compiler-0.7.0 vendor/node-v6.9.1/deps/v8/tools/gc_nvp_common.py