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

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

Issue 2087813002: [turbolizer] Fully parse schedule data. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 "use strict"; 5 "use strict";
6 6
7 class ScheduleView extends TextView { 7 class ScheduleView extends TextView {
8 constructor(id, broker, nodePositionMap) { 8 constructor(id, broker, nodePositionMap) {
9 super(id, broker, null, false); 9 super(id, broker, null, false);
10 let view = this; 10 let view = this;
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 [/^ +/, null], 69 [/^ +/, null],
70 [/^\(deferred\)/, BLOCK_HEADER_STYLE], 70 [/^\(deferred\)/, BLOCK_HEADER_STYLE],
71 [/^B\d+/, BLOCK_LINK_STYLE], 71 [/^B\d+/, BLOCK_LINK_STYLE],
72 [/^<-/, ARROW_STYLE], 72 [/^<-/, ARROW_STYLE],
73 [/^->/, ARROW_STYLE], 73 [/^->/, ARROW_STYLE],
74 [/^,/, null], 74 [/^,/, null],
75 [/^---/, BLOCK_HEADER_STYLE, -1] 75 [/^---/, BLOCK_HEADER_STYLE, -1]
76 ], 76 ],
77 // Parse opcode including [] 77 // Parse opcode including []
78 [ 78 [
79 [/^[A-Za-z0-9_]+(\[.+])?$/, NODE_STYLE, -1], 79 [/^[A-Za-z0-9_]+(\[.*\])?$/, NODE_STYLE, -1],
80 [/^[A-Za-z0-9_]+(\[.+])?/, NODE_STYLE, 3] 80 [/^[A-Za-z0-9_]+(\[.*\])?/, NODE_STYLE, 3]
81 ], 81 ],
82 // Parse optional parameters 82 // Parse optional parameters
83 [ 83 [
84 [/^ /, null, 4], 84 [/^ /, null, 4],
85 [/^\(/, null], 85 [/^\(/, null],
86 [/^\d+/, ID_LINK_STYLE], 86 [/^\d+/, ID_LINK_STYLE],
87 [/^, /, null], 87 [/^, /, null],
88 [/^\)$/, null, -1], 88 [/^\)$/, null, -1],
89 [/^\)/, null, 4], 89 [/^\)/, null, 4],
90 ], 90 ],
(...skipping 27 matching lines...) Expand all
118 118
119 detachSelection() { 119 detachSelection() {
120 var selection = this.selection.detachSelection(); 120 var selection = this.selection.detachSelection();
121 var s = new Set(); 121 var s = new Set();
122 for (var i of selection) { 122 for (var i of selection) {
123 s.add(i.location.node_id); 123 s.add(i.location.node_id);
124 }; 124 };
125 return s; 125 return s;
126 } 126 }
127 } 127 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698