comparison agent/src/share/classes/sun/jvm/hotspot/debugger/remote/RemoteDebugger.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
63 public long getJDoubleSize() throws RemoteException; 63 public long getJDoubleSize() throws RemoteException;
64 public long getJFloatSize() throws RemoteException; 64 public long getJFloatSize() throws RemoteException;
65 public long getJIntSize() throws RemoteException; 65 public long getJIntSize() throws RemoteException;
66 public long getJLongSize() throws RemoteException; 66 public long getJLongSize() throws RemoteException;
67 public long getJShortSize() throws RemoteException; 67 public long getJShortSize() throws RemoteException;
68 public long getHeapBase() throws RemoteException;
69 public long getHeapOopSize() throws RemoteException;
70 public long getLogMinObjAlignmentInBytes() throws RemoteException;
68 public boolean areThreadsEqual(long addrOrId1, boolean isAddress1, 71 public boolean areThreadsEqual(long addrOrId1, boolean isAddress1,
69 long addrOrId2, boolean isAddress2) throws RemoteException; 72 long addrOrId2, boolean isAddress2) throws RemoteException;
70 public int getThreadHashCode(long addrOrId, boolean isAddress) throws RemoteException; 73 public int getThreadHashCode(long addrOrId, boolean isAddress) throws RemoteException;
71 public long[] getThreadIntegerRegisterSet(long addrOrId, boolean isAddress) throws RemoteException; 74 public long[] getThreadIntegerRegisterSet(long addrOrId, boolean isAddress) throws RemoteException;
72 } 75 }