src/share/vm/services/threadService.hpp

Wed, 27 Aug 2014 09:36:55 +0200

author
tschatzl
date
Wed, 27 Aug 2014 09:36:55 +0200
changeset 7073
4d3a43351904
parent 6198
55fb97c4c58d
child 6876
710a3c8b516e
child 8316
626f594dffa6
permissions
-rw-r--r--

Merge

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

mercurial