< prev index next >

agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/HTMLGenerator.java

Print this page

        

*** 1919,1928 **** --- 1919,1933 ---- if (pc != null) { buf.append(", pc = "); buf.link(genPCHref(addressToLong(pc)), pc.toString()); } + if (!method.isStatic() && !method.isNative()) { + buf.append(", oop = "); + buf.append(vf.getLocals().oopHandleAt(0).toString()); + } + if (vf.isCompiledFrame()) { buf.append(" (Compiled"); } else if (vf.isInterpretedFrame()) { buf.append(" (Interpreted");
< prev index next >