<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv=Content-Type content="text/html; charset=utf-8"><meta name=Generator content="Microsoft Word 14 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:宋体;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:宋体;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:"\@宋体";
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 90.0pt 72.0pt 90.0pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]--></head><body lang=ZH-CN link=blue vlink=purple><div class=WordSection1><p class=MsoNormal><span lang=EN-US style='font-size:10.5pt;font-family:"Calibri","sans-serif";color:#1F497D'>Xu,<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US style='font-size:10.5pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p> </o:p></span></p><p class=MsoNormal><span lang=EN-US style='font-size:10.5pt;font-family:"Calibri","sans-serif";color:#1F497D'>Actually the heap dump records the address of each object(The structure of heap dump is described in share/vm/services/heapDumper.cpp and object ID of an object is its address). So you can write a program to analyze the heap dump on your own to get the heap location of each object. <o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US style='font-size:10.5pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p> </o:p></span></p><p class=MsoNormal><span lang=EN-US style='font-size:10.5pt;font-family:"Calibri","sans-serif";color:#1F497D'>As for the address information generated by +PrintGCDetails, the three addresses of a generation are low boundary address, high address and high boundary address. High address is the current end address and high boundary address is the maximum address the generation can expand to, so the “total” of a generation is high address minus low boundary address. While the three addresses of a space are bottom address, top address and end address, and the size of a space is end address minus bottom address and the used size is top address minus bottom address. If there are four addresses of a space, the third one is used by the OffsetTable which I think you can just ignore.<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US style='font-size:10.5pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p> </o:p></span></p><p class=MsoNormal><span lang=EN-US style='font-size:10.5pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p> </o:p></span></p><p class=MsoNormal><span lang=EN-US style='font-size:10.5pt;font-family:"Calibri","sans-serif";color:#1F497D'>Yunda<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US style='font-size:10.5pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p> </o:p></span></p><div style='border:none;border-left:solid blue 1.5pt;padding:0cm 0cm 0cm 4.0pt'><div><div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0cm 0cm 0cm'><p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>From:</span></b><span lang=EN-US style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'> hotspot-gc-dev-bounces@openjdk.java.net [mailto:hotspot-gc-dev-bounces@openjdk.java.net] <b>On Behalf Of </b>Lijie Xu<br><b>Sent:</b> Friday, August 23, 2013 9:46 AM<br><b>To:</b> hotspot-gc-dev@openjdk.java.net<br><b>Subject:</b> How to identify individual object's location in JVM heap space<o:p></o:p></span></p></div></div><p class=MsoNormal><span lang=EN-US><o:p> </o:p></span></p><div><p class=MsoNormal><span lang=EN-US>Hi, all. With the help of jmap or other tools, we can dump heap objects at a specific time. Then we can find out both the number and size of the individual object.<o:p></o:p></span></p><div><p class=MsoNormal><span lang=EN-US><o:p> </o:p></span></p></div><div><p class=MsoNormal><span lang=EN-US>At this point, I would like to know the heap location (Eden, S0/S1, or Old) of each object. But I cannot find any related information in the heap dump. How to identify? I really need this information in my project.<o:p></o:p></span></p></div><div><p class=MsoNormal><span lang=EN-US><o:p> </o:p></span></p></div><div><p class=MsoNormal><span lang=EN-US>I think there is a way to know the address of each object and address boundary of each space, since GC algorithms have methods to scan objects in a specific space.<o:p></o:p></span></p></div><div><p class=MsoNormal><span lang=EN-US><o:p> </o:p></span></p></div><div><p class=MsoNormal><span lang=EN-US>I also noticed that there are some <span style='color:#1F497D'>A</span> about each space. For example,<o:p></o:p></span></p></div><div><p class=MsoNormal><span lang=EN-US><o:p> </o:p></span></p></div><div><div><p class=MsoNormal><span lang=EN-US>Heap<o:p></o:p></span></p></div><div><p class=MsoNormal><span lang=EN-US> def new generation   total 153600K, used 152935K [0x14710000, 0x1edb0000, 0x1edb0000)<o:p></o:p></span></p></div><div><p class=MsoNormal><span lang=EN-US>  eden space 136576K, 100% used [0x14710000, 0x1cc70000, 0x1cc70000)<o:p></o:p></span></p></div><div><p class=MsoNormal><span lang=EN-US>  from space 17024K,  96% used [0x1dd10000, 0x1ed09f60, 0x1edb0000)<o:p></o:p></span></p></div><div><p class=MsoNormal><span lang=EN-US>  to   space 17024K,   0% used [0x1cc70000, 0x1cc70000, 0x1dd10000)<o:p></o:p></span></p></div><div><p class=MsoNormal><span lang=EN-US> tenured generation   total 341376K, used 341220K [0x1edb0000, 0x33b10000, 0x33b10000)<o:p></o:p></span></p></div><div><p class=MsoNormal><span lang=EN-US>   the space 341376K,  99% used [0x1edb0000, 0x33ae9160, 0x33ae9200, 0x33b10000)<o:p></o:p></span></p></div><div><p class=MsoNormal><span lang=EN-US> compacting perm gen  total 12288K, used 188K [0x33b10000, 0x34710000, 0x37b10000)<o:p></o:p></span></p></div><div><p class=MsoNormal><span lang=EN-US>   the space 12288K,   1% used [0x33b10000, 0x33b3f2c0, 0x33b3f400, 0x34710000)<o:p></o:p></span></p></div><div><p class=MsoNormal><span lang=EN-US>    ro space 10240K,  42% used [0x37b10000, 0x37f50348, 0x37f50400, 0x38510000)<o:p></o:p></span></p></div><div><p class=MsoNormal><span lang=EN-US>    rw space 12288K,  54% used [0x38510000, 0x38b906f0, 0x38b90800, 0x39110000)<o:p></o:p></span></p></div></div><div><p class=MsoNormal><span lang=EN-US><o:p> </o:p></span></p></div><div><p class=MsoNormal><span lang=EN-US>What's the exact meaning of these multiple address?<o:p></o:p></span></p></div></div></div></div></body></html>