Title: [199589] trunk/Source/_javascript_Core
Revision
199589
Author
[email protected]
Date
2016-04-15 09:18:37 -0700 (Fri, 15 Apr 2016)

Log Message

2016-04-14  Geoffrey Garen  <[email protected]>

        CopiedBlock should be 64kB

        Reviewed by Benjamin Poulain.

        Let's try another value.

        This is 25% faster on kraken-audio-beat-detection on Mac Pro.

        * heap/CopiedBlock.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (199588 => 199589)


--- trunk/Source/_javascript_Core/ChangeLog	2016-04-15 15:51:27 UTC (rev 199588)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-04-15 16:18:37 UTC (rev 199589)
@@ -1,3 +1,15 @@
+2016-04-14  Geoffrey Garen  <[email protected]>
+
+        CopiedBlock should be 64kB
+
+        Reviewed by Benjamin Poulain.
+
+        Let's try another value.
+
+        This is 25% faster on kraken-audio-beat-detection on Mac Pro.
+
+        * heap/CopiedBlock.h:
+
 2016-04-15  Zan Dobersek  <[email protected]>
 
         Tail call optimizations lead to crashes on ARM Thumb + Linux

Modified: trunk/Source/_javascript_Core/heap/CopiedBlock.h (199588 => 199589)


--- trunk/Source/_javascript_Core/heap/CopiedBlock.h	2016-04-15 15:51:27 UTC (rev 199588)
+++ trunk/Source/_javascript_Core/heap/CopiedBlock.h	2016-04-15 16:18:37 UTC (rev 199589)
@@ -79,7 +79,7 @@
     size_t size();
     size_t capacity();
 
-    static const size_t blockSize = 32 * KB;
+    static const size_t blockSize = 64 * KB;
 
     bool hasWorkList();
     CopyWorkList& workList();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to