Title: [231481] trunk/Source/WTF
- Revision
- 231481
- Author
- [email protected]
- Date
- 2018-05-07 23:05:46 -0700 (Mon, 07 May 2018)
Log Message
[JSCONLY] Enable ARMv7 DFG
https://bugs.webkit.org/show_bug.cgi?id=185415
Reviewed by Mark Lam.
Enable ARMv7 DFG JIT by default on Linux and FreeBSD.
* wtf/Platform.h:
Modified Paths
Diff
Modified: trunk/Source/WTF/ChangeLog (231480 => 231481)
--- trunk/Source/WTF/ChangeLog 2018-05-08 05:26:39 UTC (rev 231480)
+++ trunk/Source/WTF/ChangeLog 2018-05-08 06:05:46 UTC (rev 231481)
@@ -1,3 +1,14 @@
+2018-05-07 Yusuke Suzuki <[email protected]>
+
+ [JSCONLY] Enable ARMv7 DFG
+ https://bugs.webkit.org/show_bug.cgi?id=185415
+
+ Reviewed by Mark Lam.
+
+ Enable ARMv7 DFG JIT by default on Linux and FreeBSD.
+
+ * wtf/Platform.h:
+
2018-05-06 Filip Pizlo <[email protected]>
InPlaceAbstractState::beginBasicBlock shouldn't have to clear any abstract values
Modified: trunk/Source/WTF/wtf/Platform.h (231480 => 231481)
--- trunk/Source/WTF/wtf/Platform.h 2018-05-08 05:26:39 UTC (rev 231480)
+++ trunk/Source/WTF/wtf/Platform.h 2018-05-08 06:05:46 UTC (rev 231481)
@@ -777,8 +777,8 @@
#if (CPU(X86) || CPU(X86_64)) && (OS(DARWIN) || OS(LINUX) || OS(FREEBSD) || OS(HURD) || OS(WINDOWS))
#define ENABLE_DFG_JIT 1
#endif
-/* Enable the DFG JIT on ARMv7. Only tested on iOS and GTK+/WPE Linux. */
-#if (CPU(ARM_THUMB2) || CPU(ARM64)) && (PLATFORM(IOS) || PLATFORM(GTK) || PLATFORM(WPE))
+/* Enable the DFG JIT on ARMv7. Only tested on iOS, Linux, and FreeBSD. */
+#if (CPU(ARM_THUMB2) || CPU(ARM64)) && (PLATFORM(IOS) || OS(LINUX) || OS(FREEBSD))
#define ENABLE_DFG_JIT 1
#endif
/* Enable the DFG JIT on ARM. */
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes