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

Unified Diff: tools/callstats.py

Issue 2119823002: Remove obsolete patching step from runtime callstats.html (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: updates 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/callstats.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/callstats.py
diff --git a/tools/callstats.py b/tools/callstats.py
index 28408bf3eb85219277e8334cfb2bfbd72530492c..e06046f80a73612216635637e672f448ee87690e 100755
--- a/tools/callstats.py
+++ b/tools/callstats.py
@@ -3,7 +3,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
'''
-Usage: runtime-call-stats.py [-h] <command> ...
+Usage: callstats.py [-h] <command> ...
Optional arguments:
-h, --help show this help message and exit
@@ -317,10 +317,10 @@ def read_stats(path, domain, args):
('Group-IC', re.compile(".*IC.*")),
('Group-Optimize',
re.compile("StackGuard|.*Optimize.*|.*Deoptimize.*|Recompile.*")),
- ('Group-Compile', re.compile(".*Compile.*")),
- ('Group-Parse', re.compile(".*Parse.*")),
- ('Group-Callback', re.compile(".*Callback.*")),
- ('Group-API', re.compile(".*API.*")),
+ ('Group-Compile', re.compile("Compile.*")),
+ ('Group-Parse', re.compile("Parse.*")),
+ ('Group-Callback', re.compile("Callback$")),
Camillo Bruni 2016/07/05 13:55:23 This won't match FunctionCallback, so we do need t
jochen (gone - plz use gerrit) 2016/07/05 14:09:39 I copied this from the v8-perf repo, so I guess it
+ ('Group-API', re.compile("API.*")),
('Group-GC', re.compile("GC|AllocateInTargetSpace")),
('Group-JavaScript', re.compile("JS_Execution")),
('Group-Runtime', re.compile(".*"))]
« no previous file with comments | « tools/callstats.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698