Title: [154325] trunk/Source/WTF
Revision
154325
Author
[email protected]
Date
2013-08-20 07:17:40 -0700 (Tue, 20 Aug 2013)

Log Message

<https://webkit.org/b/120056> [GTK][ARM] enable DFG_JIT

Patch by Víctor Manuel Jáquez Leal <[email protected]> on 2013-08-20
Reviewed by Martin Robinson.

Enable DFG_JIT in GTK+ platform for ARM/Thumb architecture

* wtf/Platform.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (154324 => 154325)


--- trunk/Source/WTF/ChangeLog	2013-08-20 13:38:14 UTC (rev 154324)
+++ trunk/Source/WTF/ChangeLog	2013-08-20 14:17:40 UTC (rev 154325)
@@ -1,3 +1,13 @@
+2013-08-20  Víctor Manuel Jáquez Leal  <[email protected]>
+
+        <https://webkit.org/b/120056> [GTK][ARM] enable DFG_JIT
+
+        Reviewed by Martin Robinson.
+
+        Enable DFG_JIT in GTK+ platform for ARM/Thumb architecture
+
+        * wtf/Platform.h:
+
 2013-08-19  Ryosuke Niwa  <[email protected]>
 
         <https://webkit.org/b/120049> Delete code for Snow Leopard

Modified: trunk/Source/WTF/wtf/Platform.h (154324 => 154325)


--- trunk/Source/WTF/wtf/Platform.h	2013-08-20 13:38:14 UTC (rev 154324)
+++ trunk/Source/WTF/wtf/Platform.h	2013-08-20 14:17:40 UTC (rev 154325)
@@ -755,8 +755,8 @@
 #if (CPU(X86) || CPU(X86_64)) && (OS(DARWIN) || OS(LINUX))
 #define ENABLE_DFG_JIT 1
 #endif
-/* Enable the DFG JIT on ARMv7.  Only tested on iOS and Qt Linux. */
-#if CPU(ARM_THUMB2) && (PLATFORM(IOS) || PLATFORM(BLACKBERRY) || PLATFORM(QT))
+/* Enable the DFG JIT on ARMv7.  Only tested on iOS and Qt/GTK+ Linux. */
+#if CPU(ARM_THUMB2) && (PLATFORM(IOS) || PLATFORM(BLACKBERRY) || PLATFORM(QT) || PLATFORM(GTK))
 #define ENABLE_DFG_JIT 1
 #endif
 /* Enable the DFG JIT on ARM, MIPS and SH4. */
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to