Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 2009-12-18: Version 2.0.5 | |
| 2 | |
| 3 Extended to upper limit of map space to allow for 7 times as many map | |
| 4 to be allocated (issue 524). | |
| 5 | |
| 6 Improved performance of code using closures. | |
| 7 | |
| 8 Improved performance of some binary operations involving doubles. | |
| 9 | |
|
Kasper Lund
2009/12/18 08:05:08
Extra newline here for consistency.
Søren Thygesen Gjesse
2009/12/18 08:27:21
Done.
| |
| 1 2009-12-16: Version 2.0.4 | 10 2009-12-16: Version 2.0.4 |
| 2 | 11 |
| 3 » Added ECMAScript 5 Object.create. | 12 Added ECMAScript 5 Object.create. |
| 4 | 13 |
| 5 » Improved performance of Math.max and Math.min. | 14 Improved performance of Math.max and Math.min. |
| 6 | 15 |
| 7 » Optimized adding of strings on 64-bit platforms. | 16 Optimized adding of strings on 64-bit platforms. |
| 8 | 17 |
| 9 » Improved handling of external strings by using a separate table | 18 Improved handling of external strings by using a separate table |
| 10 » instead of weak handles. This improves garbage collection | 19 instead of weak handles. This improves garbage collection |
| 11 » performance and uses less memory. | 20 performance and uses less memory. |
| 12 | 21 |
| 13 » Changed code generation for object and array literals in toplevel | 22 Changed code generation for object and array literals in toplevel |
| 14 » code to be more compact by doing more work in the runtime. | 23 code to be more compact by doing more work in the runtime. |
| 15 | 24 |
| 16 » Fixed a crash bug triggered when garbage collection happened during | 25 Fixed a crash bug triggered when garbage collection happened during |
| 17 » generation of a callback load inline cache stub. | 26 generation of a callback load inline cache stub. |
| 18 | 27 |
| 19 » Fixed crash bug sometimes triggered when local variables shadowed | 28 Fixed crash bug sometimes triggered when local variables shadowed |
| 20 » parameters in functions that used the arguments object. | 29 parameters in functions that used the arguments object. |
| 21 | 30 |
| 22 | 31 |
| 23 2009-12-03: Version 2.0.3 | 32 2009-12-03: Version 2.0.3 |
| 24 | 33 |
| 25 Optimized handling and adding of strings, for-in and Array.join. | 34 Optimized handling and adding of strings, for-in and Array.join. |
| 26 | 35 |
| 27 Heap serialization is now non-destructive. | 36 Heap serialization is now non-destructive. |
| 28 | 37 |
| 29 Improved profiler support with information on time spend in C++ | 38 Improved profiler support with information on time spend in C++ |
| 30 callbacks registered through the API. | 39 callbacks registered through the API. |
| (...skipping 1413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1444 | 1453 |
| 1445 Improved debugger support by allowing nested break points and by | 1454 Improved debugger support by allowing nested break points and by |
| 1446 dealing with stack-overflows when compiling functions before | 1455 dealing with stack-overflows when compiling functions before |
| 1447 setting break points in them. | 1456 setting break points in them. |
| 1448 | 1457 |
| 1449 | 1458 |
| 1450 2008-07-03: Version 0.1.0 | 1459 2008-07-03: Version 0.1.0 |
| 1451 | 1460 |
| 1452 Initial export. | 1461 Initial export. |
| 1453 | 1462 |
| OLD | NEW |