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

agent/src/share/classes/sun/jvm/hotspot/runtime/sparc/SPARCFrame.java

Print this page

        

*** 22,42 **** * */ package sun.jvm.hotspot.runtime.sparc; - import java.util.*; - import sun.jvm.hotspot.asm.sparc.*; import sun.jvm.hotspot.code.*; import sun.jvm.hotspot.compiler.*; import sun.jvm.hotspot.debugger.*; import sun.jvm.hotspot.debugger.cdbg.*; import sun.jvm.hotspot.oops.*; import sun.jvm.hotspot.runtime.*; import sun.jvm.hotspot.runtime.posix.*; - import sun.jvm.hotspot.types.*; import sun.jvm.hotspot.utilities.*; /** Specialization of and implementation of abstract methods of the Frame class for the SPARC CPU. (FIXME: this is as quick a port as possible to get things running; will have to do a better job right --- 22,39 ----
*** 590,600 **** if (map.getUpdateMap()) { if (cb.callerMustGCArguments()) { map.setIncludeArgumentOops(true); } if (cb.getOopMaps() != null) { ! OopMapSet.updateRegisterMap(this, cb, map, VM.getVM().isDebugging()); } } } } --- 587,597 ---- if (map.getUpdateMap()) { if (cb.callerMustGCArguments()) { map.setIncludeArgumentOops(true); } if (cb.getOopMaps() != null) { ! ImmutableOopMapSet.updateRegisterMap(this, cb, map, VM.getVM().isDebugging()); } } } }
agent/src/share/classes/sun/jvm/hotspot/runtime/sparc/SPARCFrame.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File