Title: [209827] trunk/Source/_javascript_Core
Revision
209827
Author
[email protected]
Date
2016-12-14 13:05:56 -0800 (Wed, 14 Dec 2016)

Log Message

Unreviewed, re-enable concurrent GC on ARM64 now that the most likely culprit of the memory
regressions is fixed. Lets see what the bots think!

* runtime/Options.cpp:
(JSC::recomputeDependentOptions):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (209826 => 209827)


--- trunk/Source/_javascript_Core/ChangeLog	2016-12-14 21:02:07 UTC (rev 209826)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-12-14 21:05:56 UTC (rev 209827)
@@ -1,5 +1,13 @@
 2016-12-14  Filip Pizlo  <[email protected]>
 
+        Unreviewed, re-enable concurrent GC on ARM64 now that the most likely culprit of the memory
+        regressions is fixed. Lets see what the bots think!
+
+        * runtime/Options.cpp:
+        (JSC::recomputeDependentOptions):
+
+2016-12-14  Filip Pizlo  <[email protected]>
+
         Devices with fewer cores should use a more aggressive GC schedule by default
         https://bugs.webkit.org/show_bug.cgi?id=165859
 

Modified: trunk/Source/_javascript_Core/runtime/Options.cpp (209826 => 209827)


--- trunk/Source/_javascript_Core/runtime/Options.cpp	2016-12-14 21:02:07 UTC (rev 209826)
+++ trunk/Source/_javascript_Core/runtime/Options.cpp	2016-12-14 21:05:56 UTC (rev 209827)
@@ -341,7 +341,7 @@
     Options::useFTLJIT() = false;
 #endif
     
-#if !CPU(X86_64)
+#if !CPU(X86_64) && !CPU(ARM64)
     Options::useConcurrentGC() = false;
 #endif
     
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to