Title: [181544] releases/WebKitGTK/webkit-2.8/Source/WTF
Revision
181544
Author
[email protected]
Date
2015-03-16 04:45:11 -0700 (Mon, 16 Mar 2015)

Log Message

Merge r181462 - Disable Yarr JIT for ARMv7k
https://bugs.webkit.org/show_bug.cgi?id=142645

Reviewed by Oliver Hunt.

Make the setting of ENABLE_YARR_JIT match ENABLE_JIT for ARMv7k.

* wtf/Platform.h:

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.8/Source/WTF/ChangeLog (181543 => 181544)


--- releases/WebKitGTK/webkit-2.8/Source/WTF/ChangeLog	2015-03-16 11:42:44 UTC (rev 181543)
+++ releases/WebKitGTK/webkit-2.8/Source/WTF/ChangeLog	2015-03-16 11:45:11 UTC (rev 181544)
@@ -1,3 +1,25 @@
+2015-03-14  Michael Saboff  <[email protected]>
+
+        Disable Yarr JIT for ARMv7k
+        https://bugs.webkit.org/show_bug.cgi?id=142645
+
+        Rubber stamped by Geoffrey Garen.
+
+        Changed the setting of ENABLE_YARR_JIT to be predicated on ENABLED_JIT.
+
+        * wtf/Platform.h:
+
+2015-03-12  Michael Saboff  <[email protected]>
+
+        Disable Yarr JIT for ARMv7k
+        https://bugs.webkit.org/show_bug.cgi?id=142645
+
+        Reviewed by Oliver Hunt.
+
+        Make the setting of ENABLE_YARR_JIT match ENABLE_JIT for ARMv7k.
+
+        * wtf/Platform.h:
+
 2015-03-12  Mark Lam  <[email protected]>
 
         Change WTF::ByteSpinLock to use std::atomic.

Modified: releases/WebKitGTK/webkit-2.8/Source/WTF/wtf/Platform.h (181543 => 181544)


--- releases/WebKitGTK/webkit-2.8/Source/WTF/wtf/Platform.h	2015-03-16 11:42:44 UTC (rev 181543)
+++ releases/WebKitGTK/webkit-2.8/Source/WTF/wtf/Platform.h	2015-03-16 11:45:11 UTC (rev 181544)
@@ -656,7 +656,7 @@
 #endif
 #endif /* !defined(WTF_USE_JSVALUE64) && !defined(WTF_USE_JSVALUE32_64) */
 
-/* The JIT is enabled by default on all x86, x86-64, ARM & MIPS platforms except ARMv7k and Windows. */
+/* The JIT is enabled by default on all x86, x86-64, ARM & MIPS platforms except ARMv7k. */
 #if !defined(ENABLE_JIT) \
     && (CPU(X86) || CPU(X86_64) || CPU(ARM) || CPU(ARM64) || CPU(MIPS)) \
     && !CPU(APPLE_ARMV7K)
@@ -820,7 +820,7 @@
 #define ENABLE_REGEXP_TRACING 0
 
 /* Yet Another Regex Runtime - turned on by default for JIT enabled ports. */
-#if !defined(ENABLE_YARR_JIT)
+#if !defined(ENABLE_YARR_JIT) && ENABLE(JIT)
 #define ENABLE_YARR_JIT 1
 
 /* Setting this flag compares JIT results with interpreter results. */
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to