Title: [170061] trunk/Source/WTF
Revision
170061
Author
[email protected]
Date
2014-06-17 10:59:17 -0700 (Tue, 17 Jun 2014)

Log Message

Enable css jit for armv7 on iOS.
https://bugs.webkit.org/show_bug.cgi?id=133961
<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 (170060 => 170061)


--- trunk/Source/WTF/ChangeLog	2014-06-17 17:52:35 UTC (rev 170060)
+++ trunk/Source/WTF/ChangeLog	2014-06-17 17:59:17 UTC (rev 170061)
@@ -1,3 +1,14 @@
+2014-06-17  Alex Christensen  <[email protected]>
+
+        Enable css jit for armv7 on iOS.
+        https://bugs.webkit.org/show_bug.cgi?id=133961
+        <rdar://problem/17310631>
+
+        Reviewed by Andreas Kling.
+
+        * wtf/Platform.h:
+        Enable css jit for ARM thumb on iOS.
+
 2014-06-17  Dan Bernstein  <[email protected]>
 
         String::isolatedCopy doesn’t return an isolated copy when used on an rvalue reference

Modified: trunk/Source/WTF/wtf/Platform.h (170060 => 170061)


--- trunk/Source/WTF/wtf/Platform.h	2014-06-17 17:52:35 UTC (rev 170060)
+++ trunk/Source/WTF/wtf/Platform.h	2014-06-17 17:59:17 UTC (rev 170061)
@@ -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
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to