Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: tools/turbolizer/schedule-view.js

Issue 729913004: Add a html-based visualizer for TurboFan graphs (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Review feedback Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/turbolizer/right-arrow.png ('k') | tools/turbolizer/search.png » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 "use strict";
6
7 class ScheduleView extends TextView {
8 constructor(id, broker, nodePositionMap) {
9 super(id, broker, null, false);
10 let view = this;
11 let BLOCK_STYLE = {
12 css: 'tag'
13 };
14 const BLOCK_HEADER_STYLE = {
15 css: 'com',
16 block_id: -1,
17 location: function(text) {
18 let matches = /\d+/.exec(text);
19 if (!matches) return undefined;
20 BLOCK_HEADER_STYLE.block_id = Number(matches[0]);
21 return {
22 block_id: BLOCK_HEADER_STYLE.block_id
23 };
24 },
25 };
26 const BLOCK_LINK_STYLE = {
27 css: 'tag',
28 link: function(text) {
29 let id = Number(text.substr(1));
30 view.select(function(location) { return location.block_id == id; }, true , true);
31 }
32 };
33 const ID_STYLE = {
34 css: 'tag',
35 location: function(text) {
36 let matches = /\d+/.exec(text);
37 return {
38 node_id: Number(matches[0]),
39 block_id: BLOCK_HEADER_STYLE.block_id
40 };
41 },
42 };
43 const ID_LINK_STYLE = {
44 css: 'tag',
45 link: function(text) {
46 let id = Number(text);
47 view.select(function(location) { return location.node_id == id; }, true, true);
48 }
49 };
50 const NODE_STYLE = { css: 'kwd' };
51 const GOTO_STYLE = { css: 'kwd',
52 goto_id: -2,
53 location: function(text) {
54 return {
55 node_id: GOTO_STYLE.goto_id--,
56 block_id: BLOCK_HEADER_STYLE.block_id
57 };
58 }
59 }
60 const ARROW_STYLE = { css: 'kwd' };
61 let patterns = [
62 [
63 [/^--- BLOCK B\d+/, BLOCK_HEADER_STYLE, 1],
64 [/^\s+\d+: /, ID_STYLE, 2],
65 [/^\s+Goto/, GOTO_STYLE, 6],
66 [/^.*/, null, -1]
67 ],
68 [
69 [/^ +/, null],
70 [/^\(deferred\)/, BLOCK_HEADER_STYLE],
71 [/^B\d+/, BLOCK_LINK_STYLE],
72 [/^<-/, ARROW_STYLE],
73 [/^->/, ARROW_STYLE],
74 [/^,/, null],
75 [/^---/, BLOCK_HEADER_STYLE, -1]
76 ],
77 // Parse opcode including []
78 [
79 [/^[A-Za-z0-9_]+(\[[^\]]+\])?$/, NODE_STYLE, -1],
80 [/^[A-Za-z0-9_]+(\[[^\]]+\])?/, NODE_STYLE, 3]
81 ],
82 // Parse optional parameters
83 [
84 [/^ /, null, 4],
85 [/^\(/, null],
86 [/^\d+/, ID_LINK_STYLE],
87 [/^, /, null],
88 [/^\)$/, null, -1],
89 [/^\)/, null, 4],
90 ],
91 [
92 [/^ -> /, ARROW_STYLE, 5],
93 [/^.*/, null, -1]
94 ],
95 [
96 [/^B\d+$/, BLOCK_LINK_STYLE, -1],
97 [/^B\d+/, BLOCK_LINK_STYLE],
98 [/^, /, null]
99 ],
100 [
101 [/^ -> /, ARROW_STYLE],
102 [/^B\d+$/, BLOCK_LINK_STYLE, -1]
103 ]
104 ];
105 this.setPatterns(patterns);
106 this.setNodePositionMap(nodePositionMap);
107 }
108 }
OLDNEW
« no previous file with comments | « tools/turbolizer/right-arrow.png ('k') | tools/turbolizer/search.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698