OLD | NEW |
| 1 2009-03-12: Version 1.1.1 |
| 2 |
| 3 Fixed an assertion in the new compiler to take stack overflow |
| 4 exceptions into account. |
| 5 |
| 6 Removed exception propagation code that could cause crashes. |
| 7 |
| 8 Fixed minor bug in debugger line number computations. |
| 9 |
| 10 8-byte align the C stack on Linux and Windows to speed up floating |
| 11 point computations. |
| 12 |
| 13 |
1 2009-03-12: Version 1.1.0 | 14 2009-03-12: Version 1.1.0 |
2 | 15 |
3 Improved code generation infrastructure by doing simple register | 16 Improved code generation infrastructure by doing simple register |
4 allocation and constant folding and propagation. | 17 allocation and constant folding and propagation. |
5 | 18 |
6 Optimized regular expression matching by avoiding to create | 19 Optimized regular expression matching by avoiding to create |
7 intermediate string arrays and by flattening nested array | 20 intermediate string arrays and by flattening nested array |
8 representations of RegExp data. | 21 representations of RegExp data. |
9 | 22 |
10 Traverse a few stack frames when recording profiler samples to | 23 Traverse a few stack frames when recording profiler samples to |
(...skipping 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
666 | 679 |
667 Improved debugger support by allowing nested break points and by | 680 Improved debugger support by allowing nested break points and by |
668 dealing with stack-overflows when compiling functions before | 681 dealing with stack-overflows when compiling functions before |
669 setting break points in them. | 682 setting break points in them. |
670 | 683 |
671 | 684 |
672 2008-07-03: Version 0.1.0 | 685 2008-07-03: Version 0.1.0 |
673 | 686 |
674 Initial export. | 687 Initial export. |
675 | 688 |
OLD | NEW |