Title: [200954] branches/safari-602.1.32-branch/Source/_javascript_Core
Revision
200954
Author
[email protected]
Date
2016-05-16 11:47:49 -0700 (Mon, 16 May 2016)

Log Message

Merged r200693.  rdar://problem/25682844

Modified Paths

Diff

Modified: branches/safari-602.1.32-branch/Source/_javascript_Core/ChangeLog (200953 => 200954)


--- branches/safari-602.1.32-branch/Source/_javascript_Core/ChangeLog	2016-05-16 18:44:02 UTC (rev 200953)
+++ branches/safari-602.1.32-branch/Source/_javascript_Core/ChangeLog	2016-05-16 18:47:49 UTC (rev 200954)
@@ -1,5 +1,21 @@
 2016-05-16  Babak Shafiei  <[email protected]>
 
+        Merge r200693.
+
+    2016-05-11  Commit Queue  <[email protected]>
+
+            Unreviewed, rolling out r200481.
+            https://bugs.webkit.org/show_bug.cgi?id=157573
+
+            it's bad news for asm.js (Requested by pizlo on #webkit).
+
+            Reverted changeset:
+
+            "Reduce maximum JIT pool size on X86_64."
+            http://trac.webkit.org/changeset/200481
+
+2016-05-16  Babak Shafiei  <[email protected]>
+
         Merge r200666.
 
     2016-05-10  Michael Saboff  <[email protected]>

Modified: branches/safari-602.1.32-branch/Source/_javascript_Core/jit/ExecutableAllocator.h (200953 => 200954)


--- branches/safari-602.1.32-branch/Source/_javascript_Core/jit/ExecutableAllocator.h	2016-05-16 18:44:02 UTC (rev 200953)
+++ branches/safari-602.1.32-branch/Source/_javascript_Core/jit/ExecutableAllocator.h	2016-05-16 18:47:49 UTC (rev 200954)
@@ -79,7 +79,7 @@
 #elif CPU(ARM64)
 static const size_t fixedExecutableMemoryPoolSize = 32 * 1024 * 1024;
 #elif CPU(X86_64)
-static const size_t fixedExecutableMemoryPoolSize = 100 * 1024 * 1024;
+static const size_t fixedExecutableMemoryPoolSize = 1024 * 1024 * 1024;
 #else
 static const size_t fixedExecutableMemoryPoolSize = 32 * 1024 * 1024;
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to