| OLD | NEW |
| 1 2010-10-20: Version 2.5.1 |
| 2 |
| 3 Fixed bug causing spurious out of memory exceptions |
| 4 (issue http://crbug.com/54580). |
| 5 |
| 6 Fix compilation error on Solaris platform (issue 901). |
| 7 |
| 8 Fix error in strtod (string to floating point number conversion) |
| 9 due to glibc's use of 80-bit floats in the FPU on 32-bit linux. |
| 10 |
| 11 Adjust randomized allocations of executable memory to have 64k |
| 12 granularity (issue http://crbug.com/56036). |
| 13 |
| 14 Support profiling using kernel perf_events on linux. Add ll_prof |
| 15 script to tools and --ll-prof flag to V8. |
| 16 |
| 17 |
| 1 2010-10-18: Version 2.5.0 | 18 2010-10-18: Version 2.5.0 |
| 2 | 19 |
| 3 Fixed bug in cache handling of lastIndex on global regexps | 20 Fixed bug in cache handling of lastIndex on global regexps |
| 4 (issue http://crbug.com/58740). | 21 (issue http://crbug.com/58740). |
| 5 | 22 |
| 6 Added USE_SIMULATOR macro that explicitly indicates that we wish to use | 23 Added USE_SIMULATOR macro that explicitly indicates that we wish to use |
| 7 the simulator as the execution engine (by Mark Lam <mark.lam@palm.com> | 24 the simulator as the execution engine (by Mark Lam <mark.lam@palm.com> |
| 8 from Hewlett-Packard Development Company, LP). | 25 from Hewlett-Packard Development Company, LP). |
| 9 | 26 |
| 10 Fixed compilation error on ARM with gcc 4.4 (issue 894). | 27 Fixed compilation error on ARM with gcc 4.4 (issue 894). |
| (...skipping 2137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2148 | 2165 |
| 2149 Improved debugger support by allowing nested break points and by | 2166 Improved debugger support by allowing nested break points and by |
| 2150 dealing with stack-overflows when compiling functions before | 2167 dealing with stack-overflows when compiling functions before |
| 2151 setting break points in them. | 2168 setting break points in them. |
| 2152 | 2169 |
| 2153 | 2170 |
| 2154 2008-07-03: Version 0.1.0 | 2171 2008-07-03: Version 0.1.0 |
| 2155 | 2172 |
| 2156 Initial export. | 2173 Initial export. |
| 2157 | 2174 |
| OLD | NEW |