OLD | NEW |
| 1 2009-05-29: Version 1.2.6 |
| 2 |
| 3 Added a histogram recording hit rates at different levels of the |
| 4 compilation cache. |
| 5 |
| 6 Added stack overflow check for the RegExp analysis phase. Previously a |
| 7 very long regexp graph could overflow the stack with recursive calls. |
| 8 |
| 9 Use a dynamic buffer when collecting log events in memory. |
| 10 |
| 11 Added start/stop events to the profiler log. |
| 12 |
| 13 Fixed infinite loop which could happen when setting a debug break while |
| 14 executing a RegExp compiled to native code. |
| 15 |
| 16 Fixed handling of lastIndexOf called with negative index (issue 351). |
| 17 |
| 18 Fixed irregular crash in profiler test (issue 358). |
| 19 |
| 20 Fixed compilation issues with some versions of gcc. |
| 21 |
| 22 |
1 2009-05-26: Version 1.2.5 | 23 2009-05-26: Version 1.2.5 |
2 | 24 |
3 Fixed bug in initial boundary check for Boyer-Moore text | 25 Fixed bug in initial boundary check for Boyer-Moore text |
4 search (issue 349). | 26 search (issue 349). |
5 | 27 |
6 Fixed compilation issues with MinGW and gcc 4.3+ and added support | 28 Fixed compilation issues with MinGW and gcc 4.3+ and added support |
7 for armv7 and cortex-a8 architectures. Patches by Lei Zhang and | 29 for armv7 and cortex-a8 architectures. Patches by Lei Zhang and |
8 Craig Schlenter. | 30 Craig Schlenter. |
9 | 31 |
10 Added a script cache to the debugger. | 32 Added a script cache to the debugger. |
(...skipping 900 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
911 | 933 |
912 Improved debugger support by allowing nested break points and by | 934 Improved debugger support by allowing nested break points and by |
913 dealing with stack-overflows when compiling functions before | 935 dealing with stack-overflows when compiling functions before |
914 setting break points in them. | 936 setting break points in them. |
915 | 937 |
916 | 938 |
917 2008-07-03: Version 0.1.0 | 939 2008-07-03: Version 0.1.0 |
918 | 940 |
919 Initial export. | 941 Initial export. |
920 | 942 |
OLD | NEW |