RESOLVED FIXED 75068
Make elements with attributes smaller by eliminating the reference count in NamedNodeMap
https://bugs.webkit.org/show_bug.cgi?id=75068
Summary Make elements with attributes smaller by eliminating the reference count in N...
Darin Adler
Reported 2011-12-21 23:34:48 PST
We should remove the separate reference count stored in each NamedNodeMap. An easy immediate way to do that would be by using OwnPtr instead of RefPtr to hold the map on each Element, and changing the ref and deref functions to simply ref and deref the owning element instead of the map itself.
Attachments
Proposed patch (11.84 KB, patch)
2012-01-05 01:49 PST, Andreas Kling
no flags
Ryosuke Niwa
Comment 1 2011-12-21 23:38:15 PST
(In reply to comment #0) > We should remove the separate reference count stored in each NamedNodeMap. An easy immediate way to do that would be by using OwnPtr instead of RefPtr to hold the map on each Element, and changing the ref and deref functions to simply ref and deref the owning element instead of the map itself. I'm not sure which ref/deref functions you're talking about. Could you elaborate a little?
Darin Adler
Comment 2 2011-12-21 23:45:33 PST
NamedNodeMap would no longer derive from RefCounted. Instead it would implement ref and deref like this: void ref() { m_element->ref(); } void deref() { m_element->deref(); } The JavaScript bindings, and any other code for that matter, can still use a RefPtr on the NamedNodeMap, but the actual reference counting is done on the element, which is fine since the lifetimes of the two objects are tied together.
Andreas Kling
Comment 3 2012-01-05 01:49:28 PST
Created attachment 121242 [details] Proposed patch
Antti Koivisto
Comment 4 2012-01-05 02:01:10 PST
Comment on attachment 121242 [details] Proposed patch r=me
Andreas Kling
Comment 5 2012-01-05 02:18:26 PST
Comment on attachment 121242 [details] Proposed patch Clearing flags on attachment: 121242 Committed r104130: <http://trac.webkit.org/changeset/104130>
Andreas Kling
Comment 6 2012-01-05 02:18:37 PST
All reviewed patches have been landed. Closing bug.
Ojan Vafai
Comment 7 2012-01-05 11:00:05 PST
Comment on attachment 121242 [details] Proposed patch In the future, when improving the size of an class, consider adding a COMPILE_ASSERT of the size so that we can keep it from regressing in the future.
Lucas Forschler
Comment 8 2019-02-06 09:02:53 PST
Mass moving XML DOM bugs to the "DOM" Component.
Note You need to log in before you can comment on or make changes to this bug.