comparison agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/WindbgDebuggerLocal.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 d6cd0d55d0b5
children e458120c6e1a
comparison
equal deleted inserted replaced
6847:65d07d9ee446 6848:8e47bac5643a
317 } 317 }
318 318
319 public WindbgAddress readCompOopAddress(long address) 319 public WindbgAddress readCompOopAddress(long address)
320 throws UnmappedAddressException, UnalignedAddressException { 320 throws UnmappedAddressException, UnalignedAddressException {
321 return (WindbgAddress) newAddress(readCompOopAddressValue(address)); 321 return (WindbgAddress) newAddress(readCompOopAddressValue(address));
322 }
323
324 public WindbgAddress readCompKlassAddress(long address)
325 throws UnmappedAddressException, UnalignedAddressException {
326 return (WindbgAddress) newAddress(readCompKlassAddressValue(address));
322 } 327 }
323 328
324 /** From the WindbgDebugger interface */ 329 /** From the WindbgDebugger interface */
325 public WindbgOopHandle readOopHandle(long address) 330 public WindbgOopHandle readOopHandle(long address)
326 throws UnmappedAddressException, UnalignedAddressException, NotInHeapException { 331 throws UnmappedAddressException, UnalignedAddressException, NotInHeapException {