Title: [259018] trunk/Source/WTF
Revision
259018
Author
chris.r...@sony.com
Date
2020-03-25 16:19:01 -0700 (Wed, 25 Mar 2020)

Log Message

[PlayStation] Specify a 16 KB minimum page size
https://bugs.webkit.org/show_bug.cgi?id=209566

Reviewed by Ross Kirsling.

* wtf/PageBlock.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (259017 => 259018)


--- trunk/Source/WTF/ChangeLog	2020-03-25 23:05:41 UTC (rev 259017)
+++ trunk/Source/WTF/ChangeLog	2020-03-25 23:19:01 UTC (rev 259018)
@@ -1,3 +1,12 @@
+2020-03-25  Christopher Reid  <chris.r...@sony.com>
+
+        [PlayStation] Specify a 16 KB minimum page size
+        https://bugs.webkit.org/show_bug.cgi?id=209566
+
+        Reviewed by Ross Kirsling.
+
+        * wtf/PageBlock.h:
+
 2020-03-25  Sihui Liu  <sihui_...@apple.com>
 
         Remove unused suspend functions in CrossThreadTaskHandler

Modified: trunk/Source/WTF/wtf/PageBlock.h (259017 => 259018)


--- trunk/Source/WTF/wtf/PageBlock.h	2020-03-25 23:05:41 UTC (rev 259017)
+++ trunk/Source/WTF/wtf/PageBlock.h	2020-03-25 23:19:01 UTC (rev 259018)
@@ -47,7 +47,7 @@
 // 64 KiB. (Apple uses 16 KiB.)
 //
 // Use 64 KiB for any unknown CPUs to be conservative.
-#if OS(DARWIN)
+#if OS(DARWIN) || PLATFORM(PLAYSTATION)
 constexpr size_t CeilingOnPageSize = 16 * KB;
 #elif OS(WINDOWS) || CPU(MIPS) || CPU(X86) || CPU(X86_64) || CPU(ARM)
 constexpr size_t CeilingOnPageSize = 4 * KB;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to