annotate src/share/vm/services/threadService.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents c18cbe5936b8
children b1a2afa37ec4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 2003, 2010, 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: 948
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 948
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: 948
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
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_SERVICES_THREADSERVICE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_SERVICES_THREADSERVICE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "classfile/javaClasses.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "runtime/handles.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "runtime/init.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "runtime/jniHandles.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "runtime/objectMonitor.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 #include "runtime/objectMonitor.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 #include "runtime/perfData.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
35 #include "services/management.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
36 #include "services/serviceUtil.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
37
0
a61af66fc99e Initial load
duke
parents:
diff changeset
38 class OopClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 class ThreadDumpResult;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 class ThreadStackTrace;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 class ThreadSnapshot;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 class StackFrameInfo;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 class ThreadConcurrentLocks;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 class DeadlockCycle;
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // VM monitoring and management support for the thread and
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // synchronization subsystem
a61af66fc99e Initial load
duke
parents:
diff changeset
48 //
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // Thread contention monitoring is disabled by default.
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // When enabled, the VM will begin measuring the accumulated
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // elapsed time a thread blocked on synchronization.
a61af66fc99e Initial load
duke
parents:
diff changeset
52 //
a61af66fc99e Initial load
duke
parents:
diff changeset
53 class ThreadService : public AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // These counters could be moved to Threads class
a61af66fc99e Initial load
duke
parents:
diff changeset
56 static PerfCounter* _total_threads_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 static PerfVariable* _live_threads_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 static PerfVariable* _peak_threads_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 static PerfVariable* _daemon_threads_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // These 2 counters are atomically incremented once the thread is exiting.
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // They will be atomically decremented when ThreadService::remove_thread is called.
a61af66fc99e Initial load
duke
parents:
diff changeset
63 static volatile int _exiting_threads_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 static volatile int _exiting_daemon_threads_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 static bool _thread_monitoring_contention_enabled;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 static bool _thread_cpu_time_enabled;
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // Need to keep the list of thread dump result that
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // keep references to methodOop since thread dump can be
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // requested by multiple threads concurrently.
a61af66fc99e Initial load
duke
parents:
diff changeset
72 static ThreadDumpResult* _threaddump_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
75 static void init();
a61af66fc99e Initial load
duke
parents:
diff changeset
76 static void add_thread(JavaThread* thread, bool daemon);
a61af66fc99e Initial load
duke
parents:
diff changeset
77 static void remove_thread(JavaThread* thread, bool daemon);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 static void current_thread_exiting(JavaThread* jt);
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 static bool set_thread_monitoring_contention(bool flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
81 static bool is_thread_monitoring_contention() { return _thread_monitoring_contention_enabled; }
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 static bool set_thread_cpu_time_enabled(bool flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
84 static bool is_thread_cpu_time_enabled() { return _thread_cpu_time_enabled; }
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 static jlong get_total_thread_count() { return _total_threads_count->get_value(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
87 static jlong get_peak_thread_count() { return _peak_threads_count->get_value(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
88 static jlong get_live_thread_count() { return _live_threads_count->get_value() - _exiting_threads_count; }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 static jlong get_daemon_thread_count() { return _daemon_threads_count->get_value() - _exiting_daemon_threads_count; }
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 static int exiting_threads_count() { return _exiting_threads_count; }
a61af66fc99e Initial load
duke
parents:
diff changeset
92 static int exiting_daemon_threads_count() { return _exiting_daemon_threads_count; }
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // Support for thread dump
a61af66fc99e Initial load
duke
parents:
diff changeset
95 static void add_thread_dump(ThreadDumpResult* dump);
a61af66fc99e Initial load
duke
parents:
diff changeset
96 static void remove_thread_dump(ThreadDumpResult* dump);
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 static Handle get_current_contended_monitor(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // This function is called by JVM_DumpThreads.
a61af66fc99e Initial load
duke
parents:
diff changeset
101 static Handle dump_stack_traces(GrowableArray<instanceHandle>* threads,
a61af66fc99e Initial load
duke
parents:
diff changeset
102 int num_threads, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 static void reset_peak_thread_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
105 static void reset_contention_count_stat(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 static void reset_contention_time_stat(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 static DeadlockCycle* find_deadlocks_at_safepoint(bool object_monitors_only);
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // GC support
a61af66fc99e Initial load
duke
parents:
diff changeset
111 static void oops_do(OopClosure* f);
a61af66fc99e Initial load
duke
parents:
diff changeset
112 };
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // Per-thread Statistics for synchronization
a61af66fc99e Initial load
duke
parents:
diff changeset
115 class ThreadStatistics : public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
116 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // The following contention statistics are only updated by
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // the thread owning these statistics when contention occurs.
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 jlong _contended_enter_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
121 elapsedTimer _contended_enter_timer;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 jlong _monitor_wait_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
123 elapsedTimer _monitor_wait_timer;
a61af66fc99e Initial load
duke
parents:
diff changeset
124 jlong _sleep_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 elapsedTimer _sleep_timer;
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // These two reset flags are set to true when another thread
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // requests to reset the statistics. The actual statistics
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // are reset when the thread contention occurs and attempts
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // to update the statistics.
a61af66fc99e Initial load
duke
parents:
diff changeset
132 bool _count_pending_reset;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 bool _timer_pending_reset;
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // Keep accurate times for potentially recursive class operations
875
6a93908f268f 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 470
diff changeset
136 int _perf_recursion_counts[6];
6a93908f268f 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 470
diff changeset
137 elapsedTimer _perf_timers[6];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // utility functions
a61af66fc99e Initial load
duke
parents:
diff changeset
140 void check_and_reset_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
141 if (!_count_pending_reset) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
142 _contended_enter_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
143 _monitor_wait_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 _sleep_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
145 _count_pending_reset = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
147 void check_and_reset_timer() {
a61af66fc99e Initial load
duke
parents:
diff changeset
148 if (!_timer_pending_reset) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
149 _contended_enter_timer.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
150 _monitor_wait_timer.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
151 _sleep_timer.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
152 _timer_pending_reset = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
153 }
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
156 ThreadStatistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 jlong contended_enter_count() { return (_count_pending_reset ? 0 : _contended_enter_count); }
a61af66fc99e Initial load
duke
parents:
diff changeset
159 jlong contended_enter_ticks() { return (_timer_pending_reset ? 0 : _contended_enter_timer.active_ticks()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
160 jlong monitor_wait_count() { return (_count_pending_reset ? 0 : _monitor_wait_count); }
a61af66fc99e Initial load
duke
parents:
diff changeset
161 jlong monitor_wait_ticks() { return (_timer_pending_reset ? 0 : _monitor_wait_timer.active_ticks()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
162 jlong sleep_count() { return (_count_pending_reset ? 0 : _sleep_count); }
a61af66fc99e Initial load
duke
parents:
diff changeset
163 jlong sleep_ticks() { return (_timer_pending_reset ? 0 : _sleep_timer.active_ticks()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 void monitor_wait() { check_and_reset_count(); _monitor_wait_count++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
166 void monitor_wait_begin() { check_and_reset_timer(); _monitor_wait_timer.start(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
167 void monitor_wait_end() { _monitor_wait_timer.stop(); check_and_reset_timer(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 void thread_sleep() { check_and_reset_count(); _sleep_count++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
170 void thread_sleep_begin() { check_and_reset_timer(); _sleep_timer.start(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
171 void thread_sleep_end() { _sleep_timer.stop(); check_and_reset_timer(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 void contended_enter() { check_and_reset_count(); _contended_enter_count++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
174 void contended_enter_begin() { check_and_reset_timer(); _contended_enter_timer.start(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
175 void contended_enter_end() { _contended_enter_timer.stop(); check_and_reset_timer(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
176
a61af66fc99e Initial load
duke
parents:
diff changeset
177 void reset_count_stat() { _count_pending_reset = true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
178 void reset_time_stat() { _timer_pending_reset = true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
179
875
6a93908f268f 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 470
diff changeset
180 int* perf_recursion_counts_addr() { return _perf_recursion_counts; }
6a93908f268f 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 470
diff changeset
181 elapsedTimer* perf_timers_addr() { return _perf_timers; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
182 };
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // Thread snapshot to represent the thread state and statistics
a61af66fc99e Initial load
duke
parents:
diff changeset
185 class ThreadSnapshot : public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
187 JavaThread* _thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
188 oop _threadObj;
a61af66fc99e Initial load
duke
parents:
diff changeset
189 java_lang_Thread::ThreadStatus _thread_status;
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191 bool _is_ext_suspended;
a61af66fc99e Initial load
duke
parents:
diff changeset
192 bool _is_in_native;
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 jlong _contended_enter_ticks;
a61af66fc99e Initial load
duke
parents:
diff changeset
195 jlong _contended_enter_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
196 jlong _monitor_wait_ticks;
a61af66fc99e Initial load
duke
parents:
diff changeset
197 jlong _monitor_wait_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
198 jlong _sleep_ticks;
a61af66fc99e Initial load
duke
parents:
diff changeset
199 jlong _sleep_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
200 oop _blocker_object;
a61af66fc99e Initial load
duke
parents:
diff changeset
201 oop _blocker_object_owner;
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 ThreadStackTrace* _stack_trace;
a61af66fc99e Initial load
duke
parents:
diff changeset
204 ThreadConcurrentLocks* _concurrent_locks;
a61af66fc99e Initial load
duke
parents:
diff changeset
205 ThreadSnapshot* _next;
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
208 // Dummy snapshot
a61af66fc99e Initial load
duke
parents:
diff changeset
209 ThreadSnapshot() : _thread(NULL), _threadObj(NULL), _stack_trace(NULL), _concurrent_locks(NULL), _next(NULL),
a61af66fc99e Initial load
duke
parents:
diff changeset
210 _blocker_object(NULL), _blocker_object_owner(NULL) {};
a61af66fc99e Initial load
duke
parents:
diff changeset
211 ThreadSnapshot(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
212 ~ThreadSnapshot();
a61af66fc99e Initial load
duke
parents:
diff changeset
213
a61af66fc99e Initial load
duke
parents:
diff changeset
214 java_lang_Thread::ThreadStatus thread_status() { return _thread_status; }
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 oop threadObj() const { return _threadObj; }
a61af66fc99e Initial load
duke
parents:
diff changeset
217
a61af66fc99e Initial load
duke
parents:
diff changeset
218 void set_next(ThreadSnapshot* n) { _next = n; }
a61af66fc99e Initial load
duke
parents:
diff changeset
219
a61af66fc99e Initial load
duke
parents:
diff changeset
220 bool is_ext_suspended() { return _is_ext_suspended; }
a61af66fc99e Initial load
duke
parents:
diff changeset
221 bool is_in_native() { return _is_in_native; }
a61af66fc99e Initial load
duke
parents:
diff changeset
222
a61af66fc99e Initial load
duke
parents:
diff changeset
223 jlong contended_enter_count() { return _contended_enter_count; }
a61af66fc99e Initial load
duke
parents:
diff changeset
224 jlong contended_enter_ticks() { return _contended_enter_ticks; }
a61af66fc99e Initial load
duke
parents:
diff changeset
225 jlong monitor_wait_count() { return _monitor_wait_count; }
a61af66fc99e Initial load
duke
parents:
diff changeset
226 jlong monitor_wait_ticks() { return _monitor_wait_ticks; }
a61af66fc99e Initial load
duke
parents:
diff changeset
227 jlong sleep_count() { return _sleep_count; }
a61af66fc99e Initial load
duke
parents:
diff changeset
228 jlong sleep_ticks() { return _sleep_ticks; }
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231 oop blocker_object() { return _blocker_object; }
a61af66fc99e Initial load
duke
parents:
diff changeset
232 oop blocker_object_owner() { return _blocker_object_owner; }
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234 ThreadSnapshot* next() const { return _next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
235 ThreadStackTrace* get_stack_trace() { return _stack_trace; }
a61af66fc99e Initial load
duke
parents:
diff changeset
236 ThreadConcurrentLocks* get_concurrent_locks() { return _concurrent_locks; }
a61af66fc99e Initial load
duke
parents:
diff changeset
237
a61af66fc99e Initial load
duke
parents:
diff changeset
238 void dump_stack_at_safepoint(int max_depth, bool with_locked_monitors);
a61af66fc99e Initial load
duke
parents:
diff changeset
239 void set_concurrent_locks(ThreadConcurrentLocks* l) { _concurrent_locks = l; }
a61af66fc99e Initial load
duke
parents:
diff changeset
240 void oops_do(OopClosure* f);
a61af66fc99e Initial load
duke
parents:
diff changeset
241 };
a61af66fc99e Initial load
duke
parents:
diff changeset
242
a61af66fc99e Initial load
duke
parents:
diff changeset
243 class ThreadStackTrace : public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
244 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
245 JavaThread* _thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
246 int _depth; // number of stack frames added
a61af66fc99e Initial load
duke
parents:
diff changeset
247 bool _with_locked_monitors;
a61af66fc99e Initial load
duke
parents:
diff changeset
248 GrowableArray<StackFrameInfo*>* _frames;
a61af66fc99e Initial load
duke
parents:
diff changeset
249 GrowableArray<oop>* _jni_locked_monitors;
a61af66fc99e Initial load
duke
parents:
diff changeset
250
a61af66fc99e Initial load
duke
parents:
diff changeset
251 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
252
a61af66fc99e Initial load
duke
parents:
diff changeset
253 ThreadStackTrace(JavaThread* thread, bool with_locked_monitors);
a61af66fc99e Initial load
duke
parents:
diff changeset
254 ~ThreadStackTrace();
a61af66fc99e Initial load
duke
parents:
diff changeset
255
396
4d05b7cb7842 6306922: Dump dump created by +HeapDumpOnOutOfMemoryError should include stack traces for stack roots
mchung
parents: 0
diff changeset
256 JavaThread* thread() { return _thread; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
257 StackFrameInfo* stack_frame_at(int i) { return _frames->at(i); }
a61af66fc99e Initial load
duke
parents:
diff changeset
258 int get_stack_depth() { return _depth; }
a61af66fc99e Initial load
duke
parents:
diff changeset
259
a61af66fc99e Initial load
duke
parents:
diff changeset
260 void add_stack_frame(javaVFrame* jvf);
a61af66fc99e Initial load
duke
parents:
diff changeset
261 void dump_stack_at_safepoint(int max_depth);
a61af66fc99e Initial load
duke
parents:
diff changeset
262 Handle allocate_fill_stack_trace_element_array(TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
263 void oops_do(OopClosure* f);
a61af66fc99e Initial load
duke
parents:
diff changeset
264 GrowableArray<oop>* jni_locked_monitors() { return _jni_locked_monitors; }
a61af66fc99e Initial load
duke
parents:
diff changeset
265 int num_jni_locked_monitors() { return (_jni_locked_monitors != NULL ? _jni_locked_monitors->length() : 0); }
a61af66fc99e Initial load
duke
parents:
diff changeset
266
a61af66fc99e Initial load
duke
parents:
diff changeset
267 bool is_owned_monitor_on_stack(oop object);
a61af66fc99e Initial load
duke
parents:
diff changeset
268 void add_jni_locked_monitor(oop object) { _jni_locked_monitors->append(object); }
a61af66fc99e Initial load
duke
parents:
diff changeset
269 };
a61af66fc99e Initial load
duke
parents:
diff changeset
270
a61af66fc99e Initial load
duke
parents:
diff changeset
271 // StackFrameInfo for keeping methodOop and bci during
a61af66fc99e Initial load
duke
parents:
diff changeset
272 // stack walking for later construction of StackTraceElement[]
a61af66fc99e Initial load
duke
parents:
diff changeset
273 // Java instances
a61af66fc99e Initial load
duke
parents:
diff changeset
274 class StackFrameInfo : public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
275 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
276 methodOop _method;
a61af66fc99e Initial load
duke
parents:
diff changeset
277 int _bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
278 GrowableArray<oop>* _locked_monitors; // list of object monitors locked by this frame
a61af66fc99e Initial load
duke
parents:
diff changeset
279
a61af66fc99e Initial load
duke
parents:
diff changeset
280 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
281
a61af66fc99e Initial load
duke
parents:
diff changeset
282 StackFrameInfo(javaVFrame* jvf, bool with_locked_monitors);
a61af66fc99e Initial load
duke
parents:
diff changeset
283 ~StackFrameInfo() {
a61af66fc99e Initial load
duke
parents:
diff changeset
284 if (_locked_monitors != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
285 delete _locked_monitors;
a61af66fc99e Initial load
duke
parents:
diff changeset
286 }
a61af66fc99e Initial load
duke
parents:
diff changeset
287 };
a61af66fc99e Initial load
duke
parents:
diff changeset
288 methodOop method() const { return _method; }
a61af66fc99e Initial load
duke
parents:
diff changeset
289 int bci() const { return _bci; }
a61af66fc99e Initial load
duke
parents:
diff changeset
290 void oops_do(OopClosure* f);
a61af66fc99e Initial load
duke
parents:
diff changeset
291
a61af66fc99e Initial load
duke
parents:
diff changeset
292 int num_locked_monitors() { return (_locked_monitors != NULL ? _locked_monitors->length() : 0); }
a61af66fc99e Initial load
duke
parents:
diff changeset
293 GrowableArray<oop>* locked_monitors() { return _locked_monitors; }
a61af66fc99e Initial load
duke
parents:
diff changeset
294
a61af66fc99e Initial load
duke
parents:
diff changeset
295 void print_on(outputStream* st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
296 };
a61af66fc99e Initial load
duke
parents:
diff changeset
297
a61af66fc99e Initial load
duke
parents:
diff changeset
298 class ThreadConcurrentLocks : public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
299 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
300 GrowableArray<instanceOop>* _owned_locks;
a61af66fc99e Initial load
duke
parents:
diff changeset
301 ThreadConcurrentLocks* _next;
a61af66fc99e Initial load
duke
parents:
diff changeset
302 JavaThread* _thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
303 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
304 ThreadConcurrentLocks(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
305 ~ThreadConcurrentLocks();
a61af66fc99e Initial load
duke
parents:
diff changeset
306
a61af66fc99e Initial load
duke
parents:
diff changeset
307 void add_lock(instanceOop o);
a61af66fc99e Initial load
duke
parents:
diff changeset
308 void set_next(ThreadConcurrentLocks* n) { _next = n; }
a61af66fc99e Initial load
duke
parents:
diff changeset
309 ThreadConcurrentLocks* next() { return _next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
310 JavaThread* java_thread() { return _thread; }
a61af66fc99e Initial load
duke
parents:
diff changeset
311 GrowableArray<instanceOop>* owned_locks() { return _owned_locks; }
a61af66fc99e Initial load
duke
parents:
diff changeset
312 void oops_do(OopClosure* f);
a61af66fc99e Initial load
duke
parents:
diff changeset
313 };
a61af66fc99e Initial load
duke
parents:
diff changeset
314
a61af66fc99e Initial load
duke
parents:
diff changeset
315 class ConcurrentLocksDump : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
316 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
317 ThreadConcurrentLocks* _map;
a61af66fc99e Initial load
duke
parents:
diff changeset
318 ThreadConcurrentLocks* _last; // Last ThreadConcurrentLocks in the map
a61af66fc99e Initial load
duke
parents:
diff changeset
319 bool _retain_map_on_free;
a61af66fc99e Initial load
duke
parents:
diff changeset
320
a61af66fc99e Initial load
duke
parents:
diff changeset
321 void build_map(GrowableArray<oop>* aos_objects);
a61af66fc99e Initial load
duke
parents:
diff changeset
322 void add_lock(JavaThread* thread, instanceOop o);
a61af66fc99e Initial load
duke
parents:
diff changeset
323
a61af66fc99e Initial load
duke
parents:
diff changeset
324 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
325 ConcurrentLocksDump(bool retain_map_on_free) : _map(NULL), _last(NULL), _retain_map_on_free(retain_map_on_free) {};
a61af66fc99e Initial load
duke
parents:
diff changeset
326 ConcurrentLocksDump() : _map(NULL), _last(NULL), _retain_map_on_free(false) {};
a61af66fc99e Initial load
duke
parents:
diff changeset
327 ~ConcurrentLocksDump();
a61af66fc99e Initial load
duke
parents:
diff changeset
328
a61af66fc99e Initial load
duke
parents:
diff changeset
329 void dump_at_safepoint();
a61af66fc99e Initial load
duke
parents:
diff changeset
330 ThreadConcurrentLocks* thread_concurrent_locks(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
331 void print_locks_on(JavaThread* t, outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
332 };
a61af66fc99e Initial load
duke
parents:
diff changeset
333
a61af66fc99e Initial load
duke
parents:
diff changeset
334 class ThreadDumpResult : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
335 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
336 int _num_threads;
a61af66fc99e Initial load
duke
parents:
diff changeset
337 int _num_snapshots;
a61af66fc99e Initial load
duke
parents:
diff changeset
338 ThreadSnapshot* _snapshots;
a61af66fc99e Initial load
duke
parents:
diff changeset
339 ThreadSnapshot* _last;
a61af66fc99e Initial load
duke
parents:
diff changeset
340 ThreadDumpResult* _next;
a61af66fc99e Initial load
duke
parents:
diff changeset
341 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
342 ThreadDumpResult();
a61af66fc99e Initial load
duke
parents:
diff changeset
343 ThreadDumpResult(int num_threads);
a61af66fc99e Initial load
duke
parents:
diff changeset
344 ~ThreadDumpResult();
a61af66fc99e Initial load
duke
parents:
diff changeset
345
a61af66fc99e Initial load
duke
parents:
diff changeset
346 void add_thread_snapshot(ThreadSnapshot* ts);
a61af66fc99e Initial load
duke
parents:
diff changeset
347 void set_next(ThreadDumpResult* next) { _next = next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
348 ThreadDumpResult* next() { return _next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
349 int num_threads() { return _num_threads; }
a61af66fc99e Initial load
duke
parents:
diff changeset
350 int num_snapshots() { return _num_snapshots; }
a61af66fc99e Initial load
duke
parents:
diff changeset
351 ThreadSnapshot* snapshots() { return _snapshots; }
a61af66fc99e Initial load
duke
parents:
diff changeset
352 void oops_do(OopClosure* f);
a61af66fc99e Initial load
duke
parents:
diff changeset
353 };
a61af66fc99e Initial load
duke
parents:
diff changeset
354
a61af66fc99e Initial load
duke
parents:
diff changeset
355 class DeadlockCycle : public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
356 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
357 bool _is_deadlock;
a61af66fc99e Initial load
duke
parents:
diff changeset
358 GrowableArray<JavaThread*>* _threads;
a61af66fc99e Initial load
duke
parents:
diff changeset
359 DeadlockCycle* _next;
a61af66fc99e Initial load
duke
parents:
diff changeset
360 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
361 DeadlockCycle();
a61af66fc99e Initial load
duke
parents:
diff changeset
362 ~DeadlockCycle();
a61af66fc99e Initial load
duke
parents:
diff changeset
363
a61af66fc99e Initial load
duke
parents:
diff changeset
364 DeadlockCycle* next() { return _next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
365 void set_next(DeadlockCycle* d) { _next = d; }
a61af66fc99e Initial load
duke
parents:
diff changeset
366 void add_thread(JavaThread* t) { _threads->append(t); }
a61af66fc99e Initial load
duke
parents:
diff changeset
367 void reset() { _is_deadlock = false; _threads->clear(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
368 void set_deadlock(bool value) { _is_deadlock = value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
369 bool is_deadlock() { return _is_deadlock; }
a61af66fc99e Initial load
duke
parents:
diff changeset
370 int num_threads() { return _threads->length(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
371 GrowableArray<JavaThread*>* threads() { return _threads; }
a61af66fc99e Initial load
duke
parents:
diff changeset
372 void print_on(outputStream* st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
373 };
a61af66fc99e Initial load
duke
parents:
diff changeset
374
a61af66fc99e Initial load
duke
parents:
diff changeset
375 // Utility class to get list of java threads.
a61af66fc99e Initial load
duke
parents:
diff changeset
376 class ThreadsListEnumerator : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
377 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
378 GrowableArray<instanceHandle>* _threads_array;
a61af66fc99e Initial load
duke
parents:
diff changeset
379 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
380 ThreadsListEnumerator(Thread* cur_thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
381 bool include_jvmti_agent_threads = false,
a61af66fc99e Initial load
duke
parents:
diff changeset
382 bool include_jni_attaching_threads = true);
a61af66fc99e Initial load
duke
parents:
diff changeset
383 int num_threads() { return _threads_array->length(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
384 instanceHandle get_threadObj(int index) { return _threads_array->at(index); }
a61af66fc99e Initial load
duke
parents:
diff changeset
385 };
a61af66fc99e Initial load
duke
parents:
diff changeset
386
a61af66fc99e Initial load
duke
parents:
diff changeset
387
a61af66fc99e Initial load
duke
parents:
diff changeset
388 // abstract utility class to set new thread states, and restore previous after the block exits
a61af66fc99e Initial load
duke
parents:
diff changeset
389 class JavaThreadStatusChanger : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
390 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
391 java_lang_Thread::ThreadStatus _old_state;
a61af66fc99e Initial load
duke
parents:
diff changeset
392 JavaThread* _java_thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
393 bool _is_alive;
a61af66fc99e Initial load
duke
parents:
diff changeset
394
a61af66fc99e Initial load
duke
parents:
diff changeset
395 void save_old_state(JavaThread* java_thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
396 _java_thread = java_thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
397 _is_alive = is_alive(java_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
398 if (is_alive()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
399 _old_state = java_lang_Thread::get_thread_status(_java_thread->threadObj());
a61af66fc99e Initial load
duke
parents:
diff changeset
400 }
a61af66fc99e Initial load
duke
parents:
diff changeset
401 }
a61af66fc99e Initial load
duke
parents:
diff changeset
402
a61af66fc99e Initial load
duke
parents:
diff changeset
403 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
404 static void set_thread_status(JavaThread* java_thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
405 java_lang_Thread::ThreadStatus state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
406 java_lang_Thread::set_thread_status(java_thread->threadObj(), state);
a61af66fc99e Initial load
duke
parents:
diff changeset
407 }
a61af66fc99e Initial load
duke
parents:
diff changeset
408
a61af66fc99e Initial load
duke
parents:
diff changeset
409 void set_thread_status(java_lang_Thread::ThreadStatus state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
410 if (is_alive()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
411 set_thread_status(_java_thread, state);
a61af66fc99e Initial load
duke
parents:
diff changeset
412 }
a61af66fc99e Initial load
duke
parents:
diff changeset
413 }
a61af66fc99e Initial load
duke
parents:
diff changeset
414
a61af66fc99e Initial load
duke
parents:
diff changeset
415 JavaThreadStatusChanger(JavaThread* java_thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
416 java_lang_Thread::ThreadStatus state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
417 save_old_state(java_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
418 set_thread_status(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
419 }
a61af66fc99e Initial load
duke
parents:
diff changeset
420
a61af66fc99e Initial load
duke
parents:
diff changeset
421 JavaThreadStatusChanger(JavaThread* java_thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
422 save_old_state(java_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
423 }
a61af66fc99e Initial load
duke
parents:
diff changeset
424
a61af66fc99e Initial load
duke
parents:
diff changeset
425 ~JavaThreadStatusChanger() {
a61af66fc99e Initial load
duke
parents:
diff changeset
426 set_thread_status(_old_state);
a61af66fc99e Initial load
duke
parents:
diff changeset
427 }
a61af66fc99e Initial load
duke
parents:
diff changeset
428
a61af66fc99e Initial load
duke
parents:
diff changeset
429 static bool is_alive(JavaThread* java_thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
430 return java_thread != NULL && java_thread->threadObj() != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
431 }
a61af66fc99e Initial load
duke
parents:
diff changeset
432
a61af66fc99e Initial load
duke
parents:
diff changeset
433 bool is_alive() {
a61af66fc99e Initial load
duke
parents:
diff changeset
434 return _is_alive;
a61af66fc99e Initial load
duke
parents:
diff changeset
435 }
a61af66fc99e Initial load
duke
parents:
diff changeset
436 };
a61af66fc99e Initial load
duke
parents:
diff changeset
437
a61af66fc99e Initial load
duke
parents:
diff changeset
438 // Change status to waiting on an object (timed or indefinite)
a61af66fc99e Initial load
duke
parents:
diff changeset
439 class JavaThreadInObjectWaitState : public JavaThreadStatusChanger {
a61af66fc99e Initial load
duke
parents:
diff changeset
440 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
441 ThreadStatistics* _stat;
a61af66fc99e Initial load
duke
parents:
diff changeset
442 bool _active;
a61af66fc99e Initial load
duke
parents:
diff changeset
443
a61af66fc99e Initial load
duke
parents:
diff changeset
444 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
445 JavaThreadInObjectWaitState(JavaThread *java_thread, bool timed) :
a61af66fc99e Initial load
duke
parents:
diff changeset
446 JavaThreadStatusChanger(java_thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
447 timed ? java_lang_Thread::IN_OBJECT_WAIT_TIMED : java_lang_Thread::IN_OBJECT_WAIT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
448 if (is_alive()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
449 _stat = java_thread->get_thread_stat();
a61af66fc99e Initial load
duke
parents:
diff changeset
450 _active = ThreadService::is_thread_monitoring_contention();
a61af66fc99e Initial load
duke
parents:
diff changeset
451 _stat->monitor_wait();
a61af66fc99e Initial load
duke
parents:
diff changeset
452 if (_active) {
a61af66fc99e Initial load
duke
parents:
diff changeset
453 _stat->monitor_wait_begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
454 }
a61af66fc99e Initial load
duke
parents:
diff changeset
455 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
456 _active = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
457 }
a61af66fc99e Initial load
duke
parents:
diff changeset
458 }
a61af66fc99e Initial load
duke
parents:
diff changeset
459
a61af66fc99e Initial load
duke
parents:
diff changeset
460 ~JavaThreadInObjectWaitState() {
a61af66fc99e Initial load
duke
parents:
diff changeset
461 if (_active) {
a61af66fc99e Initial load
duke
parents:
diff changeset
462 _stat->monitor_wait_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
463 }
a61af66fc99e Initial load
duke
parents:
diff changeset
464 }
a61af66fc99e Initial load
duke
parents:
diff changeset
465 };
a61af66fc99e Initial load
duke
parents:
diff changeset
466
a61af66fc99e Initial load
duke
parents:
diff changeset
467 // Change status to parked (timed or indefinite)
a61af66fc99e Initial load
duke
parents:
diff changeset
468 class JavaThreadParkedState : public JavaThreadStatusChanger {
a61af66fc99e Initial load
duke
parents:
diff changeset
469 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
470 ThreadStatistics* _stat;
a61af66fc99e Initial load
duke
parents:
diff changeset
471 bool _active;
a61af66fc99e Initial load
duke
parents:
diff changeset
472
a61af66fc99e Initial load
duke
parents:
diff changeset
473 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
474 JavaThreadParkedState(JavaThread *java_thread, bool timed) :
a61af66fc99e Initial load
duke
parents:
diff changeset
475 JavaThreadStatusChanger(java_thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
476 timed ? java_lang_Thread::PARKED_TIMED : java_lang_Thread::PARKED) {
a61af66fc99e Initial load
duke
parents:
diff changeset
477 if (is_alive()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
478 _stat = java_thread->get_thread_stat();
a61af66fc99e Initial load
duke
parents:
diff changeset
479 _active = ThreadService::is_thread_monitoring_contention();
a61af66fc99e Initial load
duke
parents:
diff changeset
480 _stat->monitor_wait();
a61af66fc99e Initial load
duke
parents:
diff changeset
481 if (_active) {
a61af66fc99e Initial load
duke
parents:
diff changeset
482 _stat->monitor_wait_begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
483 }
a61af66fc99e Initial load
duke
parents:
diff changeset
484 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
485 _active = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
486 }
a61af66fc99e Initial load
duke
parents:
diff changeset
487 }
a61af66fc99e Initial load
duke
parents:
diff changeset
488
a61af66fc99e Initial load
duke
parents:
diff changeset
489 ~JavaThreadParkedState() {
a61af66fc99e Initial load
duke
parents:
diff changeset
490 if (_active) {
a61af66fc99e Initial load
duke
parents:
diff changeset
491 _stat->monitor_wait_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
492 }
a61af66fc99e Initial load
duke
parents:
diff changeset
493 }
a61af66fc99e Initial load
duke
parents:
diff changeset
494 };
a61af66fc99e Initial load
duke
parents:
diff changeset
495
a61af66fc99e Initial load
duke
parents:
diff changeset
496 // Change status to blocked on (re-)entering a synchronization block
a61af66fc99e Initial load
duke
parents:
diff changeset
497 class JavaThreadBlockedOnMonitorEnterState : public JavaThreadStatusChanger {
a61af66fc99e Initial load
duke
parents:
diff changeset
498 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
499 ThreadStatistics* _stat;
a61af66fc99e Initial load
duke
parents:
diff changeset
500 bool _active;
a61af66fc99e Initial load
duke
parents:
diff changeset
501
a61af66fc99e Initial load
duke
parents:
diff changeset
502 static bool contended_enter_begin(JavaThread *java_thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
503 set_thread_status(java_thread, java_lang_Thread::BLOCKED_ON_MONITOR_ENTER);
a61af66fc99e Initial load
duke
parents:
diff changeset
504 ThreadStatistics* stat = java_thread->get_thread_stat();
a61af66fc99e Initial load
duke
parents:
diff changeset
505 stat->contended_enter();
a61af66fc99e Initial load
duke
parents:
diff changeset
506 bool active = ThreadService::is_thread_monitoring_contention();
a61af66fc99e Initial load
duke
parents:
diff changeset
507 if (active) {
a61af66fc99e Initial load
duke
parents:
diff changeset
508 stat->contended_enter_begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
509 }
a61af66fc99e Initial load
duke
parents:
diff changeset
510 return active;
a61af66fc99e Initial load
duke
parents:
diff changeset
511 }
a61af66fc99e Initial load
duke
parents:
diff changeset
512
a61af66fc99e Initial load
duke
parents:
diff changeset
513 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
514 // java_thread is waiting thread being blocked on monitor reenter.
a61af66fc99e Initial load
duke
parents:
diff changeset
515 // Current thread is the notifying thread which holds the monitor.
a61af66fc99e Initial load
duke
parents:
diff changeset
516 static bool wait_reenter_begin(JavaThread *java_thread, ObjectMonitor *obj_m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
517 assert((java_thread != NULL), "Java thread should not be null here");
a61af66fc99e Initial load
duke
parents:
diff changeset
518 bool active = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
519 if (is_alive(java_thread) && ServiceUtil::visible_oop((oop)obj_m->object())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
520 active = contended_enter_begin(java_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
521 }
a61af66fc99e Initial load
duke
parents:
diff changeset
522 return active;
a61af66fc99e Initial load
duke
parents:
diff changeset
523 }
a61af66fc99e Initial load
duke
parents:
diff changeset
524
a61af66fc99e Initial load
duke
parents:
diff changeset
525 static void wait_reenter_end(JavaThread *java_thread, bool active) {
a61af66fc99e Initial load
duke
parents:
diff changeset
526 if (active) {
a61af66fc99e Initial load
duke
parents:
diff changeset
527 java_thread->get_thread_stat()->contended_enter_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
528 }
a61af66fc99e Initial load
duke
parents:
diff changeset
529 set_thread_status(java_thread, java_lang_Thread::RUNNABLE);
a61af66fc99e Initial load
duke
parents:
diff changeset
530 }
a61af66fc99e Initial load
duke
parents:
diff changeset
531
a61af66fc99e Initial load
duke
parents:
diff changeset
532 JavaThreadBlockedOnMonitorEnterState(JavaThread *java_thread, ObjectMonitor *obj_m) :
a61af66fc99e Initial load
duke
parents:
diff changeset
533 JavaThreadStatusChanger(java_thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
534 assert((java_thread != NULL), "Java thread should not be null here");
a61af66fc99e Initial load
duke
parents:
diff changeset
535 // Change thread status and collect contended enter stats for monitor contended
a61af66fc99e Initial load
duke
parents:
diff changeset
536 // enter done for external java world objects and it is contended. All other cases
a61af66fc99e Initial load
duke
parents:
diff changeset
537 // like for vm internal objects and for external objects which are not contended
a61af66fc99e Initial load
duke
parents:
diff changeset
538 // thread status is not changed and contended enter stat is not collected.
a61af66fc99e Initial load
duke
parents:
diff changeset
539 _active = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
540 if (is_alive() && ServiceUtil::visible_oop((oop)obj_m->object()) && obj_m->contentions() > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
541 _stat = java_thread->get_thread_stat();
a61af66fc99e Initial load
duke
parents:
diff changeset
542 _active = contended_enter_begin(java_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
543 }
a61af66fc99e Initial load
duke
parents:
diff changeset
544 }
a61af66fc99e Initial load
duke
parents:
diff changeset
545
a61af66fc99e Initial load
duke
parents:
diff changeset
546 ~JavaThreadBlockedOnMonitorEnterState() {
a61af66fc99e Initial load
duke
parents:
diff changeset
547 if (_active) {
a61af66fc99e Initial load
duke
parents:
diff changeset
548 _stat->contended_enter_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
549 }
a61af66fc99e Initial load
duke
parents:
diff changeset
550 }
a61af66fc99e Initial load
duke
parents:
diff changeset
551 };
a61af66fc99e Initial load
duke
parents:
diff changeset
552
a61af66fc99e Initial load
duke
parents:
diff changeset
553 // Change status to sleeping
a61af66fc99e Initial load
duke
parents:
diff changeset
554 class JavaThreadSleepState : public JavaThreadStatusChanger {
a61af66fc99e Initial load
duke
parents:
diff changeset
555 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
556 ThreadStatistics* _stat;
a61af66fc99e Initial load
duke
parents:
diff changeset
557 bool _active;
a61af66fc99e Initial load
duke
parents:
diff changeset
558 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
559 JavaThreadSleepState(JavaThread *java_thread) :
a61af66fc99e Initial load
duke
parents:
diff changeset
560 JavaThreadStatusChanger(java_thread, java_lang_Thread::SLEEPING) {
a61af66fc99e Initial load
duke
parents:
diff changeset
561 if (is_alive()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
562 _stat = java_thread->get_thread_stat();
a61af66fc99e Initial load
duke
parents:
diff changeset
563 _active = ThreadService::is_thread_monitoring_contention();
a61af66fc99e Initial load
duke
parents:
diff changeset
564 _stat->thread_sleep();
a61af66fc99e Initial load
duke
parents:
diff changeset
565 if (_active) {
a61af66fc99e Initial load
duke
parents:
diff changeset
566 _stat->thread_sleep_begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
567 }
a61af66fc99e Initial load
duke
parents:
diff changeset
568 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
569 _active = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
570 }
a61af66fc99e Initial load
duke
parents:
diff changeset
571 }
a61af66fc99e Initial load
duke
parents:
diff changeset
572
a61af66fc99e Initial load
duke
parents:
diff changeset
573 ~JavaThreadSleepState() {
a61af66fc99e Initial load
duke
parents:
diff changeset
574 if (_active) {
a61af66fc99e Initial load
duke
parents:
diff changeset
575 _stat->thread_sleep_end();
a61af66fc99e Initial load
duke
parents:
diff changeset
576 }
a61af66fc99e Initial load
duke
parents:
diff changeset
577 }
a61af66fc99e Initial load
duke
parents:
diff changeset
578 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
579
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
580 #endif // SHARE_VM_SERVICES_THREADSERVICE_HPP