| OLD | NEW |
| 1 2008-10-06: Version 0.3.4 |
| 2 |
| 3 Changed Array.prototype.sort to use quick sort. |
| 4 |
| 5 Fixed code generation issue where leaving a finally block with |
| 6 break or continue would accumulate elements on the expression |
| 7 stack (issue 86). |
| 8 |
| 9 Made sure that the name accessor on functions returns the expected |
| 10 names for builtin JavaScript functions and C++ callback functions. |
| 11 |
| 12 Added fast case code for extending the property storage array of |
| 13 JavaScript objects. |
| 14 |
| 15 Ported switch statement optimizations introduced in version 0.3.3 |
| 16 to the ARM code generator. |
| 17 |
| 18 Allowed GCC to use strict-aliasing rules when compiling. |
| 19 |
| 20 Improved performance of arguments object allocation by taking care |
| 21 of arguments adaptor frames in the generated code. |
| 22 |
| 23 Updated the V8 benchmark suite to version 2. |
| 24 |
| 25 |
| 1 2008-09-25: Version 0.3.3 | 26 2008-09-25: Version 0.3.3 |
| 2 | 27 |
| 3 Improved handling of relocation information to enable more | 28 Improved handling of relocation information to enable more |
| 4 peep-hole optimizations. | 29 peep-hole optimizations. |
| 5 | 30 |
| 6 Optimized switch statements where all labels are constant small | 31 Optimized switch statements where all labels are constant small |
| 7 integers. | 32 integers. |
| 8 | 33 |
| 9 Optimized String.prototype.indexOf for common cases. | 34 Optimized String.prototype.indexOf for common cases. |
| 10 | 35 |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 | 335 |
| 311 Improved debugger support by allowing nested break points and by | 336 Improved debugger support by allowing nested break points and by |
| 312 dealing with stack-overflows when compiling functions before | 337 dealing with stack-overflows when compiling functions before |
| 313 setting break points in them. | 338 setting break points in them. |
| 314 | 339 |
| 315 | 340 |
| 316 2008-07-03: Version 0.1.0 | 341 2008-07-03: Version 0.1.0 |
| 317 | 342 |
| 318 Initial export. | 343 Initial export. |
| 319 | 344 |
| OLD | NEW |