OLD | NEW |
| 1 2009-03-12: Version 1.1.0 |
| 2 |
| 3 Improved code generation infrastructure by doing simple register |
| 4 allocation and constant folding and propagation. |
| 5 |
| 6 Optimized regular expression matching by avoiding to create |
| 7 intermediate string arrays and by flattening nested array |
| 8 representations of RegExp data. |
| 9 |
| 10 Traverse a few stack frames when recording profiler samples to |
| 11 include partial call graphs in the profiling output. |
| 12 |
| 13 Added support for using OProfile to profile generated code. |
| 14 |
| 15 Added remote debugging support to the D8 developer shell. |
| 16 |
| 17 Optimized creation of nested literals like JSON objects. |
| 18 |
| 19 Fixed a bug in garbage collecting unused maps and turned it on by |
| 20 default (--collect-maps). |
| 21 |
| 22 Added support for running tests under Valgrind. |
| 23 |
| 24 |
1 2009-02-27: Version 1.0.3 | 25 2009-02-27: Version 1.0.3 |
2 | 26 |
3 Optimized double-to-integer conversions in bit operations by using | 27 Optimized double-to-integer conversions in bit operations by using |
4 SSE3 instructions if available. | 28 SSE3 instructions if available. |
5 | 29 |
6 Optimized initialization sequences that store to multiple | 30 Optimized initialization sequences that store to multiple |
7 properties of the same object. | 31 properties of the same object. |
8 | 32 |
9 Changed the D8 debugger frontend to use JSON messages. | 33 Changed the D8 debugger frontend to use JSON messages. |
10 | 34 |
(...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
642 | 666 |
643 Improved debugger support by allowing nested break points and by | 667 Improved debugger support by allowing nested break points and by |
644 dealing with stack-overflows when compiling functions before | 668 dealing with stack-overflows when compiling functions before |
645 setting break points in them. | 669 setting break points in them. |
646 | 670 |
647 | 671 |
648 2008-07-03: Version 0.1.0 | 672 2008-07-03: Version 0.1.0 |
649 | 673 |
650 Initial export. | 674 Initial export. |
651 | 675 |
OLD | NEW |