hotspot/src/share/vm/services/threadService.cpp
author never
Wed, 06 Jan 2010 14:22:39 -0800
changeset 4571 80b553bddc26
parent 3795 6227ff014cfe
child 5547 f4b087cbb361
permissions -rw-r--r--
6914300: ciEnv should export all well known classes Reviewed-by: kvn, twisti
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
3795
6227ff014cfe 6884624: Update copyright year
xdono
parents: 3575
diff changeset
     2
 * Copyright 2003-2009 Sun Microsystems, Inc.  All Rights Reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_threadService.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// TODO: we need to define a naming convention for perf counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// to distinguish counters for:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
//   - standard JSR174 use
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
//   - Hotspot extension (public and committed)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
//   - Hotspot extension (private/internal and uncommitted)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// Default is disabled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
bool ThreadService::_thread_monitoring_contention_enabled = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
bool ThreadService::_thread_cpu_time_enabled = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
PerfCounter*  ThreadService::_total_threads_count = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
PerfVariable* ThreadService::_live_threads_count = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
PerfVariable* ThreadService::_peak_threads_count = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
PerfVariable* ThreadService::_daemon_threads_count = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
volatile int ThreadService::_exiting_threads_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
volatile int ThreadService::_exiting_daemon_threads_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
ThreadDumpResult* ThreadService::_threaddump_list = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
static const int INITIAL_ARRAY_SIZE = 10;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
void ThreadService::init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // These counters are for java.lang.management API support.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  // They are created even if -XX:-UsePerfData is set and in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  // that case, they will be allocated on C heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  _total_threads_count =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
                PerfDataManager::create_counter(JAVA_THREADS, "started",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
                                                PerfData::U_Events, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  _live_threads_count =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
                PerfDataManager::create_variable(JAVA_THREADS, "live",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
                                                 PerfData::U_None, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  _peak_threads_count =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
                PerfDataManager::create_variable(JAVA_THREADS, "livePeak",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
                                                 PerfData::U_None, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  _daemon_threads_count =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
                PerfDataManager::create_variable(JAVA_THREADS, "daemon",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
                                                 PerfData::U_None, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  if (os::is_thread_cpu_time_supported()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    _thread_cpu_time_enabled = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
void ThreadService::reset_peak_thread_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // Acquire the lock to update the peak thread count
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // to synchronize with thread addition and removal.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  MutexLockerEx mu(Threads_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  _peak_threads_count->set_value(get_live_thread_count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
void ThreadService::add_thread(JavaThread* thread, bool daemon) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // Do not count VM internal or JVMTI agent threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  if (thread->is_hidden_from_external_view() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
      thread->is_jvmti_agent_thread()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  _total_threads_count->inc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  _live_threads_count->inc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  if (_live_threads_count->get_value() > _peak_threads_count->get_value()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    _peak_threads_count->set_value(_live_threads_count->get_value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  if (daemon) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    _daemon_threads_count->inc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
void ThreadService::remove_thread(JavaThread* thread, bool daemon) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  Atomic::dec((jint*) &_exiting_threads_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  if (thread->is_hidden_from_external_view() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
      thread->is_jvmti_agent_thread()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  _live_threads_count->set_value(_live_threads_count->get_value() - 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  if (daemon) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    _daemon_threads_count->set_value(_daemon_threads_count->get_value() - 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    Atomic::dec((jint*) &_exiting_daemon_threads_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
void ThreadService::current_thread_exiting(JavaThread* jt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  assert(jt == JavaThread::current(), "Called by current thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  Atomic::inc((jint*) &_exiting_threads_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  oop threadObj = jt->threadObj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  if (threadObj != NULL && java_lang_Thread::is_daemon(threadObj)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    Atomic::inc((jint*) &_exiting_daemon_threads_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
// FIXME: JVMTI should call this function
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
Handle ThreadService::get_current_contended_monitor(JavaThread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  assert(thread != NULL, "should be non-NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  assert(Threads_lock->owned_by_self(), "must grab Threads_lock or be at safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  ObjectMonitor *wait_obj = thread->current_waiting_monitor();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  oop obj = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  if (wait_obj != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    // thread is doing an Object.wait() call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    obj = (oop) wait_obj->object();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    assert(obj != NULL, "Object.wait() should have an object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    ObjectMonitor *enter_obj = thread->current_pending_monitor();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    if (enter_obj != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
      // thread is trying to enter() or raw_enter() an ObjectMonitor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
      obj = (oop) enter_obj->object();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    // If obj == NULL, then ObjectMonitor is raw which doesn't count.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  Handle h(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  return h;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
bool ThreadService::set_thread_monitoring_contention(bool flag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  MutexLocker m(Management_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  bool prev = _thread_monitoring_contention_enabled;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  _thread_monitoring_contention_enabled = flag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  return prev;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
bool ThreadService::set_thread_cpu_time_enabled(bool flag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  MutexLocker m(Management_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  bool prev = _thread_cpu_time_enabled;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  _thread_cpu_time_enabled = flag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  return prev;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
// GC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
void ThreadService::oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  for (ThreadDumpResult* dump = _threaddump_list; dump != NULL; dump = dump->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    dump->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
void ThreadService::add_thread_dump(ThreadDumpResult* dump) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  MutexLocker ml(Management_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  if (_threaddump_list == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    _threaddump_list = dump;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    dump->set_next(_threaddump_list);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    _threaddump_list = dump;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
void ThreadService::remove_thread_dump(ThreadDumpResult* dump) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  MutexLocker ml(Management_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  ThreadDumpResult* prev = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  bool found = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  for (ThreadDumpResult* d = _threaddump_list; d != NULL; prev = d, d = d->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    if (d == dump) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
      if (prev == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
        _threaddump_list = dump->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
        prev->set_next(dump->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
      found = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  assert(found, "The threaddump result to be removed must exist.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
// Dump stack trace of threads specified in the given threads array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
// Returns StackTraceElement[][] each element is the stack trace of a thread in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
// the corresponding entry in the given threads array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
Handle ThreadService::dump_stack_traces(GrowableArray<instanceHandle>* threads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
                                        int num_threads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
                                        TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  assert(num_threads > 0, "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  ThreadDumpResult dump_result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  VM_ThreadDump op(&dump_result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
                   threads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
                   num_threads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
                   -1,    /* entire stack */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
                   false, /* with locked monitors */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
                   false  /* with locked synchronizers */);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  VMThread::execute(&op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  // Allocate the resulting StackTraceElement[][] object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  klassOop k = SystemDictionary::resolve_or_fail(vmSymbolHandles::java_lang_StackTraceElement_array(), true, CHECK_NH);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  objArrayKlassHandle ik (THREAD, k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  objArrayOop r = oopFactory::new_objArray(ik(), num_threads, CHECK_NH);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  objArrayHandle result_obj(THREAD, r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  int num_snapshots = dump_result.num_snapshots();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  assert(num_snapshots == num_threads, "Must have num_threads thread snapshots");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  int i = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  for (ThreadSnapshot* ts = dump_result.snapshots(); ts != NULL; i++, ts = ts->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    ThreadStackTrace* stacktrace = ts->get_stack_trace();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    if (stacktrace == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
      // No stack trace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
      result_obj->obj_at_put(i, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
      // Construct an array of java/lang/StackTraceElement object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
      Handle backtrace_h = stacktrace->allocate_fill_stack_trace_element_array(CHECK_NH);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
      result_obj->obj_at_put(i, backtrace_h());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  return result_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
void ThreadService::reset_contention_count_stat(JavaThread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  ThreadStatistics* stat = thread->get_thread_stat();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  if (stat != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    stat->reset_count_stat();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
void ThreadService::reset_contention_time_stat(JavaThread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  ThreadStatistics* stat = thread->get_thread_stat();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  if (stat != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
    stat->reset_time_stat();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
// Find deadlocks involving object monitors and concurrent locks if concurrent_locks is true
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
DeadlockCycle* ThreadService::find_deadlocks_at_safepoint(bool concurrent_locks) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  // This code was modified from the original Threads::find_deadlocks code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  int globalDfn = 0, thisDfn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  ObjectMonitor* waitingToLockMonitor = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  oop waitingToLockBlocker = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  bool blocked_on_monitor = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  JavaThread *currentThread, *previousThread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  int num_deadlocks = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  for (JavaThread* p = Threads::first(); p != NULL; p = p->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    // Initialize the depth-first-number
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    p->set_depth_first_number(-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  DeadlockCycle* deadlocks = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  DeadlockCycle* last = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  DeadlockCycle* cycle = new DeadlockCycle();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  for (JavaThread* jt = Threads::first(); jt != NULL; jt = jt->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
    if (jt->depth_first_number() >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
      // this thread was already visited
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    thisDfn = globalDfn;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    jt->set_depth_first_number(globalDfn++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    previousThread = jt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
    currentThread = jt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    cycle->reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
    // When there is a deadlock, all the monitors involved in the dependency
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
    // cycle must be contended and heavyweight. So we only care about the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    // heavyweight monitor a thread is waiting to lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    waitingToLockMonitor = (ObjectMonitor*)jt->current_pending_monitor();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    if (concurrent_locks) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
      waitingToLockBlocker = jt->current_park_blocker();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
    while (waitingToLockMonitor != NULL || waitingToLockBlocker != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
      cycle->add_thread(currentThread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
      if (waitingToLockMonitor != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
        currentThread = Threads::owning_thread_from_monitor_owner((address)waitingToLockMonitor->owner(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
                                                                  false /* no locking needed */);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
        if (concurrent_locks) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
          if (waitingToLockBlocker->is_a(SystemDictionary::abstract_ownable_synchronizer_klass())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
            oop threadObj = java_util_concurrent_locks_AbstractOwnableSynchronizer::get_owner_threadObj(waitingToLockBlocker);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
            currentThread = threadObj != NULL ? java_lang_Thread::thread(threadObj) : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
          } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
            currentThread = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
      if (currentThread == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
        // No dependency on another thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
      if (currentThread->depth_first_number() < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
        // First visit to this thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
        currentThread->set_depth_first_number(globalDfn++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
      } else if (currentThread->depth_first_number() < thisDfn) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
        // Thread already visited, and not on a (new) cycle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
      } else if (currentThread == previousThread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
        // Self-loop, ignore
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
        // We have a (new) cycle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
        num_deadlocks++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
        cycle->set_deadlock(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
        // add this cycle to the deadlocks list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
        if (deadlocks == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
          deadlocks = cycle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
          last->set_next(cycle);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
        last = cycle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
        cycle = new DeadlockCycle();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
      previousThread = currentThread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
      waitingToLockMonitor = (ObjectMonitor*)currentThread->current_pending_monitor();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
      if (concurrent_locks) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
        waitingToLockBlocker = currentThread->current_park_blocker();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  return deadlocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
ThreadDumpResult::ThreadDumpResult() : _num_threads(0), _num_snapshots(0), _snapshots(NULL), _next(NULL), _last(NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  // Create a new ThreadDumpResult object and append to the list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  // If GC happens before this function returns, methodOop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  // in the stack trace will be visited.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  ThreadService::add_thread_dump(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
ThreadDumpResult::ThreadDumpResult(int num_threads) : _num_threads(num_threads), _num_snapshots(0), _snapshots(NULL), _next(NULL), _last(NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  // Create a new ThreadDumpResult object and append to the list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  // If GC happens before this function returns, oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  // will be visited.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  ThreadService::add_thread_dump(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
ThreadDumpResult::~ThreadDumpResult() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  ThreadService::remove_thread_dump(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // free all the ThreadSnapshot objects created during
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // the VM_ThreadDump operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  ThreadSnapshot* ts = _snapshots;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  while (ts != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
    ThreadSnapshot* p = ts;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
    ts = ts->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
    delete p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
void ThreadDumpResult::add_thread_snapshot(ThreadSnapshot* ts) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  assert(_num_threads == 0 || _num_snapshots < _num_threads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
         "_num_snapshots must be less than _num_threads");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  _num_snapshots++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  if (_snapshots == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    _snapshots = ts;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    _last->set_next(ts);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  _last = ts;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
void ThreadDumpResult::oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  for (ThreadSnapshot* ts = _snapshots; ts != NULL; ts = ts->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
    ts->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
StackFrameInfo::StackFrameInfo(javaVFrame* jvf, bool with_lock_info) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  _method = jvf->method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  _bci = jvf->bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  _locked_monitors = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  if (with_lock_info) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    GrowableArray<MonitorInfo*>* list = jvf->locked_monitors();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
    int length = list->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    if (length > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
      _locked_monitors = new (ResourceObj::C_HEAP) GrowableArray<oop>(length, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
      for (int i = 0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
        MonitorInfo* monitor = list->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
        assert(monitor->owner(), "This monitor must have an owning object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
        _locked_monitors->append(monitor->owner());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
void StackFrameInfo::oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  f->do_oop((oop*) &_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  if (_locked_monitors != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
    int length = _locked_monitors->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
    for (int i = 0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
      f->do_oop((oop*) _locked_monitors->adr_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
void StackFrameInfo::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  java_lang_Throwable::print_stack_element(st, method(), bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  int len = (_locked_monitors != NULL ? _locked_monitors->length() : 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  for (int i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
    oop o = _locked_monitors->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
    instanceKlass* ik = instanceKlass::cast(o->klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
    st->print_cr("\t- locked <" INTPTR_FORMAT "> (a %s)", (address)o, ik->external_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
// Iterate through monitor cache to find JNI locked monitors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
class InflatedMonitorsClosure: public MonitorClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  ThreadStackTrace* _stack_trace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  Thread* _thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  InflatedMonitorsClosure(Thread* t, ThreadStackTrace* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
    _thread = t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
    _stack_trace = st;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  void do_monitor(ObjectMonitor* mid) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    if (mid->owner() == _thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
      oop object = (oop) mid->object();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
      if (!_stack_trace->is_owned_monitor_on_stack(object)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
        _stack_trace->add_jni_locked_monitor(object);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
ThreadStackTrace::ThreadStackTrace(JavaThread* t, bool with_locked_monitors) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  _thread = t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  _frames = new (ResourceObj::C_HEAP) GrowableArray<StackFrameInfo*>(INITIAL_ARRAY_SIZE, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  _depth = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  _with_locked_monitors = with_locked_monitors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  if (_with_locked_monitors) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
    _jni_locked_monitors = new (ResourceObj::C_HEAP) GrowableArray<oop>(INITIAL_ARRAY_SIZE, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
    _jni_locked_monitors = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
ThreadStackTrace::~ThreadStackTrace() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  for (int i = 0; i < _frames->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
    delete _frames->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  delete _frames;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  if (_jni_locked_monitors != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
    delete _jni_locked_monitors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
void ThreadStackTrace::dump_stack_at_safepoint(int maxDepth) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  assert(SafepointSynchronize::is_at_safepoint(), "all threads are stopped");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  if (_thread->has_last_Java_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
    RegisterMap reg_map(_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
    vframe* start_vf = _thread->last_java_vframe(&reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
    int count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
    for (vframe* f = start_vf; f; f = f->sender() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
      if (f->is_java_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
        javaVFrame* jvf = javaVFrame::cast(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
        add_stack_frame(jvf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
        count++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
        // Ignore non-Java frames
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
      if (maxDepth > 0 && count == maxDepth) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
        // Skip frames if more than maxDepth
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  if (_with_locked_monitors) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    // Iterate inflated monitors and find monitors locked by this thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    // not found in the stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
    InflatedMonitorsClosure imc(_thread, this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
    ObjectSynchronizer::monitors_iterate(&imc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
bool ThreadStackTrace::is_owned_monitor_on_stack(oop object) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  assert(SafepointSynchronize::is_at_safepoint(), "all threads are stopped");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  bool found = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  int num_frames = get_stack_depth();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  for (int depth = 0; depth < num_frames; depth++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
    StackFrameInfo* frame = stack_frame_at(depth);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
    int len = frame->num_locked_monitors();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
    GrowableArray<oop>* locked_monitors = frame->locked_monitors();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
    for (int j = 0; j < len; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
      oop monitor = locked_monitors->at(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
      assert(monitor != NULL && monitor->is_instance(), "must be a Java object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
      if (monitor == object) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
        found = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  return found;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
Handle ThreadStackTrace::allocate_fill_stack_trace_element_array(TRAPS) {
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 3795
diff changeset
   543
  klassOop k = SystemDictionary::StackTraceElement_klass();
379
10767ca40189 6652736: well known classes in system dictionary are inefficiently processed
jrose
parents: 1
diff changeset
   544
  assert(k != NULL, "must be loaded in 1.4+");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  instanceKlassHandle ik(THREAD, k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  // Allocate an array of java/lang/StackTraceElement object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  objArrayOop ste = oopFactory::new_objArray(ik(), _depth, CHECK_NH);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  objArrayHandle backtrace(THREAD, ste);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  for (int j = 0; j < _depth; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
    StackFrameInfo* frame = _frames->at(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
    methodHandle mh(THREAD, frame->method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    oop element = java_lang_StackTraceElement::create(mh, frame->bci(), CHECK_NH);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
    backtrace->obj_at_put(j, element);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  return backtrace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
void ThreadStackTrace::add_stack_frame(javaVFrame* jvf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  StackFrameInfo* frame = new StackFrameInfo(jvf, _with_locked_monitors);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  _frames->append(frame);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  _depth++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
void ThreadStackTrace::oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  int length = _frames->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  for (int i = 0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
    _frames->at(i)->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  length = (_jni_locked_monitors != NULL ? _jni_locked_monitors->length() : 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  for (int j = 0; j < length; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
    f->do_oop((oop*) _jni_locked_monitors->adr_at(j));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
ConcurrentLocksDump::~ConcurrentLocksDump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  if (_retain_map_on_free) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  for (ThreadConcurrentLocks* t = _map; t != NULL;)  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
    ThreadConcurrentLocks* tcl = t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
    t = t->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
    delete tcl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
void ConcurrentLocksDump::dump_at_safepoint() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  // dump all locked concurrent locks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  assert(SafepointSynchronize::is_at_safepoint(), "all threads are stopped");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  if (JDK_Version::is_gte_jdk16x_version()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
    GrowableArray<oop>* aos_objects = new GrowableArray<oop>(INITIAL_ARRAY_SIZE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
    // Find all instances of AbstractOwnableSynchronizer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
    HeapInspection::find_instances_at_safepoint(SystemDictionary::abstract_ownable_synchronizer_klass(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
                                                aos_objects);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
    // Build a map of thread to its owned AQS locks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
    build_map(aos_objects);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
// build a map of JavaThread to all its owned AbstractOwnableSynchronizer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
void ConcurrentLocksDump::build_map(GrowableArray<oop>* aos_objects) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  int length = aos_objects->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  for (int i = 0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
    oop o = aos_objects->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
    oop owner_thread_obj = java_util_concurrent_locks_AbstractOwnableSynchronizer::get_owner_threadObj(o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
    if (owner_thread_obj != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
      JavaThread* thread = java_lang_Thread::thread(owner_thread_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
      assert(o->is_instance(), "Must be an instanceOop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
      add_lock(thread, (instanceOop) o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
void ConcurrentLocksDump::add_lock(JavaThread* thread, instanceOop o) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  ThreadConcurrentLocks* tcl = thread_concurrent_locks(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  if (tcl != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
    tcl->add_lock(o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  // First owned lock found for this thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  tcl = new ThreadConcurrentLocks(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  tcl->add_lock(o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  if (_map == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
    _map = tcl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
    _last->set_next(tcl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  _last = tcl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
ThreadConcurrentLocks* ConcurrentLocksDump::thread_concurrent_locks(JavaThread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  for (ThreadConcurrentLocks* tcl = _map; tcl != NULL; tcl = tcl->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
    if (tcl->java_thread() == thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
      return tcl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
void ConcurrentLocksDump::print_locks_on(JavaThread* t, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  st->print_cr("   Locked ownable synchronizers:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  ThreadConcurrentLocks* tcl = thread_concurrent_locks(t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  GrowableArray<instanceOop>* locks = (tcl != NULL ? tcl->owned_locks() : NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  if (locks == NULL || locks->is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
    st->print_cr("\t- None");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
    st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  for (int i = 0; i < locks->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    instanceOop obj = locks->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
    instanceKlass* ik = instanceKlass::cast(obj->klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
    st->print_cr("\t- <" INTPTR_FORMAT "> (a %s)", (address)obj, ik->external_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
ThreadConcurrentLocks::ThreadConcurrentLocks(JavaThread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  _thread = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  _owned_locks = new (ResourceObj::C_HEAP) GrowableArray<instanceOop>(INITIAL_ARRAY_SIZE, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  _next = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
ThreadConcurrentLocks::~ThreadConcurrentLocks() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  delete _owned_locks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
void ThreadConcurrentLocks::add_lock(instanceOop o) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  _owned_locks->append(o);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
void ThreadConcurrentLocks::oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  int length = _owned_locks->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  for (int i = 0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
    f->do_oop((oop*) _owned_locks->adr_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
ThreadStatistics::ThreadStatistics() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  _contended_enter_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  _monitor_wait_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  _sleep_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  _count_pending_reset = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  _timer_pending_reset = false;
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 950
diff changeset
   693
  memset((void*) _perf_recursion_counts, 0, sizeof(_perf_recursion_counts));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
ThreadSnapshot::ThreadSnapshot(JavaThread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  _thread = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  _threadObj = thread->threadObj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  _stack_trace = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  _concurrent_locks = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  _next = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  ThreadStatistics* stat = thread->get_thread_stat();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  _contended_enter_ticks = stat->contended_enter_ticks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  _contended_enter_count = stat->contended_enter_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  _monitor_wait_ticks = stat->monitor_wait_ticks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  _monitor_wait_count = stat->monitor_wait_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  _sleep_ticks = stat->sleep_ticks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  _sleep_count = stat->sleep_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  _blocker_object = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  _blocker_object_owner = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  _thread_status = java_lang_Thread::get_thread_status(_threadObj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  _is_ext_suspended = thread->is_being_ext_suspended();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  _is_in_native = (thread->thread_state() == _thread_in_native);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  if (_thread_status == java_lang_Thread::BLOCKED_ON_MONITOR_ENTER ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
      _thread_status == java_lang_Thread::IN_OBJECT_WAIT ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
      _thread_status == java_lang_Thread::IN_OBJECT_WAIT_TIMED) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
    Handle obj = ThreadService::get_current_contended_monitor(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
    if (obj() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
      // monitor no longer exists; thread is not blocked
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
      _thread_status = java_lang_Thread::RUNNABLE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
      _blocker_object = obj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
      JavaThread* owner = ObjectSynchronizer::get_lock_owner(obj, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
      if ((owner == NULL && _thread_status == java_lang_Thread::BLOCKED_ON_MONITOR_ENTER)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
          || (owner != NULL && owner->is_attaching())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
        // ownership information of the monitor is not available
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
        // (may no longer be owned or releasing to some other thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
        // make this thread in RUNNABLE state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
        // And when the owner thread is in attaching state, the java thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
        // is not completely initialized. For example thread name and id
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
        // and may not be set, so hide the attaching thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
        _thread_status = java_lang_Thread::RUNNABLE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
        _blocker_object = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
      } else if (owner != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
        _blocker_object_owner = owner->threadObj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
  // Support for JSR-166 locks
950
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 670
diff changeset
   746
  if (JDK_Version::current().supports_thread_park_blocker() &&
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
        (_thread_status == java_lang_Thread::PARKED ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
         _thread_status == java_lang_Thread::PARKED_TIMED)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
    _blocker_object = thread->current_park_blocker();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
    if (_blocker_object != NULL && _blocker_object->is_a(SystemDictionary::abstract_ownable_synchronizer_klass())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
      _blocker_object_owner = java_util_concurrent_locks_AbstractOwnableSynchronizer::get_owner_threadObj(_blocker_object);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
ThreadSnapshot::~ThreadSnapshot() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  delete _stack_trace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
  delete _concurrent_locks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
void ThreadSnapshot::dump_stack_at_safepoint(int max_depth, bool with_locked_monitors) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  _stack_trace = new ThreadStackTrace(_thread, with_locked_monitors);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  _stack_trace->dump_stack_at_safepoint(max_depth);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
void ThreadSnapshot::oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  f->do_oop(&_threadObj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  f->do_oop(&_blocker_object);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  f->do_oop(&_blocker_object_owner);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  if (_stack_trace != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
    _stack_trace->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  if (_concurrent_locks != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
    _concurrent_locks->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
DeadlockCycle::DeadlockCycle() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  _is_deadlock = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  _threads = new (ResourceObj::C_HEAP) GrowableArray<JavaThread*>(INITIAL_ARRAY_SIZE, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
  _next = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
DeadlockCycle::~DeadlockCycle() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
  delete _threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
void DeadlockCycle::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  st->print_cr("Found one Java-level deadlock:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  st->print("=============================");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  JavaThread* currentThread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  ObjectMonitor* waitingToLockMonitor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  oop waitingToLockBlocker;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  int len = _threads->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
  for (int i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
    currentThread = _threads->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
    waitingToLockMonitor = (ObjectMonitor*)currentThread->current_pending_monitor();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
    waitingToLockBlocker = currentThread->current_park_blocker();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
    st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
    st->print_cr("\"%s\":", currentThread->get_thread_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
    const char* owner_desc = ",\n  which is held by";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
    if (waitingToLockMonitor != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
      st->print("  waiting to lock monitor " INTPTR_FORMAT, waitingToLockMonitor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
      oop obj = (oop)waitingToLockMonitor->object();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
      if (obj != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
        st->print(" (object "INTPTR_FORMAT ", a %s)", (address)obj,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
                   (instanceKlass::cast(obj->klass()))->external_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
        if (!currentThread->current_pending_monitor_is_from_java()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
          owner_desc = "\n  in JNI, which is held by";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
        // No Java object associated - a JVMTI raw monitor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
        owner_desc = " (JVMTI raw monitor),\n  which is held by";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
      currentThread = Threads::owning_thread_from_monitor_owner(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
        (address)waitingToLockMonitor->owner(), false /* no locking needed */);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
      st->print("  waiting for ownable synchronizer " INTPTR_FORMAT ", (a %s)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
                (address)waitingToLockBlocker,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
                (instanceKlass::cast(waitingToLockBlocker->klass()))->external_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
      assert(waitingToLockBlocker->is_a(SystemDictionary::abstract_ownable_synchronizer_klass()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
             "Must be an AbstractOwnableSynchronizer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
      oop ownerObj = java_util_concurrent_locks_AbstractOwnableSynchronizer::get_owner_threadObj(waitingToLockBlocker);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
      currentThread = java_lang_Thread::thread(ownerObj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
    st->print("%s \"%s\"", owner_desc, currentThread->get_thread_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
  st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
  st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  // Print stack traces
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
  bool oldJavaMonitorsInStackTrace = JavaMonitorsInStackTrace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
  JavaMonitorsInStackTrace = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
  st->print_cr("Java stack information for the threads listed above:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
  st->print_cr("===================================================");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  for (int j = 0; j < len; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
    currentThread = _threads->at(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
    st->print_cr("\"%s\":", currentThread->get_thread_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
    currentThread->print_stack_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
  JavaMonitorsInStackTrace = oldJavaMonitorsInStackTrace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
ThreadsListEnumerator::ThreadsListEnumerator(Thread* cur_thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
                                             bool include_jvmti_agent_threads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
                                             bool include_jni_attaching_threads) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  assert(cur_thread == Thread::current(), "Check current thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
  int init_size = ThreadService::get_live_thread_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
  _threads_array = new GrowableArray<instanceHandle>(init_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
  MutexLockerEx ml(Threads_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
  for (JavaThread* jt = Threads::first(); jt != NULL; jt = jt->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
    // skips JavaThreads in the process of exiting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
    // and also skips VM internal JavaThreads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
    // Threads in _thread_new or _thread_new_trans state are included.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
    // i.e. threads have been started but not yet running.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
    if (jt->threadObj() == NULL   ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
        jt->is_exiting() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
        !java_lang_Thread::is_alive(jt->threadObj())   ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
        jt->is_hidden_from_external_view()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
    // skip agent threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
    if (!include_jvmti_agent_threads && jt->is_jvmti_agent_thread()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
    // skip jni threads in the process of attaching
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
    if (!include_jni_attaching_threads && jt->is_attaching()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
    instanceHandle h(cur_thread, (instanceOop) jt->threadObj());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
    _threads_array->append(h);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
}