agent/src/share/classes/sun/jvm/hotspot/runtime/Frame.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff agent/src/share/classes/sun/jvm/hotspot/runtime/Frame.java

agent/src/share/classes/sun/jvm/hotspot/runtime/Frame.java

Print this page

        

*** 24,41 **** package sun.jvm.hotspot.runtime; import java.io.*; import java.util.*; ! import sun.jvm.hotspot.*; import sun.jvm.hotspot.code.*; import sun.jvm.hotspot.compiler.*; - import sun.jvm.hotspot.c1.*; import sun.jvm.hotspot.debugger.*; import sun.jvm.hotspot.interpreter.*; import sun.jvm.hotspot.oops.*; - import sun.jvm.hotspot.runtime.sparc.SPARCFrame; import sun.jvm.hotspot.types.*; import sun.jvm.hotspot.utilities.*; /** <P> A frame represents a physical stack frame (an activation). Frames can be C or Java frames, and the Java frames can be --- 24,39 ---- package sun.jvm.hotspot.runtime; import java.io.*; import java.util.*; ! import sun.jvm.hotspot.code.*; import sun.jvm.hotspot.compiler.*; import sun.jvm.hotspot.debugger.*; import sun.jvm.hotspot.interpreter.*; import sun.jvm.hotspot.oops.*; import sun.jvm.hotspot.types.*; import sun.jvm.hotspot.utilities.*; /** <P> A frame represents a physical stack frame (an activation). Frames can be C or Java frames, and the Java frames can be
*** 624,634 **** CodeBlob cb = VM.getVM().getCodeCache().findBlob(getPC()); if (Assert.ASSERTS_ENABLED) { Assert.that(cb != null, "sanity check"); } if (cb.getOopMaps() != null) { ! OopMapSet.oopsDo(this, cb, regMap, oopVisitor, VM.getVM().isDebugging()); // FIXME: add in traversal of argument oops (skipping this for // now until we have the other stuff tested) } --- 622,632 ---- CodeBlob cb = VM.getVM().getCodeCache().findBlob(getPC()); if (Assert.ASSERTS_ENABLED) { Assert.that(cb != null, "sanity check"); } if (cb.getOopMaps() != null) { ! ImmutableOopMapSet.oopsDo(this, cb, regMap, oopVisitor, VM.getVM().isDebugging()); // FIXME: add in traversal of argument oops (skipping this for // now until we have the other stuff tested) }
agent/src/share/classes/sun/jvm/hotspot/runtime/Frame.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File