OLD | NEW |
| 1 2008-09-17: Version 0.3.2 |
| 2 |
| 3 Generalized the EvalCache into a CompilationCache and enabled it |
| 4 for scripts too. The current strategy is to retire all entries |
| 5 whenever a mark-sweep collection is started. |
| 6 |
| 7 Fixed bug where switch statements containing only a default case |
| 8 would lead to an unbalanced stack (issue 69). |
| 9 |
| 10 Fixed bug that made access to the function in a named function |
| 11 expression impossible in certain situations (issue 24). |
| 12 |
| 13 Fixed even more build issues. |
| 14 |
| 15 Optimized calling conventions on ARM. The conventions on ARM and |
| 16 IA-32 now match. |
| 17 |
| 18 Removed static initializers for flags and counters. |
| 19 |
| 20 Improved inline caching behavior for uncommon cases where lazily |
| 21 loading Date and RegExp code could force certain code paths go |
| 22 megamorphic. |
| 23 |
| 24 Removed arguments adaption for builtins written in C++. This |
| 25 makes Array.prototype.push and Array.prototype.pop slightly |
| 26 faster. |
| 27 |
| 28 |
1 2008-09-11: Version 0.3.1 | 29 2008-09-11: Version 0.3.1 |
2 | 30 |
3 Fixed a number of build issues. | 31 Fixed a number of build issues. |
4 | 32 |
5 Fixed problem with missing I-cache flusing on ARM. | 33 Fixed problem with missing I-cache flusing on ARM. |
6 | 34 |
7 Changed space layout in memory management by splitting up | 35 Changed space layout in memory management by splitting up |
8 code space into old data space and code space. | 36 code space into old data space and code space. |
9 | 37 |
10 Added utf-8 conversion support to the API (issue 57). | 38 Added utf-8 conversion support to the API (issue 57). |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 | 286 |
259 Improved debugger support by allowing nested break points and by | 287 Improved debugger support by allowing nested break points and by |
260 dealing with stack-overflows when compiling functions before | 288 dealing with stack-overflows when compiling functions before |
261 setting break points in them. | 289 setting break points in them. |
262 | 290 |
263 | 291 |
264 2008-07-03: Version 0.1.0 | 292 2008-07-03: Version 0.1.0 |
265 | 293 |
266 Initial export. | 294 Initial export. |
267 | 295 |
OLD | NEW |