Title: [275854] trunk/Source/WTF
Revision
275854
Author
[email protected]
Date
2021-04-12 18:06:07 -0700 (Mon, 12 Apr 2021)

Log Message

[PlayStation] Enable WTFCrashWithInfo implementation
https://bugs.webkit.org/show_bug.cgi?id=224458

Reviewed by Don Olmstead.

Enable WTFCrashWithInfo implementation for PlayStation platform. It is x86_64 and uses clang
so that it can share Darwin's implemetation with us.

* wtf/Assertions.cpp:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (275853 => 275854)


--- trunk/Source/WTF/ChangeLog	2021-04-13 00:48:17 UTC (rev 275853)
+++ trunk/Source/WTF/ChangeLog	2021-04-13 01:06:07 UTC (rev 275854)
@@ -1,3 +1,15 @@
+2021-04-12  Basuke Suzuki  <[email protected]>
+
+        [PlayStation] Enable WTFCrashWithInfo implementation
+        https://bugs.webkit.org/show_bug.cgi?id=224458
+
+        Reviewed by Don Olmstead.
+
+        Enable WTFCrashWithInfo implementation for PlayStation platform. It is x86_64 and uses clang
+        so that it can share Darwin's implemetation with us.
+
+        * wtf/Assertions.cpp:
+
 2021-04-12  Youenn Fablet  <[email protected]>
 
         Block loading for port 10080

Modified: trunk/Source/WTF/wtf/Assertions.cpp (275853 => 275854)


--- trunk/Source/WTF/wtf/Assertions.cpp	2021-04-13 00:48:17 UTC (rev 275853)
+++ trunk/Source/WTF/wtf/Assertions.cpp	2021-04-13 01:06:07 UTC (rev 275854)
@@ -602,7 +602,7 @@
 
 } // extern "C"
 
-#if OS(DARWIN) && (CPU(X86_64) || CPU(ARM64))
+#if (OS(DARWIN) || PLATFORM(PLAYSTATION)) && (CPU(X86_64) || CPU(ARM64))
 #if CPU(X86_64)
 
 #define CRASH_INST "int3"
@@ -713,7 +713,7 @@
 void WTFCrashWithInfoImpl(int, const char*, const char*, int, uint64_t, uint64_t) { CRASH(); }
 void WTFCrashWithInfoImpl(int, const char*, const char*, int, uint64_t) { CRASH(); }
 
-#endif // OS(DARWIN) && (CPU(X64_64) || CPU(ARM64))
+#endif // (OS(DARWIN) || PLATFORM(PLAYSTATION)) && (CPU(X64_64) || CPU(ARM64))
 
 namespace WTF {
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to