hotspot/src/share/vm/runtime/vm_operations.cpp
author thartmann
Tue, 25 Aug 2015 07:49:55 +0200
changeset 32401 cc58aeaec340
parent 31620 53be635ad49c
child 33160 c59f1676d27e
child 33148 68fa8b6c4340
permissions -rw-r--r--
8075805: Crash while trying to release CompiledICHolder Summary: Removed nmethod transition to zombie outside of sweeper. Added cleaning of ICs of unloaded nmethods. Reviewed-by: kvn, iveresov
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28163
diff changeset
     2
 * Copyright (c) 1997, 2015, Oracle and/or its affiliates. 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
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4750
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4750
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4750
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    25
#include "precompiled.hpp"
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    26
#include "classfile/symbolTable.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    27
#include "classfile/vmSymbols.hpp"
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 25057
diff changeset
    28
#include "code/codeCache.hpp"
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30764
diff changeset
    29
#include "code/codeCacheExtensions.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    30
#include "compiler/compileBroker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    31
#include "compiler/compilerOracle.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29071
diff changeset
    32
#include "gc/shared/isGCActiveMark.hpp"
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28163
diff changeset
    33
#include "memory/heapInspection.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    34
#include "memory/resourceArea.hpp"
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    35
#include "oops/symbol.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    36
#include "runtime/arguments.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    37
#include "runtime/deoptimization.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    38
#include "runtime/interfaceSupport.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    39
#include "runtime/sweeper.hpp"
14583
d70ee55535f4 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 10565
diff changeset
    40
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    41
#include "runtime/vm_operations.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    42
#include "services/threadService.hpp"
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    43
#include "trace/tracing.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 20290
diff changeset
    45
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 20290
diff changeset
    46
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
#define VM_OP_NAME_INITIALIZE(name) #name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
const char* VM_Operation::_names[VM_Operation::VMOp_Terminating] = \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  { VM_OPS_DO(VM_OP_NAME_INITIALIZE) };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
void VM_Operation::set_calling_thread(Thread* thread, ThreadPriority priority) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  _calling_thread = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  assert(MinPriority <= priority && priority <= MaxPriority, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  _priority = priority;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
void VM_Operation::evaluate() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  if (TraceVMOperation) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    tty->print("[");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    NOT_PRODUCT(print();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  if (TraceVMOperation) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    tty->print_cr("]");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    71
const char* VM_Operation::mode_to_string(Mode mode) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    72
  switch(mode) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    73
    case _safepoint      : return "safepoint";
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    74
    case _no_safepoint   : return "no safepoint";
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    75
    case _concurrent     : return "concurrent";
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    76
    case _async_safepoint: return "async safepoint";
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    77
    default              : return "unknown";
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    78
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    79
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
// Called by fatal error handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
void VM_Operation::print_on_error(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  st->print("VM_Operation (" PTR_FORMAT "): ", this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  st->print("%s", name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    85
  const char* mode = mode_to_string(evaluation_mode());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  st->print(", mode: %s", mode);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  if (calling_thread()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    st->print(", requested by thread " PTR_FORMAT, calling_thread());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
void VM_ThreadStop::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  assert(SafepointSynchronize::is_at_safepoint(), "must be at a safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  JavaThread* target = java_lang_Thread::thread(target_thread());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // Note that this now allows multiple ThreadDeath exceptions to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // thrown at a thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  if (target != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    // the thread has run and is not already in the process of exiting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    target->send_thread_stop(throwable());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
void VM_Deoptimize::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // We do not want any GCs to happen while we are in the middle of this VM operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  DeoptimizationMarker dm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // Deoptimize all activations depending on marked nmethods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  Deoptimization::deoptimize_dependents();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
32401
cc58aeaec340 8075805: Crash while trying to release CompiledICHolder
thartmann
parents: 31620
diff changeset
   112
  // Make the dependent methods not entrant
cc58aeaec340 8075805: Crash while trying to release CompiledICHolder
thartmann
parents: 31620
diff changeset
   113
  CodeCache::make_marked_nmethods_not_entrant();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26587
diff changeset
   116
void VM_MarkActiveNMethods::doit() {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26587
diff changeset
   117
  NMethodSweeper::mark_active_nmethods();
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26587
diff changeset
   118
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
VM_DeoptimizeFrame::VM_DeoptimizeFrame(JavaThread* thread, intptr_t* id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  _thread = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  _id     = id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
void VM_DeoptimizeFrame::doit() {
7106
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   127
  Deoptimization::deoptimize_frame_internal(_thread, _id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
void VM_DeoptimizeAll::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  DeoptimizationMarker dm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  // deoptimize all java threads in the system
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  if (DeoptimizeALot) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    for (JavaThread* thread = Threads::first(); thread != NULL; thread = thread->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
      if (thread->has_last_Java_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
        thread->deoptimize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  } else if (DeoptimizeRandom) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    // Deoptimize some selected threads and frames
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    int tnum = os::random() & 0x3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    int fnum =  os::random() & 0x3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    int tcount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    for (JavaThread* thread = Threads::first(); thread != NULL; thread = thread->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
      if (thread->has_last_Java_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
        if (tcount++ == tnum)  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
        tcount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
          int fcount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
          // Deoptimize some selected frames.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
          // Biased llocking wants a updated register map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
          for(StackFrameStream fst(thread, UseBiasedLocking); !fst.is_done(); fst.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
            if (fst.current()->can_be_deoptimized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
              if (fcount++ == fnum) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
                fcount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
                Deoptimization::deoptimize(thread, *fst.current(), fst.register_map());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
void VM_ZombieAll::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  JavaThread *thread = (JavaThread *)calling_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  assert(thread->is_Java_thread(), "must be a Java thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  thread->make_zombies();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
#endif // !PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   178
void VM_UnlinkSymbols::doit() {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   179
  JavaThread *thread = (JavaThread *)calling_thread();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   180
  assert(thread->is_Java_thread(), "must be a Java thread");
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   181
  SymbolTable::unlink();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   182
}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   183
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
void VM_Verify::doit() {
16680
960505df90e7 8011343: Add new flag for verifying the heap during startup
johnc
parents: 14583
diff changeset
   185
  Universe::heap()->prepare_for_verify();
960505df90e7 8011343: Add new flag for verifying the heap during startup
johnc
parents: 14583
diff changeset
   186
  Universe::verify(_silent);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
bool VM_PrintThreads::doit_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  assert(Thread::current()->is_Java_thread(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // Make sure AbstractOwnableSynchronizer is loaded
25057
f38210f84f8c 8031819: Remove legacy jdk checks and code
hseigel
parents: 24424
diff changeset
   193
  java_util_concurrent_locks_AbstractOwnableSynchronizer::initialize(JavaThread::current());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  // Get Heap_lock if concurrent locks will be dumped
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  if (_print_concurrent_locks) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    Heap_lock->lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
void VM_PrintThreads::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  Threads::print_on(_out, true, false, _print_concurrent_locks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
void VM_PrintThreads::doit_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  if (_print_concurrent_locks) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    // Release Heap_lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    Heap_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
void VM_PrintJNI::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  JNIHandles::print_on(_out);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
VM_FindDeadlocks::~VM_FindDeadlocks() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  if (_deadlocks != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    DeadlockCycle* cycle = _deadlocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    while (cycle != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
      DeadlockCycle* d = cycle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
      cycle = cycle->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
      delete d;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
bool VM_FindDeadlocks::doit_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  assert(Thread::current()->is_Java_thread(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // Load AbstractOwnableSynchronizer class
25057
f38210f84f8c 8031819: Remove legacy jdk checks and code
hseigel
parents: 24424
diff changeset
   232
  if (_concurrent_locks) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    java_util_concurrent_locks_AbstractOwnableSynchronizer::initialize(JavaThread::current());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
void VM_FindDeadlocks::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  _deadlocks = ThreadService::find_deadlocks_at_safepoint(_concurrent_locks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  if (_out != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    int num_deadlocks = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    for (DeadlockCycle* cycle = _deadlocks; cycle != NULL; cycle = cycle->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
      num_deadlocks++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
      cycle->print_on(_out);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    if (num_deadlocks == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
      _out->print_cr("\nFound 1 deadlock.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
      _out->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    } else if (num_deadlocks > 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
      _out->print_cr("\nFound %d deadlocks.\n", num_deadlocks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
      _out->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    }
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
VM_ThreadDump::VM_ThreadDump(ThreadDumpResult* result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
                             int max_depth,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
                             bool with_locked_monitors,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
                             bool with_locked_synchronizers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  _result = result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  _num_threads = 0; // 0 indicates all threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  _threads = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  _result = result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  _max_depth = max_depth;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  _with_locked_monitors = with_locked_monitors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  _with_locked_synchronizers = with_locked_synchronizers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
VM_ThreadDump::VM_ThreadDump(ThreadDumpResult* result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
                             GrowableArray<instanceHandle>* threads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
                             int num_threads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
                             int max_depth,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
                             bool with_locked_monitors,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
                             bool with_locked_synchronizers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  _result = result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  _num_threads = num_threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  _threads = threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  _result = result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  _max_depth = max_depth;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  _with_locked_monitors = with_locked_monitors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  _with_locked_synchronizers = with_locked_synchronizers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
bool VM_ThreadDump::doit_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  assert(Thread::current()->is_Java_thread(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  // Load AbstractOwnableSynchronizer class before taking thread snapshots
25057
f38210f84f8c 8031819: Remove legacy jdk checks and code
hseigel
parents: 24424
diff changeset
   290
  java_util_concurrent_locks_AbstractOwnableSynchronizer::initialize(JavaThread::current());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  if (_with_locked_synchronizers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
    // Acquire Heap_lock to dump concurrent locks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    Heap_lock->lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
void VM_ThreadDump::doit_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  if (_with_locked_synchronizers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
    // Release Heap_lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
    Heap_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
void VM_ThreadDump::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  ConcurrentLocksDump concurrent_locks(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  if (_with_locked_synchronizers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    concurrent_locks.dump_at_safepoint();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  if (_num_threads == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    // Snapshot all live threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
    for (JavaThread* jt = Threads::first(); jt != NULL; jt = jt->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
      if (jt->is_exiting() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
          jt->is_hidden_from_external_view())  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
        // skip terminating threads and hidden threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
      ThreadConcurrentLocks* tcl = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
      if (_with_locked_synchronizers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
        tcl = concurrent_locks.thread_concurrent_locks(jt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
      ThreadSnapshot* ts = snapshot_thread(jt, tcl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
      _result->add_thread_snapshot(ts);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    // Snapshot threads in the given _threads array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
    // A dummy snapshot is created if a thread doesn't exist
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
    for (int i = 0; i < _num_threads; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
      instanceHandle th = _threads->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
      if (th() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
        // skip if the thread doesn't exist
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
        // Add a dummy snapshot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
        _result->add_thread_snapshot(new ThreadSnapshot());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
      // Dump thread stack only if the thread is alive and not exiting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
      // and not VM internal thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
      JavaThread* jt = java_lang_Thread::thread(th());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
      if (jt == NULL || /* thread not alive */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
          jt->is_exiting() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
          jt->is_hidden_from_external_view())  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
        // add a NULL snapshot if skipped
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
        _result->add_thread_snapshot(new ThreadSnapshot());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
      ThreadConcurrentLocks* tcl = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
      if (_with_locked_synchronizers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
        tcl = concurrent_locks.thread_concurrent_locks(jt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
      ThreadSnapshot* ts = snapshot_thread(jt, tcl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
      _result->add_thread_snapshot(ts);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
ThreadSnapshot* VM_ThreadDump::snapshot_thread(JavaThread* java_thread, ThreadConcurrentLocks* tcl) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  ThreadSnapshot* snapshot = new ThreadSnapshot(java_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  snapshot->dump_stack_at_safepoint(_max_depth, _with_locked_monitors);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  snapshot->set_concurrent_locks(tcl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  return snapshot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
volatile bool VM_Exit::_vm_exited = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
Thread * VM_Exit::_shutdown_thread = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
int VM_Exit::set_vm_exited() {
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30764
diff changeset
   373
  CodeCacheExtensions::complete_step(CodeCacheExtensionsSteps::LastStep);
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30764
diff changeset
   374
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  Thread * thr_cur = ThreadLocalStorage::get_thread_slow();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint already");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  int num_active = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  _shutdown_thread = thr_cur;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  _vm_exited = true;                                // global flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  for(JavaThread *thr = Threads::first(); thr != NULL; thr = thr->next())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
    if (thr!=thr_cur && thr->thread_state() == _thread_in_native) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
      ++num_active;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
      thr->set_terminated(JavaThread::_vm_exited);  // per-thread flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  return num_active;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
int VM_Exit::wait_for_threads_in_native_to_block() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  // VM exits at safepoint. This function must be called at the final safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  // to wait for threads in _thread_in_native state to be quiescent.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint already");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  Thread * thr_cur = ThreadLocalStorage::get_thread_slow();
28163
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27420
diff changeset
   398
  Monitor timer(Mutex::leaf, "VM_Exit timer", true,
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27420
diff changeset
   399
                Monitor::_safepoint_check_never);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  // Compiler threads need longer wait because they can access VM data directly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  // while in native. If they are active and some structures being used are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  // deleted by the shutdown sequence, they will crash. On the other hand, user
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  // threads must go through native=>Java/VM transitions first to access VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  // data, and they will be stopped during state transition. In theory, we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  // don't have to wait for user threads to be quiescent, but it's always
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  // better to terminate VM when current thread is the only active thread, so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  // wait for user threads too. Numbers are in 10 milliseconds.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  int max_wait_user_thread = 30;                  // at least 300 milliseconds
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  int max_wait_compiler_thread = 1000;            // at least 10 seconds
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  int max_wait = max_wait_compiler_thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  int attempts = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
    int num_active = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    int num_active_compiler_thread = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
    for(JavaThread *thr = Threads::first(); thr != NULL; thr = thr->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
      if (thr!=thr_cur && thr->thread_state() == _thread_in_native) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
        num_active++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
        if (thr->is_Compiler_thread()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
          num_active_compiler_thread++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    if (num_active == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
       return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
    } else if (attempts > max_wait) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
       return num_active;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
    } else if (num_active_compiler_thread == 0 && attempts > max_wait_user_thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
       return num_active;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
    attempts++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
    MutexLockerEx ml(&timer, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
    timer.wait(Mutex::_no_safepoint_check_flag, 10);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
void VM_Exit::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  CompileBroker::set_should_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  // Wait for a short period for threads in native to block. Any thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  // still executing native code after the wait will be stopped at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  // native==>Java/VM barriers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  // Among 16276 JCK tests, 94% of them come here without any threads still
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  // running in native; the other 6% are quiescent within 250ms (Ultra 80).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  wait_for_threads_in_native_to_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  set_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  // cleanup globals resources before exiting. exit_globals() currently
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  // cleans up outputStream resources and PerfMemory resources.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  exit_globals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  // Check for exit hook
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  exit_hook_t exit_hook = Arguments::exit_hook();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  if (exit_hook != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    // exit hook should exit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    exit_hook(_exit_code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    // ... but if it didn't, we must do it here
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    vm_direct_exit(_exit_code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    vm_direct_exit(_exit_code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
void VM_Exit::wait_if_vm_exited() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  if (_vm_exited &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
      ThreadLocalStorage::get_thread_slow() != _shutdown_thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
    // _vm_exited is set at safepoint, and the Threads_lock is never released
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
    // we will block here until the process dies
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
    Threads_lock->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
}
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25715
diff changeset
   481
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25715
diff changeset
   482
void VM_PrintCompileQueue::doit() {
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25715
diff changeset
   483
  CompileBroker::print_compile_queues(_out);
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25715
diff changeset
   484
}
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25715
diff changeset
   485
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25715
diff changeset
   486
void VM_PrintCodeList::doit() {
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25715
diff changeset
   487
  CodeCache::print_codelist(_out);
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25715
diff changeset
   488
}
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25715
diff changeset
   489
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25715
diff changeset
   490
void VM_PrintCodeCache::doit() {
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25715
diff changeset
   491
  CodeCache::print_layout(_out);
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25715
diff changeset
   492
}
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28163
diff changeset
   493
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28163
diff changeset
   494
#if INCLUDE_SERVICES
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28163
diff changeset
   495
void VM_PrintClassHierarchy::doit() {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28163
diff changeset
   496
  KlassHierarchy::print_class_hierarchy(_out, _print_interfaces, _print_subclasses, _classname);
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28163
diff changeset
   497
}
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28163
diff changeset
   498
#endif