annotate agent/src/share/classes/sun/jvm/hotspot/runtime/Threads.java @ 1552:c18cbe5936b8

6941466: Oracle rebranding changes for Hotspot repositories Summary: Change all the Sun copyrights to Oracle copyright Reviewed-by: ohair
author trims
date Thu, 27 May 2010 19:08:38 -0700
parents bd02caa94611
children bf8517f4e4d0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
diff changeset
2 * Copyright (c) 2000, 2009, Oracle and/or its affiliates. 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 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
diff changeset
21 * questions.
0
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.runtime;
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 import java.util.*;
a61af66fc99e Initial load
duke
parents:
diff changeset
28 import sun.jvm.hotspot.debugger.*;
a61af66fc99e Initial load
duke
parents:
diff changeset
29 import sun.jvm.hotspot.types.*;
a61af66fc99e Initial load
duke
parents:
diff changeset
30 import sun.jvm.hotspot.runtime.solaris_sparc.SolarisSPARCJavaThreadPDAccess;
a61af66fc99e Initial load
duke
parents:
diff changeset
31 import sun.jvm.hotspot.runtime.solaris_x86.SolarisX86JavaThreadPDAccess;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 import sun.jvm.hotspot.runtime.solaris_amd64.SolarisAMD64JavaThreadPDAccess;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 import sun.jvm.hotspot.runtime.win32_amd64.Win32AMD64JavaThreadPDAccess;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 import sun.jvm.hotspot.runtime.win32_x86.Win32X86JavaThreadPDAccess;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 import sun.jvm.hotspot.runtime.win32_ia64.Win32IA64JavaThreadPDAccess;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 import sun.jvm.hotspot.runtime.linux_x86.LinuxX86JavaThreadPDAccess;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 import sun.jvm.hotspot.runtime.linux_ia64.LinuxIA64JavaThreadPDAccess;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 import sun.jvm.hotspot.runtime.linux_amd64.LinuxAMD64JavaThreadPDAccess;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 import sun.jvm.hotspot.runtime.linux_sparc.LinuxSPARCJavaThreadPDAccess;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 import sun.jvm.hotspot.utilities.*;
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 public class Threads {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 private static JavaThreadFactory threadFactory;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 private static AddressField threadListField;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 private static VirtualConstructor virtualConstructor;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 private static JavaThreadPDAccess access;
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 static {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 VM.registerVMInitializedObserver(new Observer() {
a61af66fc99e Initial load
duke
parents:
diff changeset
50 public void update(Observable o, Object data) {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 initialize(VM.getVM().getTypeDataBase());
a61af66fc99e Initial load
duke
parents:
diff changeset
52 }
a61af66fc99e Initial load
duke
parents:
diff changeset
53 });
a61af66fc99e Initial load
duke
parents:
diff changeset
54 }
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 private static synchronized void initialize(TypeDataBase db) {
a61af66fc99e Initial load
duke
parents:
diff changeset
57 Type type = db.lookupType("Threads");
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 threadListField = type.getAddressField("_thread_list");
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // Instantiate appropriate platform-specific JavaThreadFactory
a61af66fc99e Initial load
duke
parents:
diff changeset
62 String os = VM.getVM().getOS();
a61af66fc99e Initial load
duke
parents:
diff changeset
63 String cpu = VM.getVM().getCPU();
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 access = null;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // FIXME: find the platform specific PD class by reflection?
a61af66fc99e Initial load
duke
parents:
diff changeset
67 if (os.equals("solaris")) {
a61af66fc99e Initial load
duke
parents:
diff changeset
68 if (cpu.equals("sparc")) {
a61af66fc99e Initial load
duke
parents:
diff changeset
69 access = new SolarisSPARCJavaThreadPDAccess();
a61af66fc99e Initial load
duke
parents:
diff changeset
70 } else if (cpu.equals("x86")) {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 access = new SolarisX86JavaThreadPDAccess();
a61af66fc99e Initial load
duke
parents:
diff changeset
72 } else if (cpu.equals("amd64")) {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 access = new SolarisAMD64JavaThreadPDAccess();
a61af66fc99e Initial load
duke
parents:
diff changeset
74 }
a61af66fc99e Initial load
duke
parents:
diff changeset
75 } else if (os.equals("win32")) {
a61af66fc99e Initial load
duke
parents:
diff changeset
76 if (cpu.equals("x86")) {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 access = new Win32X86JavaThreadPDAccess();
a61af66fc99e Initial load
duke
parents:
diff changeset
78 } else if (cpu.equals("amd64")) {
a61af66fc99e Initial load
duke
parents:
diff changeset
79 access = new Win32AMD64JavaThreadPDAccess();
a61af66fc99e Initial load
duke
parents:
diff changeset
80 } else if (cpu.equals("ia64")) {
a61af66fc99e Initial load
duke
parents:
diff changeset
81 access = new Win32IA64JavaThreadPDAccess();
a61af66fc99e Initial load
duke
parents:
diff changeset
82 }
a61af66fc99e Initial load
duke
parents:
diff changeset
83 } else if (os.equals("linux")) {
a61af66fc99e Initial load
duke
parents:
diff changeset
84 if (cpu.equals("x86")) {
a61af66fc99e Initial load
duke
parents:
diff changeset
85 access = new LinuxX86JavaThreadPDAccess();
a61af66fc99e Initial load
duke
parents:
diff changeset
86 } else if (cpu.equals("ia64")) {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 access = new LinuxIA64JavaThreadPDAccess();
a61af66fc99e Initial load
duke
parents:
diff changeset
88 } else if (cpu.equals("amd64")) {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 access = new LinuxAMD64JavaThreadPDAccess();
a61af66fc99e Initial load
duke
parents:
diff changeset
90 } else if (cpu.equals("sparc")) {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 access = new LinuxSPARCJavaThreadPDAccess();
a61af66fc99e Initial load
duke
parents:
diff changeset
92 }
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 if (access == null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
97 throw new RuntimeException("OS/CPU combination " + os + "/" + cpu +
a61af66fc99e Initial load
duke
parents:
diff changeset
98 " not yet supported");
a61af66fc99e Initial load
duke
parents:
diff changeset
99 }
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 virtualConstructor = new VirtualConstructor(db);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // Add mappings for all known thread types
a61af66fc99e Initial load
duke
parents:
diff changeset
103 virtualConstructor.addMapping("JavaThread", JavaThread.class);
a61af66fc99e Initial load
duke
parents:
diff changeset
104 if (!VM.getVM().isCore()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
105 virtualConstructor.addMapping("CompilerThread", CompilerThread.class);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // for now, use JavaThread itself. fix it later with appropriate class if needed
a61af66fc99e Initial load
duke
parents:
diff changeset
108 virtualConstructor.addMapping("SurrogateLockerThread", JavaThread.class);
a61af66fc99e Initial load
duke
parents:
diff changeset
109 virtualConstructor.addMapping("JvmtiAgentThread", JvmtiAgentThread.class);
a61af66fc99e Initial load
duke
parents:
diff changeset
110 virtualConstructor.addMapping("LowMemoryDetectorThread", LowMemoryDetectorThread.class);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 }
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 public Threads() {
a61af66fc99e Initial load
duke
parents:
diff changeset
114 }
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 /** NOTE: this returns objects of type JavaThread, CompilerThread,
a61af66fc99e Initial load
duke
parents:
diff changeset
117 JvmtiAgentThread, and LowMemoryDetectorThread.
a61af66fc99e Initial load
duke
parents:
diff changeset
118 The latter four are subclasses of the former. Most operations
a61af66fc99e Initial load
duke
parents:
diff changeset
119 (fetching the top frame, etc.) are only allowed to be performed on
a61af66fc99e Initial load
duke
parents:
diff changeset
120 a "pure" JavaThread. For this reason, {@link
a61af66fc99e Initial load
duke
parents:
diff changeset
121 sun.jvm.hotspot.runtime.JavaThread#isJavaThread} has been
a61af66fc99e Initial load
duke
parents:
diff changeset
122 changed from the definition in the VM (which returns true for
a61af66fc99e Initial load
duke
parents:
diff changeset
123 all of these thread types) to return true for JavaThreads and
a61af66fc99e Initial load
duke
parents:
diff changeset
124 false for the three subclasses. FIXME: should reconsider the
a61af66fc99e Initial load
duke
parents:
diff changeset
125 inheritance hierarchy; see {@link
a61af66fc99e Initial load
duke
parents:
diff changeset
126 sun.jvm.hotspot.runtime.JavaThread#isJavaThread}. */
a61af66fc99e Initial load
duke
parents:
diff changeset
127 public JavaThread first() {
a61af66fc99e Initial load
duke
parents:
diff changeset
128 Address threadAddr = threadListField.getValue();
a61af66fc99e Initial load
duke
parents:
diff changeset
129 if (threadAddr == null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 return null;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 }
a61af66fc99e Initial load
duke
parents:
diff changeset
132
a61af66fc99e Initial load
duke
parents:
diff changeset
133 return createJavaThreadWrapper(threadAddr);
a61af66fc99e Initial load
duke
parents:
diff changeset
134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 /** Routine for instantiating appropriately-typed wrapper for a
a61af66fc99e Initial load
duke
parents:
diff changeset
137 JavaThread. Currently needs to be public for OopUtilities to
a61af66fc99e Initial load
duke
parents:
diff changeset
138 access it. */
a61af66fc99e Initial load
duke
parents:
diff changeset
139 public JavaThread createJavaThreadWrapper(Address threadAddr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
140 try {
a61af66fc99e Initial load
duke
parents:
diff changeset
141 JavaThread thread = (JavaThread)virtualConstructor.instantiateWrapperFor(threadAddr);
a61af66fc99e Initial load
duke
parents:
diff changeset
142 thread.setThreadPDAccess(access);
a61af66fc99e Initial load
duke
parents:
diff changeset
143 return thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 } catch (Exception e) {
a61af66fc99e Initial load
duke
parents:
diff changeset
145 throw new RuntimeException("Unable to deduce type of thread from address " + threadAddr +
a61af66fc99e Initial load
duke
parents:
diff changeset
146 " (expected type JavaThread, CompilerThread, LowMemoryDetectorThread, JvmtiAgentThread, or SurrogateLockerThread)", e);
a61af66fc99e Initial load
duke
parents:
diff changeset
147 }
a61af66fc99e Initial load
duke
parents:
diff changeset
148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 /** Memory operations */
a61af66fc99e Initial load
duke
parents:
diff changeset
151 public void oopsDo(AddressVisitor oopVisitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // FIXME: add more of VM functionality
a61af66fc99e Initial load
duke
parents:
diff changeset
153 for (JavaThread thread = first(); thread != null; thread = thread.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
154 thread.oopsDo(oopVisitor);
a61af66fc99e Initial load
duke
parents:
diff changeset
155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
156 }
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // refer to Threads::owning_thread_from_monitor_owner
a61af66fc99e Initial load
duke
parents:
diff changeset
159 public JavaThread owningThreadFromMonitor(Address o) {
a61af66fc99e Initial load
duke
parents:
diff changeset
160 if (o == null) return null;
a61af66fc99e Initial load
duke
parents:
diff changeset
161 for (JavaThread thread = first(); thread != null; thread = thread.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
162 if (o.equals(thread.threadObjectAddress())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
163 return thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
164 }
a61af66fc99e Initial load
duke
parents:
diff changeset
165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 for (JavaThread thread = first(); thread != null; thread = thread.next()) {
702
b9fba36710f2 6699669: Hotspot server leaves synchronized block with monitor in bad state
xlu
parents: 0
diff changeset
168 if (thread.isLockOwned(o))
b9fba36710f2 6699669: Hotspot server leaves synchronized block with monitor in bad state
xlu
parents: 0
diff changeset
169 return thread;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
170 }
702
b9fba36710f2 6699669: Hotspot server leaves synchronized block with monitor in bad state
xlu
parents: 0
diff changeset
171 return null;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
172 }
a61af66fc99e Initial load
duke
parents:
diff changeset
173
a61af66fc99e Initial load
duke
parents:
diff changeset
174 public JavaThread owningThreadFromMonitor(ObjectMonitor monitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 return owningThreadFromMonitor(monitor.owner());
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 // refer to Threads::get_pending_threads
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // Get list of Java threads that are waiting to enter the specified monitor.
a61af66fc99e Initial load
duke
parents:
diff changeset
180 public List getPendingThreads(ObjectMonitor monitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 List pendingThreads = new ArrayList();
a61af66fc99e Initial load
duke
parents:
diff changeset
182 for (JavaThread thread = first(); thread != null; thread = thread.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
183 if (thread.isCompilerThread()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
184 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
185 }
a61af66fc99e Initial load
duke
parents:
diff changeset
186 ObjectMonitor pending = thread.getCurrentPendingMonitor();
a61af66fc99e Initial load
duke
parents:
diff changeset
187 if (monitor.equals(pending)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
188 pendingThreads.add(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
190 }
a61af66fc99e Initial load
duke
parents:
diff changeset
191 return pendingThreads;
a61af66fc99e Initial load
duke
parents:
diff changeset
192 }
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 // Get list of Java threads that have called Object.wait on the specified monitor.
a61af66fc99e Initial load
duke
parents:
diff changeset
195 public List getWaitingThreads(ObjectMonitor monitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
196 List pendingThreads = new ArrayList();
a61af66fc99e Initial load
duke
parents:
diff changeset
197 for (JavaThread thread = first(); thread != null; thread = thread.next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
198 ObjectMonitor waiting = thread.getCurrentWaitingMonitor();
a61af66fc99e Initial load
duke
parents:
diff changeset
199 if (monitor.equals(waiting)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
200 pendingThreads.add(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
201 }
a61af66fc99e Initial load
duke
parents:
diff changeset
202 }
a61af66fc99e Initial load
duke
parents:
diff changeset
203 return pendingThreads;
a61af66fc99e Initial load
duke
parents:
diff changeset
204 }
a61af66fc99e Initial load
duke
parents:
diff changeset
205
a61af66fc99e Initial load
duke
parents:
diff changeset
206 // FIXME: add other accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
207 }