agent/src/share/classes/sun/jvm/hotspot/debugger/linux/LinuxAddress.java

Print this page
rev 3688 : 7054512: Compress class pointers after perm gen removal
Summary: support of compress class pointers in the compilers.
Reviewed-by:

@@ -77,10 +77,15 @@
     public Address getCompOopAddressAt(long offset)
             throws UnalignedAddressException, UnmappedAddressException {
         return debugger.readCompOopAddress(addr + offset);
     }
 
+    public Address getCompKlassAddressAt(long offset)
+            throws UnalignedAddressException, UnmappedAddressException {
+        return debugger.readCompKlassAddress(addr + offset);
+    }
+
     //
     // Java-related routines
     //
 
   public boolean getJBooleanAt(long offset) throws UnalignedAddressException, UnmappedAddressException {