RESOLVED FIXED 205107
Put all generated JSCells in WebCore into IsoSubspace
https://bugs.webkit.org/show_bug.cgi?id=205107
Summary Put all generated JSCells in WebCore into IsoSubspace
Yusuke Suzuki
Reported 2019-12-11 02:17:11 PST
Do it via CodeGeneratorJS.pm
Attachments
Patch (14.15 KB, patch)
2020-03-03 23:02 PST, Yusuke Suzuki
no flags
Patch (275.73 KB, patch)
2020-03-04 15:47 PST, Yusuke Suzuki
no flags
Patch (275.84 KB, patch)
2020-03-04 16:24 PST, Yusuke Suzuki
no flags
Patch (281.55 KB, patch)
2020-03-04 16:41 PST, Yusuke Suzuki
no flags
Patch (284.32 KB, patch)
2020-03-04 17:40 PST, Yusuke Suzuki
saam: review+
Yusuke Suzuki
Comment 1 2020-03-03 23:02:22 PST
Radar WebKit Bug Importer
Comment 2 2020-03-04 15:37:40 PST
Yusuke Suzuki
Comment 3 2020-03-04 15:47:01 PST
Yusuke Suzuki
Comment 4 2020-03-04 16:24:16 PST
Yusuke Suzuki
Comment 5 2020-03-04 16:41:38 PST
Yusuke Suzuki
Comment 6 2020-03-04 17:40:21 PST
Saam Barati
Comment 7 2020-03-04 18:44:49 PST
Comment on attachment 392521 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=392521&action=review > Source/WebCore/bindings/scripts/CodeGeneratorJS.pm:4679 > + push(@implContent, " else\n"); > + push(@implContent, " spaces.m_subspaceFor${interfaceName} = makeUnique<IsoSubspace> ISO_SUBSPACE_INIT(vm.heap, vm.cellHeapCellType.get(), ${className});\n"); can we also assert here that the object is not destructible. Maybe even static assert?
Saam Barati
Comment 8 2020-03-04 18:45:02 PST
r=me
Yusuke Suzuki
Comment 9 2020-03-04 23:18:24 PST
Jason Lawrence
Comment 10 2020-03-05 10:02:24 PST
Reverted r257905 for reason: This commit caused crashes on Mac wk2 Debug. Committed r257922: <https://trac.webkit.org/changeset/257922>
Yusuke Suzuki
Comment 11 2020-03-05 15:01:27 PST
WebKit Commit Bot
Comment 12 2020-03-06 02:50:20 PST
Re-opened since this is blocked by bug 208704
Yusuke Suzuki
Comment 13 2020-03-06 02:59:55 PST
Comment on attachment 392521 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=392521&action=review > Source/WebCore/bindings/js/WebCoreJSClientData.h:72 > + Vector<JSC::IsoSubspace*> outputConstraintSpaces() { return m_outputConstraintSpaces; } This is the bug. We should return Vector<JSC::IsoSubspace*>&.
Yusuke Suzuki
Comment 14 2020-03-06 03:10:45 PST
(In reply to Yusuke Suzuki from comment #13) > Comment on attachment 392521 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=392521&action=review > > > Source/WebCore/bindings/js/WebCoreJSClientData.h:72 > > + Vector<JSC::IsoSubspace*> outputConstraintSpaces() { return m_outputConstraintSpaces; } > > This is the bug. We should return Vector<JSC::IsoSubspace*>&. I've ensured this fixes the debug assertion problem.
Yusuke Suzuki
Comment 15 2020-03-06 03:11:47 PST
Fujii Hironori
Comment 16 2020-03-06 17:00:08 PST
Do you want to put WebCoreTestSupport objects into IsoSubspace? It seems a layer violation that WebCore depends on WebCoreTestSupport.
Yusuke Suzuki
Comment 17 2020-03-07 08:07:24 PST
(In reply to Fujii Hironori from comment #16) > Do you want to put WebCoreTestSupport objects into IsoSubspace? > It seems a layer violation that WebCore depends on WebCoreTestSupport. In Apple ports, all IDL files are preprocessed first, and at this point, we are generating IsoSubspaces.
Yusuke Suzuki
Comment 18 2020-03-07 08:16:59 PST
(In reply to Yusuke Suzuki from comment #17) > (In reply to Fujii Hironori from comment #16) > > Do you want to put WebCoreTestSupport objects into IsoSubspace? > > It seems a layer violation that WebCore depends on WebCoreTestSupport. > > In Apple ports, all IDL files are preprocessed first, and at this point, we > are generating IsoSubspaces. Currently, in Apple ports, preprocess-idls.pl phase does not have layering between support ones and WebCore ones. All IDLs are preprocessed at once. So IsoSubspaces are generated at this point. That’s why IsoSubspaces for testing things are also generated here for now.
Fujii Hironori
Comment 19 2020-03-07 16:21:30 PST
It makes WebCore can't build without WebCoreTestSupport's IDL files. There is no actual problem. It's just a layer matter.
Note You need to log in before you can comment on or make changes to this bug.