Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Memory Analyzer » Is direct children object/vvariable wrong in dominator tree?
Is direct children object/vvariable wrong in dominator tree? [message #742203] Thu, 20 October 2011 09:22 Go to next message
jinjian.1@gmail.com  is currently offline jinjian.1@gmail.com Friend
Messages: 2
Registered: October 2011
Junior Member
In dominator tree, some variables showed as their ancestor's child.

I attached a screenshot, these HTTP response's header should belong to HTTPResponse which is the direct child

Re: Is direct children object/vvariable wrong in dominator tree? [message #742274 is a reply to message #742203] Thu, 20 October 2011 10:47 Go to previous messageGo to next message
Krum Tsvetkov is currently offline Krum TsvetkovFriend
Messages: 164
Registered: July 2009
Senior Member
It is fine to have these objects on the same level. In the dominator tree you will see one objet A as a child of another object B only if all paths from the GC roots to the object A go through B. The semantic is the following - if B dominates A, then removing B from the heap should mean that A is also removed.
If you have for example a char[] that is only reference by a single String, then the char[] will be a child of the String in the dominator tree.
However, if there are other Strings also pointing to the same char[], then the char[] won't be a child of any of them in the dom. tree.

Does this makes sense now?
Re: Is direct children object/vvariable wrong in dominator tree? [message #742972 is a reply to message #742274] Fri, 21 October 2011 02:22 Go to previous messageGo to next message
jinjian.1@gmail.com  is currently offline jinjian.1@gmail.com Friend
Messages: 2
Registered: October 2011
Junior Member
Yeah, Make Sense. In IBM's Heap Analyzer, it have a sign to indicate if the object has been referenced by other object when you click through the object tree. Then you can know if the object is shared by multiple reference, It is more clear about this sharing relationship. but i really like Eclipse Memory Analyzer more because it do more stuff/analysis than just show object relationship and it can run with less memory.

But Do we have a way to indicate real object relationship in Memory Analyzer directly? I tried many ways in analyzer, it seems analyzer can construct class relationship but not object.
Re: Is direct children object/vvariable wrong in dominator tree? [message #743141 is a reply to message #742972] Fri, 21 October 2011 06:55 Go to previous message
Krum Tsvetkov is currently offline Krum TsvetkovFriend
Messages: 164
Registered: July 2009
Senior Member
Yes, you can show also object references. You can do this in both directions - refs from an object (outgoing), and refs to an object (incoming).
Open the context menu on any object (or group of objects) and select the top entri - List Objetcs... -> with outgoing references.
You can do this from almost any place (i.e. Dominator tree, class histogram, etc...)
Previous Topic:SAXException when trying to run Leak Suspect report
Next Topic:null LEAKING ClassLoader
Goto Forum:
  


Current Time: Fri Apr 19 10:53:56 GMT 2024

Powered by FUDForum. Page generated in 0.01332 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top