RESOLVED FIXED 203231
Clients of JSArray::tryCreateUninitializedRestricted() should invoke the mutatorFence().
https://bugs.webkit.org/show_bug.cgi?id=203231
Summary Clients of JSArray::tryCreateUninitializedRestricted() should invoke the muta...
Mark Lam
Reported 2019-10-21 19:38:16 PDT
Clients of JSArray::tryCreateUninitializedRestricted() creates a partially initialized JSArray, with the contract that it will take care of filling in all the missing indexed properties before unleashing the newly created array on the world. We intentionally do not unconditionally write barrier newly created arrays and rely on an owner object (or GC root) that it gets put into to scan it. That said, there's no guarantee that we won't reach a GC safe point while the newly created array is still on the stack before it gets put into an owner object (or GC root). We should ensure that all stores into the array are properly completed before that GC safe point. Hence, we should invoke the mutatorFence() after the client of JSArray::tryCreateUninitializedRestricted() finishes initializing the array.
Attachments
work in progress for EWS testing. (4.06 KB, patch)
2019-10-21 19:40 PDT, Mark Lam
no flags
proposed patch. (7.00 KB, patch)
2019-10-21 23:37 PDT, Mark Lam
saam: review+
Radar WebKit Bug Importer
Comment 1 2019-10-21 19:38:56 PDT
Mark Lam
Comment 2 2019-10-21 19:40:40 PDT
Created attachment 381501 [details] work in progress for EWS testing.
Mark Lam
Comment 3 2019-10-21 23:37:51 PDT
Created attachment 381513 [details] proposed patch.
Saam Barati
Comment 4 2019-10-22 12:03:48 PDT
Comment on attachment 381513 [details] proposed patch. View in context: https://bugs.webkit.org/attachment.cgi?id=381513&action=review > Source/JavaScriptCore/ChangeLog:18 > + That said, there's no guarantee that we won't reach a GC safe point with the > + newly created array is on the stack before it gets put into an owner object > + (or GC root). how does a safe point not do the required fencing? I think this is necessary because when we store the array into another object. But I don't think it's necessary for this reason.
Mark Lam
Comment 5 2019-10-22 14:19:57 PDT
(In reply to Saam Barati from comment #4) > I think this is necessary because when we store the array into another > object. But I don't think it's necessary for this reason. Thanks for the review. I've fixed the comment. Landed in r251456: <http://trac.webkit.org/r251456>.
Note You need to log in before you can comment on or make changes to this bug.