RESOLVED FIXED 128297
GC should safepoint the DFG worklist in a smarter way rather than just waiting for everything to complete
https://bugs.webkit.org/show_bug.cgi?id=128297
Summary GC should safepoint the DFG worklist in a smarter way rather than just waitin...
Filip Pizlo
Reported 2014-02-05 22:25:38 PST
Patch forthcoming.
Attachments
getting close (19.63 KB, patch)
2014-02-07 13:17 PST, Filip Pizlo
no flags
the patch (27.60 KB, patch)
2014-02-07 14:03 PST, Filip Pizlo
oliver: review+
Filip Pizlo
Comment 1 2014-02-07 13:17:38 PST
Created attachment 223488 [details] getting close
Filip Pizlo
Comment 2 2014-02-07 14:03:42 PST
Created attachment 223495 [details] the patch
Oliver Hunt
Comment 3 2014-02-07 14:11:38 PST
Comment on attachment 223495 [details] the patch View in context: https://bugs.webkit.org/attachment.cgi?id=223495&action=review > Source/JavaScriptCore/bytecode/CodeBlock.h:897 > - > + drop this change > Source/JavaScriptCore/dfg/DFGDesiredStructureChains.cpp:48 > + for (unsigned i = m_vector.size(); i--;) > + m_vector[i]->visitChildren(visitor); Why reverse iteration? Forward iteration is much nicer. > Source/JavaScriptCore/dfg/DFGDesiredWeakReferences.cpp:63 > + visitor.appendUnbarrieredPointer(&m_references[i]); and again, what's the reasoning here?
Filip Pizlo
Comment 4 2014-02-07 14:14:27 PST
(In reply to comment #3) > (From update of attachment 223495 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=223495&action=review > > > Source/JavaScriptCore/bytecode/CodeBlock.h:897 > > - > > + > > drop this change > > > Source/JavaScriptCore/dfg/DFGDesiredStructureChains.cpp:48 > > + for (unsigned i = m_vector.size(); i--;) > > + m_vector[i]->visitChildren(visitor); > > Why reverse iteration? Forward iteration is much nicer. It takes less code. It makes no difference which direction you use. There is a lot of code in JSC that uses reverse iteration. > > > Source/JavaScriptCore/dfg/DFGDesiredWeakReferences.cpp:63 > > + visitor.appendUnbarrieredPointer(&m_references[i]); > > and again, what's the reasoning here? Less code.
Filip Pizlo
Comment 5 2014-02-07 21:02:54 PST
Simon Fraser (smfr)
Comment 6 2014-02-07 22:27:53 PST
Filip Pizlo
Comment 7 2014-02-07 22:30:05 PST
Note You need to log in before you can comment on or make changes to this bug.