| Index: tools/callstats.py
|
| diff --git a/tools/callstats.py b/tools/callstats.py
|
| index c8a2436c4fcd0876588d59533a4d020f83c4d6f4..30bd0166b13fbe727f1589d77ba2a7ce396bfc4f 100755
|
| --- a/tools/callstats.py
|
| +++ b/tools/callstats.py
|
| @@ -343,10 +343,10 @@ def read_stats(path, domain, args):
|
| groups = [];
|
| if args.aggregate:
|
| groups = [
|
| - ('Group-IC', re.compile(".*IC.*")),
|
| + ('Group-IC', re.compile(".*IC_.*")),
|
| ('Group-Optimize',
|
| re.compile("StackGuard|.*Optimize.*|.*Deoptimize.*|Recompile.*")),
|
| - ('Group-Compile', re.compile(".*Compile.*")),
|
| + ('Group-Compile', re.compile("(^Compile.*)|(.*_Compile.*)")),
|
| ('Group-ParseBackground', re.compile(".*ParseBackground.*")),
|
| ('Group-Parse', re.compile(".*Parse.*")),
|
| ('Group-Callback', re.compile(".*Callback.*")),
|
|
|