Title: [199572] trunk/Source/_javascript_Core
Revision
199572
Author
[email protected]
Date
2016-04-14 20:42:21 -0700 (Thu, 14 Apr 2016)

Log Message

Unreviewed, rolling out r199567.

performance regression on kraken on macbook*

Reverted changeset:

"CopiedBlock should be 8kB"
https://bugs.webkit.org/show_bug.cgi?id=156610
http://trac.webkit.org/changeset/199567

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (199571 => 199572)


--- trunk/Source/_javascript_Core/ChangeLog	2016-04-15 00:45:52 UTC (rev 199571)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-04-15 03:42:21 UTC (rev 199572)
@@ -1,5 +1,17 @@
 2016-04-14  Geoffrey Garen  <[email protected]>
 
+        Unreviewed, rolling out r199567.
+
+        performance regression on kraken on macbook*
+
+        Reverted changeset:
+
+        "CopiedBlock should be 8kB"
+        https://bugs.webkit.org/show_bug.cgi?id=156610
+        http://trac.webkit.org/changeset/199567
+
+2016-04-14  Geoffrey Garen  <[email protected]>
+
         CopiedBlock should be 8kB
         https://bugs.webkit.org/show_bug.cgi?id=156610
 

Modified: trunk/Source/_javascript_Core/heap/CopiedBlock.h (199571 => 199572)


--- trunk/Source/_javascript_Core/heap/CopiedBlock.h	2016-04-15 00:45:52 UTC (rev 199571)
+++ trunk/Source/_javascript_Core/heap/CopiedBlock.h	2016-04-15 03:42:21 UTC (rev 199572)
@@ -79,7 +79,7 @@
     size_t size();
     size_t capacity();
 
-    static const size_t blockSize = 8 * KB;
+    static const size_t blockSize = 32 * KB;
 
     bool hasWorkList();
     CopyWorkList& workList();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to