| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright 2016 the V8 project authors. All rights reserved. Use of this source | 3 Copyright 2016 the V8 project authors. All rights reserved. Use of this source |
| 4 code is governed by a BSD-style license that can be found in the LICENSE file. | 4 code is governed by a BSD-style license that can be found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <head> | 7 <head> |
| 8 <meta charset="UTF-8"> | 8 <meta charset="UTF-8"> |
| 9 <style> | 9 <style> |
| 10 body { | 10 body { |
| (...skipping 1638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1649 } | 1649 } |
| 1650 Group.add('total', new Group('Total', /.*Total.*/, '#BBB')); | 1650 Group.add('total', new Group('Total', /.*Total.*/, '#BBB')); |
| 1651 Group.add('ic', new Group('IC', /.*IC_.*/, "#3366CC")); | 1651 Group.add('ic', new Group('IC', /.*IC_.*/, "#3366CC")); |
| 1652 Group.add('optimize', new Group('Optimize', | 1652 Group.add('optimize', new Group('Optimize', |
| 1653 /StackGuard|.*Optimize.*|.*Deoptimize.*|Recompile.*/, "#DC3912")); | 1653 /StackGuard|.*Optimize.*|.*Deoptimize.*|Recompile.*/, "#DC3912")); |
| 1654 Group.add('compile', new Group('Compile', | 1654 Group.add('compile', new Group('Compile', |
| 1655 /(^Compile.*)|(.*_Compile.*)/, "#FFAA00")); | 1655 /(^Compile.*)|(.*_Compile.*)/, "#FFAA00")); |
| 1656 Group.add('parse-background', | 1656 Group.add('parse-background', |
| 1657 new Group('Parse-Background', /.*ParseBackground.*/, "#af744d")); | 1657 new Group('Parse-Background', /.*ParseBackground.*/, "#af744d")); |
| 1658 Group.add('parse', new Group('Parse', /.*Parse.*/, "#FF6600")); | 1658 Group.add('parse', new Group('Parse', /.*Parse.*/, "#FF6600")); |
| 1659 Group.add('callback', new Group('Callback', /.*Callback.*/, "#109618")); | 1659 Group.add('callback', new Group('Blink C++', /.*Callback.*/, "#109618")); |
| 1660 Group.add('api', new Group('API', /.*API.*/, "#990099")); | 1660 Group.add('api', new Group('API', /.*API.*/, "#990099")); |
| 1661 Group.add('gc', new Group('GC', /GC|AllocateInTargetSpace/, "#0099C6")); | 1661 Group.add('gc', new Group('GC', /GC|AllocateInTargetSpace/, "#0099C6")); |
| 1662 Group.add('javascript', new Group('JavaScript', /JS_Execution/, "#DD4477")); | 1662 Group.add('javascript', new Group('JavaScript', /JS_Execution/, "#DD4477")); |
| 1663 Group.add('runtime', new Group('Runtime', /.*/, "#88BB00")); | 1663 Group.add('runtime', new Group('V8 C++', /.*/, "#88BB00")); |
| 1664 var group = | 1664 var group = |
| 1665 Group.add('unclassified', new Group('Unclassified', /.*/, "#000")); | 1665 Group.add('unclassified', new Group('Unclassified', /.*/, "#000")); |
| 1666 group.enabled = false; | 1666 group.enabled = false; |
| 1667 | 1667 |
| 1668 class GroupedEntry extends Entry { | 1668 class GroupedEntry extends Entry { |
| 1669 constructor(group) { | 1669 constructor(group) { |
| 1670 super(0, GroupedEntry.prefix + group.name, 0, 0, 0, 0, 0, 0); | 1670 super(0, GroupedEntry.prefix + group.name, 0, 0, 0, 0, 0, 0); |
| 1671 this.group = group; | 1671 this.group = group; |
| 1672 this.entries = []; | 1672 this.entries = []; |
| 1673 } | 1673 } |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1978 </tr> | 1978 </tr> |
| 1979 <tr> | 1979 <tr> |
| 1980 <td>Overall Impact:</td> | 1980 <td>Overall Impact:</td> |
| 1981 <td class="timeImpact"></td><td>±</td><td class="timePercentImpact"></td
> | 1981 <td class="timeImpact"></td><td>±</td><td class="timePercentImpact"></td
> |
| 1982 <td class="compare timeImpact"></td><td class="compare"> ± </td><td clas
s="compare timePercentImpact"></td> | 1982 <td class="compare timeImpact"></td><td class="compare"> ± </td><td clas
s="compare timePercentImpact"></td> |
| 1983 </tr> | 1983 </tr> |
| 1984 </table> | 1984 </table> |
| 1985 </div> | 1985 </div> |
| 1986 </body> | 1986 </body> |
| 1987 </html> | 1987 </html> |
| OLD | NEW |