agent/src/share/classes/sun/jvm/hotspot/compiler/OopMapVisitor.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Sdiff agent/src/share/classes/sun/jvm/hotspot/compiler

agent/src/share/classes/sun/jvm/hotspot/compiler/OopMapVisitor.java

Print this page




  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 package sun.jvm.hotspot.compiler;
  26 
  27 import sun.jvm.hotspot.debugger.*;
  28 
  29 /** Adaptation of the oop visitation mechanism to Java. */
  30 
  31 public interface OopMapVisitor {
  32   public void visitOopLocation(Address oopAddr);
  33   public void visitDerivedOopLocation(Address baseOopAddr, Address derivedOopAddr);
  34   public void visitValueLocation(Address valueAddr);
  35   public void visitNarrowOopLocation(Address narrowOopAddr);
  36 }


  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 package sun.jvm.hotspot.compiler;
  26 
  27 import sun.jvm.hotspot.debugger.*;
  28 
  29 /** Adaptation of the oop visitation mechanism to Java. */
  30 
  31 public interface OopMapVisitor {
  32   public void visitOopLocation(Address oopAddr);
  33   public void visitDerivedOopLocation(Address baseOopAddr, Address derivedOopAddr);

  34   public void visitNarrowOopLocation(Address narrowOopAddr);
  35 }
agent/src/share/classes/sun/jvm/hotspot/compiler/OopMapVisitor.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File