| OLD | NEW |
| 1 2011-03-14: Version 3.2.2 |
| 2 |
| 3 Fixed a number of crash and correctness bugs. |
| 4 |
| 5 Improved Crankshaft performance on all platforms. |
| 6 |
| 7 Fixed Crankshaft on Solaris/Illumos. |
| 8 |
| 9 |
| 10 2011-03-10: Version 3.2.1 |
| 11 |
| 12 Fixed a number of crash bugs. |
| 13 |
| 14 Improved Crankshaft for x64 and ARM. |
| 15 |
| 16 Implemented more of EcmaScript 5 strict mode. |
| 17 |
| 18 |
| 19 2011-03-07: Version 3.2.0 |
| 20 |
| 21 Fixed a number of crash bugs. |
| 22 |
| 23 Turned on Crankshaft by default on x64 and ARM. |
| 24 |
| 25 Improved Crankshaft for x64 and ARM. |
| 26 |
| 27 Implemented more of EcmaScript 5 strict mode. |
| 28 |
| 29 |
| 30 2011-03-02: Version 3.1.8 |
| 31 |
| 32 Fixed a number of crash bugs. |
| 33 |
| 34 Improved Crankshaft for x64 and ARM. |
| 35 |
| 36 Implemented more of EcmaScript 5 strict mode. |
| 37 |
| 38 Fixed issue with unaligned reads and writes on ARM. |
| 39 |
| 40 Improved heap profiler support. |
| 41 |
| 42 |
| 43 2011-02-28: Version 3.1.7 |
| 44 |
| 45 Fixed a number of crash bugs. |
| 46 |
| 47 Improved Crankshaft for x64 and ARM. |
| 48 |
| 49 Fixed implementation of indexOf/lastIndexOf for sparse |
| 50 arrays (http://crbug.com/73940). |
| 51 |
| 52 Fixed bug in map space compaction (http://crbug.com/59688). |
| 53 |
| 54 Added support for direct getter accessors calls on ARM. |
| 55 |
| 56 |
| 57 2011-02-24: Version 3.1.6 |
| 58 |
| 59 Fixed a number of crash bugs. |
| 60 |
| 61 Added support for Cygwin (issue 64). |
| 62 |
| 63 Improved Crankshaft for x64 and ARM. |
| 64 |
| 65 Added Crankshaft support for stores to pixel arrays. |
| 66 |
| 67 Fixed issue in CPU profiler with Crankshaft. |
| 68 |
| 69 |
| 70 2011-02-16: Version 3.1.5 |
| 71 |
| 72 Change RegExp parsing to disallow /(*)/. |
| 73 |
| 74 Added GDB JIT support for ARM. |
| 75 |
| 76 Fixed several crash bugs. |
| 77 |
| 78 Performance improvements on the IA32 platform. |
| 79 |
| 80 |
| 1 2011-02-14: Version 3.1.4 | 81 2011-02-14: Version 3.1.4 |
| 2 | 82 |
| 3 Fixed incorrect compare of prototypes of the global object (issue | 83 Fixed incorrect compare of prototypes of the global object (issue |
| 4 1082). | 84 1082). |
| 5 | 85 |
| 6 Fixed a bug in optimizing calls to global functions (issue 1106). | 86 Fixed a bug in optimizing calls to global functions (issue 1106). |
| 7 | 87 |
| 8 Made optimized Function.prototype.apply safe for non-JSObject first | 88 Made optimized Function.prototype.apply safe for non-JSObject first |
| 9 arguments (issue 1128). | 89 arguments (issue 1128). |
| 10 | 90 |
| (...skipping 2495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2506 | 2586 |
| 2507 Improved debugger support by allowing nested break points and by | 2587 Improved debugger support by allowing nested break points and by |
| 2508 dealing with stack-overflows when compiling functions before | 2588 dealing with stack-overflows when compiling functions before |
| 2509 setting break points in them. | 2589 setting break points in them. |
| 2510 | 2590 |
| 2511 | 2591 |
| 2512 2008-07-03: Version 0.1.0 | 2592 2008-07-03: Version 0.1.0 |
| 2513 | 2593 |
| 2514 Initial export. | 2594 Initial export. |
| 2515 | 2595 |
| OLD | NEW |