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

Unified Diff: tools/callstats.py

Issue 2058003002: [tools] Fix Callstats-Group classifier regexp in callstats.py (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | 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 66ef87b7c2435a3aa2baf5d86faf16f60bfec9ad..28408bf3eb85219277e8334cfb2bfbd72530492c 100755
--- a/tools/callstats.py
+++ b/tools/callstats.py
@@ -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.*")),
+ ('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 | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698