Title: [249865] trunk/Source/_javascript_Core
Revision
249865
Author
mark....@apple.com
Date
2019-09-13 18:52:16 -0700 (Fri, 13 Sep 2019)

Log Message

watchOS requires PageSize alignment of 16K for JSC::Config.
https://bugs.webkit.org/show_bug.cgi?id=201786
<rdar://problem/55357890>

Reviewed by Yusuke Suzuki.

* runtime/JSCConfig.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (249864 => 249865)


--- trunk/Source/_javascript_Core/ChangeLog	2019-09-14 01:12:15 UTC (rev 249864)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-09-14 01:52:16 UTC (rev 249865)
@@ -1,3 +1,13 @@
+2019-09-13  Mark Lam  <mark....@apple.com>
+
+        watchOS requires PageSize alignment of 16K for JSC::Config.
+        https://bugs.webkit.org/show_bug.cgi?id=201786
+        <rdar://problem/55357890>
+
+        Reviewed by Yusuke Suzuki.
+
+        * runtime/JSCConfig.h:
+
 2019-09-13  Yusuke Suzuki  <ysuz...@apple.com>
 
         Unreviewed, follow-up fix after r249842

Modified: trunk/Source/_javascript_Core/runtime/JSCConfig.h (249864 => 249865)


--- trunk/Source/_javascript_Core/runtime/JSCConfig.h	2019-09-14 01:12:15 UTC (rev 249864)
+++ trunk/Source/_javascript_Core/runtime/JSCConfig.h	2019-09-14 01:52:16 UTC (rev 249865)
@@ -34,7 +34,7 @@
 class ExecutableAllocator;
 class FixedVMPoolExecutableAllocator;
 
-#if CPU(ARM64)
+#if CPU(ARM64) || PLATFORM(WATCHOS)
 constexpr size_t PageSize = 16 * KB;
 #else
 constexpr size_t PageSize = 4 * KB;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to