Commit 248b7a08 authored by cbruni's avatar cbruni Committed by Commit bot

[tools] Revert callstats.py group regexp changes

The previous change accidentally shifted categories around which broke our
performance graphs.

BUG=

Review-Url: https://codereview.chromium.org/2369863002
Cr-Commit-Position: refs/heads/master@{#39721}
parent f584ca30
......@@ -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(".*"))]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment