Index: ChangeLog |
=================================================================== |
--- ChangeLog (revision 8288) |
+++ ChangeLog (working copy) |
@@ -1,3 +1,55 @@ |
+2011-06-15: Version 3.4.4 |
+ |
+ Added snapshot compression support and --stress-opt flag to d8. |
+ |
+ Stopped using 'with' explicitly to implement try/catch, improving the |
+ 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.
|
+ |
+ Several GYP-related changes: Added support for building Xcode project |
+ files from GYP files and removed the Xcode project file itself from |
+ version control. Make the ARM simulator build with GYP again. Generate |
+ 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
|
+ |
+ Fixed Array.prototype.{reduce,reduceRight} to pass undefined as the |
+ receiver for strict mode callbacks. (issue 1436) |
+ |
+ 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.
|
+ |
+ 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
|
+ |
+ Handle 'undefined' correctly when === has been specialized for doubles. |
+ (issue 1434) |
+ |
+ Corrected the limit of local variables in an optimized function from 64 |
+ 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. :)
|
+ |
+ 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.
|
+ |
+ Correctly set ReadOnly flag on indexed properties when using the API Set |
+ method. (issue 1470) |
+ |
+ Give the correct error message when Object.isExtensible is called on a |
+ non-object. (issue 1452) |
+ |
+ 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.
|
+ |
+ Added GetOwnPropertyNames method for Object in the API. Patch by Peter |
+ Varga. |
+ |
+ Always print the deoptimization data when disassembling the generated |
+ code. |
Søren Thygesen Gjesse
2011/06/15 09:19:45
Also remove this.
Sven Panne
2011/06/15 09:37:01
Done.
|
+ |
+ 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.
|
+ |
+ Threads do not carry their isolate anymore, so IsExecutionTerminating |
+ 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.
|
+ |
+ Distinguish keyed loads with a symbol key from fast elements loads, |
+ avoiding some useless deoptimizations. (issue 1471) |
+ |
+ 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.
|
+ |
+ |
2011-06-08: Version 3.4.3 |
Clear the global thread table when an isolate is disposed |
@@ -14,6 +66,7 @@ |
Performance improvements on all platforms. |
+ |
2011-06-06: Version 3.4.2 |
More work on ES-Harmony proxies. Still hidden behind a flag. |
@@ -32,6 +85,7 @@ |
may still have to increase the default ulimit to run heavy pages in |
the browser. |
+ |
2011-06-01: Version 3.4.1 |
Fixed JSON stringify issue with arrays. |
@@ -2894,3 +2948,6 @@ |
Initial export. |
+# Local Variables: |
+# mode:text |
+# End: |