Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 2011-06-15: Version 3.4.4 | |
| 2 | |
| 3 Added snapshot compression support and --stress-opt flag to d8. | |
| 4 | |
| 5 Stopped using 'with' explicitly to implement try/catch, improving the | |
| 6 performance of the latter construct. | |
|
Søren Thygesen Gjesse
2011/06/15 09:19:45
Maybe change this to "Improve performance of try/c
Sven Panne
2011/06/15 09:37:01
Done.
| |
| 7 | |
| 8 Several GYP-related changes: Added support for building Xcode project | |
| 9 files from GYP files and removed the Xcode project file itself from | |
| 10 version control. Make the ARM simulator build with GYP again. Generate | |
| 11 Makefiles for all architectures on Linux. | |
|
Søren Thygesen Gjesse
2011/06/15 09:19:45
Maybe shorten this to just "Added support for buil
Sven Panne
2011/06/15 09:37:01
Done, but I think it makes sense to leave the othe
| |
| 12 | |
| 13 Fixed Array.prototype.{reduce,reduceRight} to pass undefined as the | |
| 14 receiver for strict mode callbacks. (issue 1436) | |
| 15 | |
| 16 Implemented core support for FixedDoubleArrays. | |
|
Søren Thygesen Gjesse
2011/06/15 09:19:45
Remove this - only internal.
Sven Panne
2011/06/15 09:37:01
Done.
| |
| 17 | |
| 18 Fixed a bug where an array load was incorrectly hoisted by GVN. | |
|
Søren Thygesen Gjesse
2011/06/15 09:19:45
I assume there is no issue for this.
Sven Panne
2011/06/15 09:37:01
I assumed the same, at least it was not mentioned
| |
| 19 | |
| 20 Handle 'undefined' correctly when === has been specialized for doubles. | |
| 21 (issue 1434) | |
| 22 | |
| 23 Corrected the limit of local variables in an optimized function from 64 | |
| 24 to 63. | |
|
Søren Thygesen Gjesse
2011/06/15 09:19:45
I assume there is no issue for this.
Sven Panne
2011/06/15 09:37:01
See above. :)
| |
| 25 | |
| 26 Removed the --debug-info flag and behave like its value is true. | |
|
Søren Thygesen Gjesse
2011/06/15 09:19:45
Please remove this.
Sven Panne
2011/06/15 09:37:01
Why? Isn't this an externally visible change?
Søren Thygesen Gjesse
2011/06/15 09:46:39
It is, but I don't think it is relevant (I did not
Sven Panne
2011/06/15 09:57:46
OK, I'll remove it then.
| |
| 27 | |
| 28 Correctly set ReadOnly flag on indexed properties when using the API Set | |
| 29 method. (issue 1470) | |
| 30 | |
| 31 Give the correct error message when Object.isExtensible is called on a | |
| 32 non-object. (issue 1452) | |
| 33 | |
| 34 Skip test-debug/DebuggerAgent on ARM. (issue 945) | |
|
Søren Thygesen Gjesse
2011/06/15 09:19:45
Also remove this.
Sven Panne
2011/06/15 09:37:01
Done.
| |
| 35 | |
| 36 Added GetOwnPropertyNames method for Object in the API. Patch by Peter | |
| 37 Varga. | |
| 38 | |
| 39 Always print the deoptimization data when disassembling the generated | |
| 40 code. | |
|
Søren Thygesen Gjesse
2011/06/15 09:19:45
Also remove this.
Sven Panne
2011/06/15 09:37:01
Done.
| |
| 41 | |
| 42 Do not redefine properties unneccesarily in seal and freeze. (issue 1447 ) | |
|
Søren Thygesen Gjesse
2011/06/15 09:19:45
Long line.
Sven Panne
2011/06/15 09:37:01
Done.
| |
| 43 | |
| 44 Threads do not carry their isolate anymore, so IsExecutionTerminating | |
| 45 expects one now. | |
|
Søren Thygesen Gjesse
2011/06/15 09:19:45
Also remove this.
Sven Panne
2011/06/15 09:37:01
I think this has to be in the ChangeLog, because i
Søren Thygesen Gjesse
2011/06/15 09:46:39
Oh, sorry. Then I think the line should say that t
Sven Panne
2011/06/15 09:57:46
Done.
| |
| 46 | |
| 47 Distinguish keyed loads with a symbol key from fast elements loads, | |
| 48 avoiding some useless deoptimizations. (issue 1471) | |
| 49 | |
| 50 Small valgrind fix. | |
|
Søren Thygesen Gjesse
2011/06/15 09:19:45
Also remove this.
Sven Panne
2011/06/15 09:37:01
Done.
| |
| 51 | |
| 52 | |
| 1 2011-06-08: Version 3.4.3 | 53 2011-06-08: Version 3.4.3 |
| 2 | 54 |
| 3 Clear the global thread table when an isolate is disposed | 55 Clear the global thread table when an isolate is disposed |
| 4 (issue 1433). | 56 (issue 1433). |
| 5 | 57 |
| 6 Converted time zone name to UTF8 on Windows (issue 1290). | 58 Converted time zone name to UTF8 on Windows (issue 1290). |
| 7 | 59 |
| 8 Limited the number of arguments in a function call to 32766 | 60 Limited the number of arguments in a function call to 32766 |
| 9 (issue 1413). | 61 (issue 1413). |
| 10 | 62 |
| 11 Compress sources of JS libraries in addition to the snapshot. | 63 Compress sources of JS libraries in addition to the snapshot. |
| 12 | 64 |
| 13 Fixed a bug in Lithium environment iteration. | 65 Fixed a bug in Lithium environment iteration. |
| 14 | 66 |
| 15 Performance improvements on all platforms. | 67 Performance improvements on all platforms. |
| 16 | 68 |
| 69 | |
| 17 2011-06-06: Version 3.4.2 | 70 2011-06-06: Version 3.4.2 |
| 18 | 71 |
| 19 More work on ES-Harmony proxies. Still hidden behind a flag. | 72 More work on ES-Harmony proxies. Still hidden behind a flag. |
| 20 | 73 |
| 21 Fixed some crash bugs and improved performance. | 74 Fixed some crash bugs and improved performance. |
| 22 | 75 |
| 23 Fixed building with gdb debugging support. | 76 Fixed building with gdb debugging support. |
| 24 | 77 |
| 25 Do not install SIGPROF handler until it is needed. | 78 Do not install SIGPROF handler until it is needed. |
| 26 | 79 |
| 27 Added DateTimeFormat to i18n API. | 80 Added DateTimeFormat to i18n API. |
| 28 | 81 |
| 29 Fixed compilation on OpenBSD. | 82 Fixed compilation on OpenBSD. |
| 30 | 83 |
| 31 Take the ulimit into account when sizing the heap. OpenBSD users | 84 Take the ulimit into account when sizing the heap. OpenBSD users |
| 32 may still have to increase the default ulimit to run heavy pages in | 85 may still have to increase the default ulimit to run heavy pages in |
| 33 the browser. | 86 the browser. |
| 34 | 87 |
| 88 | |
| 35 2011-06-01: Version 3.4.1 | 89 2011-06-01: Version 3.4.1 |
| 36 | 90 |
| 37 Fixed JSON stringify issue with arrays. | 91 Fixed JSON stringify issue with arrays. |
| 38 | 92 |
| 39 Changed calls to JS builtins to be passed undefined when called with | 93 Changed calls to JS builtins to be passed undefined when called with |
| 40 implicit receiver. | 94 implicit receiver. |
| 41 | 95 |
| 42 Implemented the set trap for Harmony proxies. Proxies still need to | 96 Implemented the set trap for Harmony proxies. Proxies still need to |
| 43 be enabled with the --harmony-proxies flag. | 97 be enabled with the --harmony-proxies flag. |
| 44 | 98 |
| (...skipping 2842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2887 | 2941 |
| 2888 Improved debugger support by allowing nested break points and by | 2942 Improved debugger support by allowing nested break points and by |
| 2889 dealing with stack-overflows when compiling functions before | 2943 dealing with stack-overflows when compiling functions before |
| 2890 setting break points in them. | 2944 setting break points in them. |
| 2891 | 2945 |
| 2892 | 2946 |
| 2893 2008-07-03: Version 0.1.0 | 2947 2008-07-03: Version 0.1.0 |
| 2894 | 2948 |
| 2895 Initial export. | 2949 Initial export. |
| 2896 | 2950 |
| 2951 # Local Variables: | |
| 2952 # mode:text | |
| 2953 # End: | |
| OLD | NEW |