annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 113
diff changeset
2 * Copyright 2002-2008 Sun Microsystems, Inc. All Rights Reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 package sun.jvm.hotspot.debugger.remote;
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 import java.rmi.*;
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 import sun.jvm.hotspot.debugger.*;
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 /** <P> This interface describes the methods which are used in a
a61af66fc99e Initial load
duke
parents:
diff changeset
32 remote debugging scenario. It is only necessary because RMI
a61af66fc99e Initial load
duke
parents:
diff changeset
33 requires that all such methods throw RemoteException, which is a
a61af66fc99e Initial load
duke
parents:
diff changeset
34 checked (i.e., not a Runtime) exception. Since we already have a
a61af66fc99e Initial load
duke
parents:
diff changeset
35 suitable runtime exception (DebuggerException) present in the
a61af66fc99e Initial load
duke
parents:
diff changeset
36 signatures for all of the debugger-related methods, we would like
a61af66fc99e Initial load
duke
parents:
diff changeset
37 to repurpose this to wrap RemoteExceptions. This is done by
a61af66fc99e Initial load
duke
parents:
diff changeset
38 wrapping the actual remote debugger object
a61af66fc99e Initial load
duke
parents:
diff changeset
39 </P>
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 <P> NOTE that this interface currently assumes that the debugger
a61af66fc99e Initial load
duke
parents:
diff changeset
42 on the remote machine has already been attached to the target
a61af66fc99e Initial load
duke
parents:
diff changeset
43 process or has opened the desired core file. This implies that the
a61af66fc99e Initial load
duke
parents:
diff changeset
44 machine hosting the user interface can not effect
a61af66fc99e Initial load
duke
parents:
diff changeset
45 attaching/detaching. Currently this restriction has been enforced
a61af66fc99e Initial load
duke
parents:
diff changeset
46 to make the user interface less confusing, but there will also be
a61af66fc99e Initial load
duke
parents:
diff changeset
47 security concerns with allowing clients to attach to arbitrary
a61af66fc99e Initial load
duke
parents:
diff changeset
48 remote processes. </P>
a61af66fc99e Initial load
duke
parents:
diff changeset
49 */
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 public interface RemoteDebugger extends Remote {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 public String getOS() throws RemoteException;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 public String getCPU() throws RemoteException;
a61af66fc99e Initial load
duke
parents:
diff changeset
54 public MachineDescription getMachineDescription() throws RemoteException;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 public long lookupInProcess(String objectName, String symbol) throws RemoteException;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 public ReadResult readBytesFromProcess(long address, long numBytes) throws RemoteException;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 public boolean hasConsole() throws RemoteException;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 public String getConsolePrompt() throws RemoteException;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 public String consoleExecuteCommand(String cmd) throws RemoteException;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 public long getJBooleanSize() throws RemoteException;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 public long getJByteSize() throws RemoteException;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 public long getJCharSize() throws RemoteException;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 public long getJDoubleSize() throws RemoteException;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 public long getJFloatSize() throws RemoteException;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 public long getJIntSize() throws RemoteException;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 public long getJLongSize() throws RemoteException;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 public long getJShortSize() throws RemoteException;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
68 public long getHeapOopSize() throws RemoteException;
642
660978a2a31a 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 196
diff changeset
69 public long getNarrowOopBase() throws RemoteException;
660978a2a31a 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 196
diff changeset
70 public int getNarrowOopShift() throws RemoteException;
660978a2a31a 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 196
diff changeset
71
0
a61af66fc99e Initial load
duke
parents:
diff changeset
72 public boolean areThreadsEqual(long addrOrId1, boolean isAddress1,
a61af66fc99e Initial load
duke
parents:
diff changeset
73 long addrOrId2, boolean isAddress2) throws RemoteException;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 public int getThreadHashCode(long addrOrId, boolean isAddress) throws RemoteException;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 public long[] getThreadIntegerRegisterSet(long addrOrId, boolean isAddress) throws RemoteException;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 }