comparison agent/src/share/classes/sun/jvm/hotspot/runtime/AddressVisitor.java @ 113:ba764ed4b6f2

6420645: Create a vm that uses compressed oops for up to 32gb heapsizes Summary: Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
author coleenp
date Sun, 13 Apr 2008 17:43:42 -0400
parents a61af66fc99e
children d1605aabd0a1
comparison
equal deleted inserted replaced
110:a49a647afe9a 113:ba764ed4b6f2
29 /** A generic interface for visiting addresses. Used by the frame/oop 29 /** A generic interface for visiting addresses. Used by the frame/oop
30 map iteration mechanisms. */ 30 map iteration mechanisms. */
31 31
32 public interface AddressVisitor { 32 public interface AddressVisitor {
33 public void visitAddress(Address addr); 33 public void visitAddress(Address addr);
34 public void visitCompOopAddress(Address addr);
34 } 35 }