Title: [220993] trunk/Source/WTF
- Revision
- 220993
- Author
- clo...@igalia.com
- Date
- 2017-08-21 18:07:17 -0700 (Mon, 21 Aug 2017)
Log Message
[GTK] ARMv7 build fails to build MacroAssemblerARMv7.cpp.
https://bugs.webkit.org/show_bug.cgi?id=175514
Reviewed by Keith Miller.
* wtf/Platform.h: Enable DFG and MASM_PROBE back for GTK ARM_THUMB2.
Modified Paths
Diff
Modified: trunk/Source/WTF/ChangeLog (220992 => 220993)
--- trunk/Source/WTF/ChangeLog 2017-08-22 00:23:39 UTC (rev 220992)
+++ trunk/Source/WTF/ChangeLog 2017-08-22 01:07:17 UTC (rev 220993)
@@ -1,3 +1,12 @@
+2017-08-21 Carlos Alberto Lopez Perez <clo...@igalia.com>
+
+ [GTK] ARMv7 build fails to build MacroAssemblerARMv7.cpp.
+ https://bugs.webkit.org/show_bug.cgi?id=175514
+
+ Reviewed by Keith Miller.
+
+ * wtf/Platform.h: Enable DFG and MASM_PROBE back for GTK ARM_THUMB2.
+
2017-08-20 Sam Weinig <s...@webkit.org>
StringView could use a function to strip leading/trailing characters without allocation
Modified: trunk/Source/WTF/wtf/Platform.h (220992 => 220993)
--- trunk/Source/WTF/wtf/Platform.h 2017-08-22 00:23:39 UTC (rev 220992)
+++ trunk/Source/WTF/wtf/Platform.h 2017-08-22 01:07:17 UTC (rev 220993)
@@ -786,8 +786,8 @@
#if (CPU(X86) || CPU(X86_64)) && (OS(DARWIN) || OS(LINUX) || OS(FREEBSD) || OS(HURD))
#define ENABLE_DFG_JIT 1
#endif
-/* Enable the DFG JIT on ARMv7. Only tested on iOS and Qt/GTK+ Linux. */
-#if (CPU(ARM_THUMB2) || CPU(ARM64)) && (PLATFORM(IOS) || PLATFORM(WPE))
+/* 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))
#define ENABLE_DFG_JIT 1
#endif
/* Enable the DFG JIT on ARM. */
@@ -831,11 +831,6 @@
#undef ENABLE_MASM_PROBE
#define ENABLE_MASM_PROBE 0
#endif
-#if PLATFORM(GTK) && CPU(ARM_THUMB2)
-/* FIXME: https://bugs.webkit.org/show_bug.cgi?id=175514 */
-#undef ENABLE_MASM_PROBE
-#define ENABLE_MASM_PROBE 0
-#endif
/* If the baseline jit is not available, then disable upper tiers as well.
The MacroAssembler::probe() is also required for supporting the upper tiers. */
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes