Comment #3 on issue 3949 by [email protected]: Object circular leak via some v8 internals
https://code.google.com/p/v8/issues/detail?id=3949

Leaks due to descriptor array sharing have been fixed for a fairly long time. The problem was the following: Map A with property a transitions to map B with property b. The descriptor array of A and B would be the same, so they would contain both a and b. Even though B dies, b stays alive. Now we have a special form of weakness in the descriptor array. While marking A, we only mark a. If B dies, we trim off b from the descriptor array.

So if you'd look at retaining paths, it might seem like a map is retaining an object, even though it isn't, due to weakness of part of the descriptor array.

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to