comparison agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdAddress.java @ 6848:8e47bac5643a

7054512: Compress class pointers after perm gen removal Summary: support of compress class pointers in the compilers. Reviewed-by: kvn, twisti
author roland
date Tue, 09 Oct 2012 10:11:38 +0200
parents f08d439fab8c
children 440edcf30231
comparison
equal deleted inserted replaced
6847:65d07d9ee446 6848:8e47bac5643a
77 public Address getCompOopAddressAt(long offset) 77 public Address getCompOopAddressAt(long offset)
78 throws UnalignedAddressException, UnmappedAddressException { 78 throws UnalignedAddressException, UnmappedAddressException {
79 return debugger.readCompOopAddress(addr + offset); 79 return debugger.readCompOopAddress(addr + offset);
80 } 80 }
81 81
82 public Address getCompKlassAddressAt(long offset)
83 throws UnalignedAddressException, UnmappedAddressException {
84 return debugger.readCompOopAddress(addr + offset);
85 }
86
82 // 87 //
83 // Java-related routines 88 // Java-related routines
84 // 89 //
85 90
86 public boolean getJBooleanAt(long offset) throws UnalignedAddressException, UnmappedAddressException { 91 public boolean getJBooleanAt(long offset) throws UnalignedAddressException, UnmappedAddressException {