Title: [237024] trunk/Source/_javascript_Core
Revision
237024
Author
[email protected]
Date
2018-10-10 18:39:27 -0700 (Wed, 10 Oct 2018)

Log Message

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

Reviewed by Saam Barati.

* jit/ExecutableAllocator.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (237023 => 237024)


--- trunk/Source/_javascript_Core/ChangeLog	2018-10-11 01:25:05 UTC (rev 237023)
+++ trunk/Source/_javascript_Core/ChangeLog	2018-10-11 01:39:27 UTC (rev 237024)
@@ -1,3 +1,12 @@
+2018-10-10  Michael Saboff  <[email protected]>
+
+        Increase executable memory pool from 64MB to 128MB for ARM64
+        https://bugs.webkit.org/show_bug.cgi?id=190453
+
+        Reviewed by Saam Barati.
+
+        * jit/ExecutableAllocator.cpp:
+
 2018-10-10  Devin Rousso  <[email protected]>
 
         Web Inspector: notify the frontend when a canvas has started recording via console.record

Modified: trunk/Source/_javascript_Core/jit/ExecutableAllocator.cpp (237023 => 237024)


--- trunk/Source/_javascript_Core/jit/ExecutableAllocator.cpp	2018-10-11 01:25:05 UTC (rev 237023)
+++ trunk/Source/_javascript_Core/jit/ExecutableAllocator.cpp	2018-10-11 01:39:27 UTC (rev 237024)
@@ -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
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to