Title: [287941] trunk/Source/WTF
Revision
287941
Author
ysuz...@apple.com
Date
2022-01-12 11:46:07 -0800 (Wed, 12 Jan 2022)

Log Message

[JSC] Enable libpas jit-heap when libpas is enabled
https://bugs.webkit.org/show_bug.cgi?id=235042

Reviewed by Filip Pizlo.

Previously, we enabled jit-heap only in ARM64 macOS.
We should enable it when libpas is enabled.

* wtf/PlatformUse.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (287940 => 287941)


--- trunk/Source/WTF/ChangeLog	2022-01-12 19:19:30 UTC (rev 287940)
+++ trunk/Source/WTF/ChangeLog	2022-01-12 19:46:07 UTC (rev 287941)
@@ -1,3 +1,15 @@
+2022-01-10  Yusuke Suzuki  <ysuz...@apple.com>
+
+        [JSC] Enable libpas jit-heap when libpas is enabled
+        https://bugs.webkit.org/show_bug.cgi?id=235042
+
+        Reviewed by Filip Pizlo.
+
+        Previously, we enabled jit-heap only in ARM64 macOS.
+        We should enable it when libpas is enabled.
+
+        * wtf/PlatformUse.h:
+
 2022-01-12  Zan Dobersek  <zdober...@igalia.com>
 
         [WTF] Exclude any Linux-based platform in DisallowCType.h

Modified: trunk/Source/WTF/wtf/PlatformUse.h (287940 => 287941)


--- trunk/Source/WTF/wtf/PlatformUse.h	2022-01-12 19:19:30 UTC (rev 287940)
+++ trunk/Source/WTF/wtf/PlatformUse.h	2022-01-12 19:46:07 UTC (rev 287941)
@@ -355,11 +355,9 @@
 #if !defined(USE_LIBPAS_JIT_HEAP) && !USE(SYSTEM_MALLOC)
 #include <bmalloc/BPlatform.h>
 #if BENABLE(LIBPAS)
-#if PLATFORM(MAC) && CPU(ARM64)
 #define USE_LIBPAS_JIT_HEAP 1
 #endif
 #endif
-#endif
 
 #if PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED < 120000
 #define USE_VORBIS_AUDIOCOMPONENT_WORKAROUND 1
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to