<div>Hi Azeem,</div><div><br></div><div>(Sorry for the late reply. Just in case someone interested who's not familiar with Serviceability Agent...)</div><div><br></div><div>The "universe" command in CLHSDB would fit your need perfectly.</div>
<div>For example,</div><div><br></div><div>$ java -cp $JAVA_HOME/lib/sa-jdi.jar sun.jvm.hotspot.CLHSDB</div><div>hsdb> attach 1234</div><div>Attaching to process 1234, please wait...</div><div>hsdb> universe</div><div>
ParallelScavengeHeap [ PSYoungGen [ eden = [0x00000000fd560000,0x00000000fedc00a0,0x00000000ff4c0000] , from = [0x00000000ff750000,0x00000000ff9da020,0x00000000ff9e0000] , to = [0x00000000ff4c0000,0x00000000ff4c0000,0x00000000ff750000] ] PSOldGen [ [0x00000000f8000000,0x00000000f82eb078,0x00000000fa9b0000] ] PSPermGen [ [0x00000000f2e00000,0x00000000f3970798,0x00000000f42c0000] ] ]</div>
<div>hsdb> quit</div><div>$ </div><div><br></div><div>If you need to programmatically print this information, you could use sun.jvm.hotspot.gc_interface.CollectedHeap.print().</div><div>For example,</div><div><br></div>
<div>import sun.jvm.hotspot.gc_interface.*;</div><div>import sun.jvm.hotspot.runtime.*;</div><div>import sun.jvm.hotspot.tools.*;</div><div><br></div><div>public class ShowUniverse extends Tool {</div><div> public void run() {</div>
<div> CollectedHeap heap = VM.getVM().getUniverse().heap();</div><div> heap.print();</div><div> }</div><div><br></div><div> public static void main(String[] args) {</div><div> ShowUniverse tool = new ShowUniverse();</div>
<div> tool.start(args);</div><div> tool.stop();</div><div> }</div><div>}</div><div><br></div><div>And used as:</div><div><br></div><div>$ javac -classpath $JAVA_HOME/lib/sa-jdi.jar ShowUniverse.java</div>
<div>$ java -cp .:$JAVA_HOME/lib/sa-jdi.jar ShowUniverse 1234</div><div>Attaching to process ID 1234, please wait...</div><div>Debugger attached successfully.</div><div>Server compiler detected.</div><div>JVM version is 22.0-b10</div>
<div>ParallelScavengeHeap [ PSYoungGen [ eden = [0x00000000fd560000,0x00000000fedc00a0,0x00000000ff4c0000] , from = [0x00000000ff750000,0x00000000ff9da020,0x00000000ff9e0000] , to = [0x00000000ff4c0000,0x00000000ff4c0000,0x00000000ff750000] ] PSOldGen [ [0x00000000f8000000,0x00000000f82eb078,0x00000000fa9b0000] ] PSPermGen [ [0x00000000f2e00000,0x00000000f3970798,0x00000000f42c0000] ] ]</div>
<div><br></div><div>$ </div><div><br></div><div>If you need to access the individual virtual addresses programmatically, just look at the implementations of CollectedHeap.printOn(PrintStream tty) in GenCollectedHeap/ParallelScavengeHeap/G1CollectedHeap for example.</div>
<div><br></div><div>Hope that helps,</div><div>Kris</div><br><div class="gmail_quote">On Mon, Oct 1, 2012 at 9:10 PM, Azeem Jiva <span dir="ltr"><<a href="mailto:azeem.jiva@oracle.com" target="_blank">azeem.jiva@oracle.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div bgcolor="#FFFFFF" text="#000000">
Krystal,<br>
That would work as well, I just need some way of getting the data
while the JVM is running.<div><div class="h5"><br>
<br>
<div>On 09/30/2012 08:58 PM, Krystal Mok
wrote:<br>
</div>
<blockquote type="cite">Hi Azeem,
<div><br>
</div>
<div>It'd be easy to get with an SA agent instead of a JVMTI
agent. Would that do for you?</div>
<div><br>
</div>
<div>- Kris<br>
<br>
<div class="gmail_quote">On Sat, Sep 29, 2012 at 2:08 AM, Azeem
Jiva <span dir="ltr"><<a href="mailto:azeem.jiva@oracle.com" target="_blank">azeem.jiva@oracle.com</a>></span>
wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Is there a
way to get at the virtual addresses for the heap from a
JVMTI agent? The data is clearly available as
PrintGCDetails dumps the information at the end of the run.<span><font color="#888888"><br>
<br>
-- <br>
Azeem Jiva<br>
@javawithjiva<br>
<br>
</font></span></blockquote>
</div>
<br>
</div>
</blockquote>
<br>
</div></div><span class="HOEnZb"><font color="#888888"><pre cols="72">--
Azeem Jiva
@javawithjiva</pre>
</font></span></div>
</blockquote></div><br>