RESOLVED FIXED 203177
[JSC] DFG::CommonData modification by DFG reallyAdd should be guarded by CodeBlock's lock
https://bugs.webkit.org/show_bug.cgi?id=203177
Summary [JSC] DFG::CommonData modification by DFG reallyAdd should be guarded by Code...
Yusuke Suzuki
Reported 2019-10-18 17:35:17 PDT
[JSC] DFG::CommonData modification by DFG reallyAdd should be guarded by CodeBlock's lock
Attachments
Patch (11.58 KB, patch)
2019-10-18 17:37 PDT, Yusuke Suzuki
no flags
Patch (11.39 KB, patch)
2019-10-18 17:41 PDT, Yusuke Suzuki
mark.lam: review+
Yusuke Suzuki
Comment 1 2019-10-18 17:37:42 PDT
Yusuke Suzuki
Comment 2 2019-10-18 17:39:15 PDT
Yusuke Suzuki
Comment 3 2019-10-18 17:41:35 PDT
Mark Lam
Comment 4 2019-10-18 21:10:28 PDT
Comment on attachment 381356 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=381356&action=review r=me. > Source/JavaScriptCore/dfg/DFGDesiredGlobalProperties.cpp:69 > + watchpointSet.add(watchpoint); Why not WTFMove(watchpoint) here too? > JSTests/stress/dfg-really-add-locking.js:1 > +//@ runDefault("--collectContinuously=1", "--useGenerationalGC=0") How long does this test take to run? if it's a slow test, then consider adding "//@ slow!" here too.
Yusuke Suzuki
Comment 5 2019-10-18 23:30:23 PDT
Comment on attachment 381356 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=381356&action=review >> Source/JavaScriptCore/dfg/DFGDesiredGlobalProperties.cpp:69 >> + watchpointSet.add(watchpoint); > > Why not WTFMove(watchpoint) here too? Fixed. >> JSTests/stress/dfg-really-add-locking.js:1 >> +//@ runDefault("--collectContinuously=1", "--useGenerationalGC=0") > > How long does this test take to run? if it's a slow test, then consider adding "//@ slow!" here too. It takes not so much time, but to make more reliable, I need to add more iterations. I'll add `for (var i = 0; i < 10; ++i)` while adding `slow!`. But even though, reliable reproduce is requiring much more repeated test runs.
Yusuke Suzuki
Comment 6 2019-10-18 23:31:34 PDT
Note You need to log in before you can comment on or make changes to this bug.