Title: [284137] trunk/Source/_javascript_Core
Revision
284137
Author
[email protected]
Date
2021-10-13 17:39:19 -0700 (Wed, 13 Oct 2021)

Log Message

Clearly distinguish serial from concurrent WorkQueue
https://bugs.webkit.org/show_bug.cgi?id=231418
rdar://problem/84021977

Patch by Jean-Yves Avenard <[email protected]> on 2021-10-13
Reviewed by Chris Dumez.

Replace instances of WorkQueue being constructed as a concurrent one
with ConcurrentWorkQueue.
Remove the now unnecessary use of WorkQueue::Type::Serial in constructor.

* jit/ExecutableAllocator.cpp:
(JSC::dumpJITMemory):
* runtime/Watchdog.cpp:
(JSC::Watchdog::Watchdog):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (284136 => 284137)


--- trunk/Source/_javascript_Core/ChangeLog	2021-10-14 00:18:01 UTC (rev 284136)
+++ trunk/Source/_javascript_Core/ChangeLog	2021-10-14 00:39:19 UTC (rev 284137)
@@ -17,6 +17,12 @@
 
 2021-10-13  Yusuke Suzuki  <[email protected]>
 
+        Unreviewed, build fix with new clang
+
+        * wasm/WasmValueLocation.h:
+
+2021-10-13  Yusuke Suzuki  <[email protected]>
+
         [JSC] Update adjusted thread numbers
         https://bugs.webkit.org/show_bug.cgi?id=231696
 

Modified: trunk/Source/_javascript_Core/wasm/WasmValueLocation.h (284136 => 284137)


--- trunk/Source/_javascript_Core/wasm/WasmValueLocation.h	2021-10-14 00:18:01 UTC (rev 284136)
+++ trunk/Source/_javascript_Core/wasm/WasmValueLocation.h	2021-10-14 00:39:19 UTC (rev 284137)
@@ -57,8 +57,6 @@
         u.reg = reg;
     }
 
-    ValueLocation(const ValueLocation&) = default;
-
     static ValueLocation reg(Reg reg)
     {
         return ValueLocation(reg);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to