comparison agent/src/share/classes/sun/jvm/hotspot/debugger/remote/RemoteDebuggerServer.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
112 112
113 public long getJShortSize() throws RemoteException { 113 public long getJShortSize() throws RemoteException {
114 return debugger.getJShortSize(); 114 return debugger.getJShortSize();
115 } 115 }
116 116
117 public long getHeapBase() throws RemoteException {
118 return debugger.getHeapBase();
119 }
120
121 public long getHeapOopSize() throws RemoteException {
122 return debugger.getHeapOopSize();
123 }
124
125 public long getLogMinObjAlignmentInBytes() throws RemoteException {
126 return debugger.getLogMinObjAlignmentInBytes();
127 }
117 public boolean areThreadsEqual(long addrOrId1, boolean isAddress1, 128 public boolean areThreadsEqual(long addrOrId1, boolean isAddress1,
118 long addrOrId2, boolean isAddress2) throws RemoteException { 129 long addrOrId2, boolean isAddress2) throws RemoteException {
119 ThreadProxy t1 = getThreadProxy(addrOrId1, isAddress1); 130 ThreadProxy t1 = getThreadProxy(addrOrId1, isAddress1);
120 ThreadProxy t2 = getThreadProxy(addrOrId2, isAddress2); 131 ThreadProxy t2 = getThreadProxy(addrOrId2, isAddress2);
121 return t1.equals(t2); 132 return t1.equals(t2);