Title: [169480] trunk/Source/WTF
Revision
169480
Author
achristen...@apple.com
Date
2014-05-29 17:52:34 -0700 (Thu, 29 May 2014)

Log Message

Enable css jit by default on arm64.
https://bugs.webkit.org/show_bug.cgi?id=133246
<rdar://problem/17073407>

Reviewed by Benjamin Poulain.

* wtf/Platform.h:
Added arm64 to list of supported architectures.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (169479 => 169480)


--- trunk/Source/WTF/ChangeLog	2014-05-30 00:25:25 UTC (rev 169479)
+++ trunk/Source/WTF/ChangeLog	2014-05-30 00:52:34 UTC (rev 169480)
@@ -1,3 +1,14 @@
+2014-05-29  Alex Christensen  <achristen...@webkit.org>
+
+        Enable css jit by default on arm64.
+        https://bugs.webkit.org/show_bug.cgi?id=133246
+        <rdar://problem/17073407>
+
+        Reviewed by Benjamin Poulain.
+
+        * wtf/Platform.h:
+        Added arm64 to list of supported architectures.
+
 2014-05-28  Filip Pizlo  <fpi...@apple.com>
 
         DFG::DCEPhase inserts into an insertion set in reverse, causing hilarious basic block corruption if you kill a lot of NewArrays

Modified: trunk/Source/WTF/wtf/Platform.h (169479 => 169480)


--- trunk/Source/WTF/wtf/Platform.h	2014-05-30 00:25:25 UTC (rev 169479)
+++ trunk/Source/WTF/wtf/Platform.h	2014-05-30 00:52:34 UTC (rev 169480)
@@ -853,7 +853,7 @@
 
 /* CSS Selector JIT Compiler */
 #if !defined(ENABLE_CSS_SELECTOR_JIT)
-#if CPU(X86_64) && ENABLE(JIT) && (OS(DARWIN) || PLATFORM(GTK) || PLATFORM(EFL))
+#if (CPU(X86_64) || CPU(ARM64)) && 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