Title: [134609] trunk/Source/WTF
- Revision
- 134609
- Author
- o...@webkit.org
- Date
- 2012-11-14 07:35:38 -0800 (Wed, 14 Nov 2012)
Log Message
[Qt][ARM] Enable the DFG JIT on ARMv7(Thumb2)
https://bugs.webkit.org/show_bug.cgi?id=101747
Reviewed by Simon Hausmann.
* wtf/Platform.h:
Modified Paths
Diff
Modified: trunk/Source/WTF/ChangeLog (134608 => 134609)
--- trunk/Source/WTF/ChangeLog 2012-11-14 15:25:25 UTC (rev 134608)
+++ trunk/Source/WTF/ChangeLog 2012-11-14 15:35:38 UTC (rev 134609)
@@ -1,3 +1,12 @@
+2012-11-14 Csaba Osztrogonác <o...@webkit.org>
+
+ [Qt][ARM] Enable the DFG JIT on ARMv7(Thumb2)
+ https://bugs.webkit.org/show_bug.cgi?id=101747
+
+ Reviewed by Simon Hausmann.
+
+ * wtf/Platform.h:
+
2012-11-13 Christophe Dumez <christophe.du...@intel.com>
Use prefix form of increment / decrement operators in WTF String classes when possible
Modified: trunk/Source/WTF/wtf/Platform.h (134608 => 134609)
--- trunk/Source/WTF/wtf/Platform.h 2012-11-14 15:25:25 UTC (rev 134608)
+++ trunk/Source/WTF/wtf/Platform.h 2012-11-14 15:35:38 UTC (rev 134609)
@@ -934,8 +934,8 @@
#if (CPU(X86) || CPU(X86_64)) && (PLATFORM(MAC) || OS(LINUX))
#define ENABLE_DFG_JIT 1
#endif
-/* Enable the DFG JIT on ARMv7. Only tested on iOS. */
-#if CPU(ARM_THUMB2) && (PLATFORM(IOS) || PLATFORM(BLACKBERRY))
+/* Enable the DFG JIT on ARMv7. Only tested on iOS and Qt Linux. */
+#if CPU(ARM_THUMB2) && (PLATFORM(IOS) || PLATFORM(BLACKBERRY) || PLATFORM(QT))
#define ENABLE_DFG_JIT 1
#endif
/* Enable the DFG JIT on ARM. */
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes