You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 21, 2023. It is now read-only.
mem::size_of::<Node>() reports 120 bytes, and mem::size_of::<NodeData>() makes up 80 of those bytes. If we box most of the variants of the NodeData enum, this can shrink to 56 and 16 bytes respectively.
The text was updated successfully, but these errors were encountered:
Unfortunately in testcase from servo/html5ever#420 (comment), this only reduces the memory usage by ~450mb. Not nothing, but need to keep investigating where all the memory is going.
mem::size_of::<Node>()
reports 120 bytes, andmem::size_of::<NodeData>()
makes up 80 of those bytes. If we box most of the variants of the NodeData enum, this can shrink to 56 and 16 bytes respectively.The text was updated successfully, but these errors were encountered: