OLD | NEW |
| 1 2009-07-27: Version 1.3.0 |
| 2 |
| 3 Allowed RegExp objects to be called as functions (issue 132). |
| 4 |
| 5 Fixed issue where global property cells would escape after |
| 6 detaching the global object; see http://crbug.com/16276. |
| 7 |
| 8 Added support for stepping into setters and getters in the |
| 9 debugger. |
| 10 |
| 11 Changed the debugger to avoid stopping in its own JavaScript code |
| 12 and in the code of built-in functions. |
| 13 |
| 14 Fixed issue 345 by avoiding duplicate escaping labels. |
| 15 |
| 16 Fixed ARM code generator crash in short-circuited boolean |
| 17 expressions and added regression tests. |
| 18 |
| 19 Added an external allocation limit to avoid issues where small V8 |
| 20 objects would hold on to large amounts of external memory without |
| 21 causing garbage collections. |
| 22 |
| 23 Finished more of the inline caching stubs for x64 targets. |
| 24 |
| 25 |
1 2009-07-13: Version 1.2.14 | 26 2009-07-13: Version 1.2.14 |
2 | 27 |
3 Added separate paged heap space for global property cells and | 28 Added separate paged heap space for global property cells and |
4 avoid updating the write barrier when storing into them. | 29 avoid updating the write barrier when storing into them. |
5 | 30 |
6 Improved peep-hole optimization on ARM platforms by not emitting | 31 Improved peep-hole optimization on ARM platforms by not emitting |
7 unnecessary debug information. | 32 unnecessary debug information. |
8 | 33 |
9 Re-enabled ICs for loads and calls that skip a global object | 34 Re-enabled ICs for loads and calls that skip a global object |
10 during lookup through the prototype chain. | 35 during lookup through the prototype chain. |
(...skipping 1038 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1049 | 1074 |
1050 Improved debugger support by allowing nested break points and by | 1075 Improved debugger support by allowing nested break points and by |
1051 dealing with stack-overflows when compiling functions before | 1076 dealing with stack-overflows when compiling functions before |
1052 setting break points in them. | 1077 setting break points in them. |
1053 | 1078 |
1054 | 1079 |
1055 2008-07-03: Version 0.1.0 | 1080 2008-07-03: Version 0.1.0 |
1056 | 1081 |
1057 Initial export. | 1082 Initial export. |
1058 | 1083 |
OLD | NEW |