Title: [237400] trunk/Source/_javascript_Core
Revision
237400
Author
msab...@apple.com
Date
2018-10-24 14:35:35 -0700 (Wed, 24 Oct 2018)

Log Message

2018-10-24  Michael Saboff  <msab...@apple.com>

Increase executable memory pool from 64MB to 128MB for ARM64
https://bugs.webkit.org/show_bug.cgi?id=190453

Unreviewed, rolling back in r237024.

The original change did impact ARES-6 performance by 4-8%.  That will
be investigated separately.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (237399 => 237400)


--- trunk/Source/_javascript_Core/ChangeLog	2018-10-24 21:01:27 UTC (rev 237399)
+++ trunk/Source/_javascript_Core/ChangeLog	2018-10-24 21:35:35 UTC (rev 237400)
@@ -1,3 +1,13 @@
+2018-10-24  Michael Saboff  <msab...@apple.com>
+
+        Increase executable memory pool from 64MB to 128MB for ARM64
+        https://bugs.webkit.org/show_bug.cgi?id=190453
+
+        Unreviewed, rolling back in r237024.
+
+        The original change did impact ARES-6 performance by 4-8%.  That will
+        be investigated separately.
+
 2018-10-22  Keith Rollin  <krol...@apple.com>
 
         Use Location = "Relative to Build Products" rather than "Relative to Group"

Modified: trunk/Source/_javascript_Core/jit/ExecutableAllocator.cpp (237399 => 237400)


--- trunk/Source/_javascript_Core/jit/ExecutableAllocator.cpp	2018-10-24 21:01:27 UTC (rev 237399)
+++ trunk/Source/_javascript_Core/jit/ExecutableAllocator.cpp	2018-10-24 21:35:35 UTC (rev 237400)
@@ -91,7 +91,7 @@
 #elif CPU(ARM)
 static const size_t fixedExecutableMemoryPoolSize = 16 * 1024 * 1024;
 #elif CPU(ARM64)
-static const size_t fixedExecutableMemoryPoolSize = 64 * 1024 * 1024;
+static const size_t fixedExecutableMemoryPoolSize = 128 * 1024 * 1024;
 #elif CPU(X86_64)
 static const size_t fixedExecutableMemoryPoolSize = 1024 * 1024 * 1024;
 #else
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to