comparison agent/src/share/classes/sun/jvm/hotspot/debugger/remote/RemoteDebugger.java @ 642:660978a2a31a

6791178: Specialize for zero as the compressed oop vm heap base Summary: Use zero based compressed oops if java heap is below 32gb and unscaled compressed oops if java heap is below 4gb. Reviewed-by: never, twisti, jcoomes, coleenp
author kvn
date Thu, 12 Mar 2009 10:37:46 -0700
parents d1605aabd0a1
children bd02caa94611
comparison
equal deleted inserted replaced
641:6af0a709d52b 642:660978a2a31a
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; 68 public long getHeapOopSize() throws RemoteException;
70 public long getLogMinObjAlignmentInBytes() throws RemoteException; 69 public long getNarrowOopBase() throws RemoteException;
70 public int getNarrowOopShift() throws RemoteException;
71
71 public boolean areThreadsEqual(long addrOrId1, boolean isAddress1, 72 public boolean areThreadsEqual(long addrOrId1, boolean isAddress1,
72 long addrOrId2, boolean isAddress2) throws RemoteException; 73 long addrOrId2, boolean isAddress2) throws RemoteException;
73 public int getThreadHashCode(long addrOrId, boolean isAddress) throws RemoteException; 74 public int getThreadHashCode(long addrOrId, boolean isAddress) throws RemoteException;
74 public long[] getThreadIntegerRegisterSet(long addrOrId, boolean isAddress) throws RemoteException; 75 public long[] getThreadIntegerRegisterSet(long addrOrId, boolean isAddress) throws RemoteException;
75 } 76 }