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(".*"))] |