Title: [169958] trunk/Source/WTF
Revision
169958
Author
achristen...@apple.com
Date
2014-06-13 17:18:01 -0700 (Fri, 13 Jun 2014)

Log Message

Enable css jit for armv7 on iOS.
https://bugs.webkit.org/show_bug.cgi?id=133890
<rdar://problem/17310631>

Reviewed by Andreas Kling.

* wtf/Platform.h:
Enable css jit for ARM thumb on iOS.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (169957 => 169958)


--- trunk/Source/WTF/ChangeLog	2014-06-14 00:04:03 UTC (rev 169957)
+++ trunk/Source/WTF/ChangeLog	2014-06-14 00:18:01 UTC (rev 169958)
@@ -1,3 +1,14 @@
+2014-06-13  Alex Christensen  <achristen...@webkit.org>
+
+        Enable css jit for armv7 on iOS.
+        https://bugs.webkit.org/show_bug.cgi?id=133890
+        <rdar://problem/17310631>
+
+        Reviewed by Andreas Kling.
+
+        * wtf/Platform.h:
+        Enable css jit for ARM thumb on iOS.
+
 2014-06-13  Mark Hahnenberg  <mhahnenb...@apple.com>
 
         OSR exit should barrier the Executables for all InlineCallFrames, not just those on the stack at the time of exit

Modified: trunk/Source/WTF/wtf/Platform.h (169957 => 169958)


--- trunk/Source/WTF/wtf/Platform.h	2014-06-14 00:04:03 UTC (rev 169957)
+++ trunk/Source/WTF/wtf/Platform.h	2014-06-14 00:18:01 UTC (rev 169958)
@@ -853,7 +853,7 @@
 
 /* CSS Selector JIT Compiler */
 #if !defined(ENABLE_CSS_SELECTOR_JIT)
-#if (CPU(X86_64) || CPU(ARM64)) && ENABLE(JIT) && (OS(DARWIN) || PLATFORM(GTK) || PLATFORM(EFL))
+#if (CPU(X86_64) || CPU(ARM64) || (CPU(ARM_THUMB2) && PLATFORM(IOS))) && ENABLE(JIT) && (OS(DARWIN) || PLATFORM(GTK) || PLATFORM(EFL))
 #define ENABLE_CSS_SELECTOR_JIT 1
 #else
 #define ENABLE_CSS_SELECTOR_JIT 0
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to