101e076b34
This commit introduces a new mode for bytecode_dispatches_report.py which reports the top sources of dispatches to a given bytecode and the top destinations of dispatches from the same bytecode. The bytecode name is passed with --top-dispatches-for-bytecode (short form: -f), while the number of sources and destinations to show is controlled with -n. BUG=v8:4899 LOG=N Review-Url: https://codereview.chromium.org/1979233002 Cr-Commit-Position: refs/heads/master@{#36284}
55 lines
1.7 KiB
Python
55 lines
1.7 KiB
Python
# Copyright 2016 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.
|
|
|
|
import bytecode_dispatches_report as bdr
|
|
import unittest
|
|
|
|
|
|
class BytecodeDispatchesReportTest(unittest.TestCase):
|
|
def test_find_top_counters(self):
|
|
top_counters = bdr.find_top_bytecode_dispatch_pairs({
|
|
"a": {"a": 10, "b": 8, "c": 99},
|
|
"b": {"a": 1, "b": 4, "c": 1},
|
|
"c": {"a": 42, "b": 3, "c": 7}}, 5)
|
|
self.assertListEqual(top_counters, [
|
|
('a', 'c', 99),
|
|
('c', 'a', 42),
|
|
('a', 'a', 10),
|
|
('a', 'b', 8),
|
|
('c', 'c', 7)])
|
|
|
|
def test_build_counters_matrix(self):
|
|
counters_matrix, xlabels, ylabels = bdr.build_counters_matrix({
|
|
"a": {"a": 10, "b": 8, "c": 7},
|
|
"b": {"a": 1, "c": 4},
|
|
"c": {"a": 42, "b": 12, "c": 99}})
|
|
self.assertTrue((counters_matrix == [[42, 12, 99],
|
|
[ 1, 0, 4],
|
|
[10, 8, 7]]).all())
|
|
self.assertListEqual(xlabels, ['a', 'b', 'c'])
|
|
self.assertListEqual(ylabels, ['c', 'b', 'a'])
|
|
|
|
def test_find_top_bytecodes(self):
|
|
top_dispatch_sources = bdr.find_top_bytecodes({
|
|
"a": {"a": 10, "b": 8, "c": 7},
|
|
"b": {"a": 1, "c": 4},
|
|
"c": {"a": 42, "b": 12, "c": 99}
|
|
})
|
|
self.assertListEqual(top_dispatch_sources, [
|
|
('c', 153),
|
|
('a', 25),
|
|
('b', 5)
|
|
])
|
|
|
|
def test_find_top_dispatch_sources(self):
|
|
top_dispatch_sources = bdr.find_top_dispatch_sources({
|
|
"a": {"a": 10, "b": 8, "c": 7},
|
|
"b": {"a": 1, "c": 4},
|
|
"c": {"a": 42, "b": 12, "c": 99}
|
|
}, "b", 10)
|
|
self.assertListEqual(top_dispatch_sources, [
|
|
("c", 12),
|
|
("a", 8)
|
|
])
|