src/hotspot/share/runtime/vmOperations.cpp
author dholmes
Mon, 06 May 2019 21:23:23 -0400
changeset 54729 f72402697b2f
parent 54669 ad45b3802d4e
child 54732 2d012a75d35c
permissions -rw-r--r--
8222534: VerifyBeforeExit is not honored when System.exit is called Reviewed-by: coleenp, rehn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53463
b2d1c3b0bd31 8213231: ThreadSnapshot::_threadObj can become stale
ehelin
parents: 52877
diff changeset
     2
 * Copyright (c) 1997, 2019, 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"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    29
#include "compiler/compileBroker.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29071
diff changeset
    30
#include "gc/shared/isGCActiveMark.hpp"
34262
43560e879d6d 8143157: Convert TraceVMOperation to Unified Logging
rprotacio
parents: 33451
diff changeset
    31
#include "logging/log.hpp"
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 42664
diff changeset
    32
#include "logging/logStream.hpp"
54729
f72402697b2f 8222534: VerifyBeforeExit is not honored when System.exit is called
dholmes
parents: 54669
diff changeset
    33
#include "logging/logConfiguration.hpp"
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28163
diff changeset
    34
#include "memory/heapInspection.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    35
#include "memory/resourceArea.hpp"
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    36
#include "oops/symbol.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    37
#include "runtime/arguments.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    38
#include "runtime/deoptimization.hpp"
49480
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49449
diff changeset
    39
#include "runtime/frame.inline.hpp"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49389
diff changeset
    40
#include "runtime/interfaceSupport.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    41
#include "runtime/sweeper.hpp"
14583
d70ee55535f4 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 10565
diff changeset
    42
#include "runtime/thread.inline.hpp"
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
    43
#include "runtime/threadSMR.inline.hpp"
52877
9e041366c764 8214850: Rename vm_operations.?pp files to vmOperations.?pp files
tschatzl
parents: 50946
diff changeset
    44
#include "runtime/vmOperations.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    45
#include "services/threadService.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
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;
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 42664
diff changeset
    61
  LogTarget(Debug, vmoperation) lt;
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 42664
diff changeset
    62
  if (lt.is_enabled()) {
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 42664
diff changeset
    63
    LogStream ls(lt);
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 42664
diff changeset
    64
    ls.print("begin ");
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 42664
diff changeset
    65
    print_on_error(&ls);
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 42664
diff changeset
    66
    ls.cr();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  doit();
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 42664
diff changeset
    69
  if (lt.is_enabled()) {
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 42664
diff changeset
    70
    LogStream ls(lt);
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 42664
diff changeset
    71
    ls.print("end ");
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 42664
diff changeset
    72
    print_on_error(&ls);
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 42664
diff changeset
    73
    ls.cr();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    77
const char* VM_Operation::mode_to_string(Mode mode) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    78
  switch(mode) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    79
    case _safepoint      : return "safepoint";
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    80
    case _no_safepoint   : return "no safepoint";
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    81
    case _concurrent     : return "concurrent";
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    82
    case _async_safepoint: return "async safepoint";
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    83
    default              : return "unknown";
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    84
  }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    85
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
// Called by fatal error handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
void VM_Operation::print_on_error(outputStream* st) const {
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 32401
diff changeset
    88
  st->print("VM_Operation (" PTR_FORMAT "): ", p2i(this));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  st->print("%s", name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 16680
diff changeset
    91
  const char* mode = mode_to_string(evaluation_mode());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  st->print(", mode: %s", mode);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  if (calling_thread()) {
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 32401
diff changeset
    95
    st->print(", requested by thread " PTR_FORMAT, p2i(calling_thread()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
void VM_ThreadStop::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  assert(SafepointSynchronize::is_at_safepoint(), "must be at a safepoint");
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   101
  ThreadsListHandle tlh;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  JavaThread* target = java_lang_Thread::thread(target_thread());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // Note that this now allows multiple ThreadDeath exceptions to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // thrown at a thread.
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   105
  if (target != NULL && (!EnableThreadSMRExtraValidityChecks || tlh.includes(target))) {
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   106
    // The target thread has run and has not exited yet.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    target->send_thread_stop(throwable());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
37289
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36322
diff changeset
   111
void VM_ClearICs::doit() {
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36322
diff changeset
   112
  if (_preserve_static_stubs) {
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36322
diff changeset
   113
    CodeCache::cleanup_inline_caches();
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36322
diff changeset
   114
  } else {
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36322
diff changeset
   115
    CodeCache::clear_inline_caches();
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36322
diff changeset
   116
  }
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36322
diff changeset
   117
}
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36322
diff changeset
   118
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
void VM_Deoptimize::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // 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
   121
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  DeoptimizationMarker dm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // Deoptimize all activations depending on marked nmethods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  Deoptimization::deoptimize_dependents();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
32401
cc58aeaec340 8075805: Crash while trying to release CompiledICHolder
thartmann
parents: 31620
diff changeset
   127
  // Make the dependent methods not entrant
cc58aeaec340 8075805: Crash while trying to release CompiledICHolder
thartmann
parents: 31620
diff changeset
   128
  CodeCache::make_marked_nmethods_not_entrant();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26587
diff changeset
   131
void VM_MarkActiveNMethods::doit() {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26587
diff changeset
   132
  NMethodSweeper::mark_active_nmethods();
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26587
diff changeset
   133
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32401
diff changeset
   135
VM_DeoptimizeFrame::VM_DeoptimizeFrame(JavaThread* thread, intptr_t* id, int reason) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  _thread = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  _id     = id;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32401
diff changeset
   138
  _reason = reason;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
void VM_DeoptimizeFrame::doit() {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32401
diff changeset
   143
  assert(_reason > Deoptimization::Reason_none && _reason < Deoptimization::Reason_LIMIT, "invalid deopt reason");
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32401
diff changeset
   144
  Deoptimization::deoptimize_frame_internal(_thread, _id, (Deoptimization::DeoptReason)_reason);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
void VM_DeoptimizeAll::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  DeoptimizationMarker dm;
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   152
  JavaThreadIteratorWithHandle jtiwh;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // deoptimize all java threads in the system
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  if (DeoptimizeALot) {
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   155
    for (; JavaThread *thread = jtiwh.next(); ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
      if (thread->has_last_Java_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
        thread->deoptimize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  } else if (DeoptimizeRandom) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    // Deoptimize some selected threads and frames
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    int tnum = os::random() & 0x3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
    int fnum =  os::random() & 0x3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    int tcount = 0;
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   166
    for (; JavaThread *thread = jtiwh.next(); ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
      if (thread->has_last_Java_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
        if (tcount++ == tnum)  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
        tcount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
          int fcount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
          // Deoptimize some selected frames.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
          // Biased llocking wants a updated register map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
          for(StackFrameStream fst(thread, UseBiasedLocking); !fst.is_done(); fst.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
            if (fst.current()->can_be_deoptimized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
              if (fcount++ == fnum) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
                fcount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
                Deoptimization::deoptimize(thread, *fst.current(), fst.register_map());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
void VM_ZombieAll::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  JavaThread *thread = (JavaThread *)calling_thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  assert(thread->is_Java_thread(), "must be a Java thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  thread->make_zombies();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
#endif // !PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
void VM_Verify::doit() {
16680
960505df90e7 8011343: Add new flag for verifying the heap during startup
johnc
parents: 14583
diff changeset
   197
  Universe::heap()->prepare_for_verify();
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34633
diff changeset
   198
  Universe::verify();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
bool VM_PrintThreads::doit_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // Get Heap_lock if concurrent locks will be dumped
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  if (_print_concurrent_locks) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    Heap_lock->lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
void VM_PrintThreads::doit() {
50785
d1b24f2ceca5 8200720: Print additional information in thread dump (times, allocated bytes etc.)
ghaug
parents: 50419
diff changeset
   210
  Threads::print_on(_out, true, false, _print_concurrent_locks, _print_extended_info);
1
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_PrintThreads::doit_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  if (_print_concurrent_locks) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    // Release Heap_lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    Heap_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
void VM_PrintJNI::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  JNIHandles::print_on(_out);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
47802
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   224
void VM_PrintMetadata::doit() {
49980
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   225
  MetaspaceUtils::print_report(_out, _scale, _flags);
47802
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   226
}
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   227
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
VM_FindDeadlocks::~VM_FindDeadlocks() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  if (_deadlocks != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    DeadlockCycle* cycle = _deadlocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    while (cycle != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
      DeadlockCycle* d = cycle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
      cycle = cycle->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
      delete d;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  }
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() {
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   240
  // Update the hazard ptr in the originating thread to the current
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   241
  // list of threads. This VM operation needs the current list of
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   242
  // threads for proper deadlock detection and those are the
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   243
  // JavaThreads we need to be protected when we return info to the
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   244
  // originating thread.
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   245
  _setter.set();
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   246
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   247
  _deadlocks = ThreadService::find_deadlocks_at_safepoint(_setter.list(), _concurrent_locks);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  if (_out != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    int num_deadlocks = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    for (DeadlockCycle* cycle = _deadlocks; cycle != NULL; cycle = cycle->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
      num_deadlocks++;
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   252
      cycle->print_on_with(_setter.list(), _out);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    if (num_deadlocks == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      _out->print_cr("\nFound 1 deadlock.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
      _out->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    } else if (num_deadlocks > 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
      _out->print_cr("\nFound %d deadlocks.\n", num_deadlocks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
      _out->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
    }
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
VM_ThreadDump::VM_ThreadDump(ThreadDumpResult* result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
                             int max_depth,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
                             bool with_locked_monitors,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
                             bool with_locked_synchronizers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  _result = result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  _num_threads = 0; // 0 indicates all threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  _threads = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  _result = result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  _max_depth = max_depth;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  _with_locked_monitors = with_locked_monitors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  _with_locked_synchronizers = with_locked_synchronizers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
VM_ThreadDump::VM_ThreadDump(ThreadDumpResult* result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
                             GrowableArray<instanceHandle>* threads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
                             int num_threads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
                             int max_depth,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
                             bool with_locked_monitors,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
                             bool with_locked_synchronizers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  _result = result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  _num_threads = num_threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  _threads = threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  _result = result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  _max_depth = max_depth;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  _with_locked_monitors = with_locked_monitors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  _with_locked_synchronizers = with_locked_synchronizers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
bool VM_ThreadDump::doit_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  if (_with_locked_synchronizers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    // Acquire Heap_lock to dump concurrent locks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
    Heap_lock->lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
void VM_ThreadDump::doit_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  if (_with_locked_synchronizers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
    // Release Heap_lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    Heap_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
void VM_ThreadDump::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   312
  // Set the hazard ptr in the originating thread to protect the
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   313
  // current list of threads. This VM operation needs the current list
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   314
  // of threads for a proper dump and those are the JavaThreads we need
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   315
  // to be protected when we return info to the originating thread.
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   316
  _result->set_t_list();
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   317
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  ConcurrentLocksDump concurrent_locks(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  if (_with_locked_synchronizers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
    concurrent_locks.dump_at_safepoint();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  if (_num_threads == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
    // Snapshot all live threads
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   325
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   326
    for (uint i = 0; i < _result->t_list()->length(); i++) {
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   327
      JavaThread* jt = _result->t_list()->thread_at(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
      if (jt->is_exiting() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
          jt->is_hidden_from_external_view())  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
        // skip terminating threads and hidden threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
      ThreadConcurrentLocks* tcl = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
      if (_with_locked_synchronizers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
        tcl = concurrent_locks.thread_concurrent_locks(jt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
      }
53463
b2d1c3b0bd31 8213231: ThreadSnapshot::_threadObj can become stale
ehelin
parents: 52877
diff changeset
   337
      snapshot_thread(jt, tcl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    // Snapshot threads in the given _threads array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
    // A dummy snapshot is created if a thread doesn't exist
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   342
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
    for (int i = 0; i < _num_threads; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
      instanceHandle th = _threads->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
      if (th() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
        // skip if the thread doesn't exist
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
        // Add a dummy snapshot
53463
b2d1c3b0bd31 8213231: ThreadSnapshot::_threadObj can become stale
ehelin
parents: 52877
diff changeset
   348
        _result->add_thread_snapshot();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
      // Dump thread stack only if the thread is alive and not exiting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
      // and not VM internal thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
      JavaThread* jt = java_lang_Thread::thread(th());
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   355
      if (jt != NULL && !_result->t_list()->includes(jt)) {
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   356
        // _threads[i] doesn't refer to a valid JavaThread; this check
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   357
        // is primarily for JVM_DumpThreads() which doesn't have a good
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   358
        // way to validate the _threads array.
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   359
        jt = NULL;
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   360
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
      if (jt == NULL || /* thread not alive */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
          jt->is_exiting() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
          jt->is_hidden_from_external_view())  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
        // add a NULL snapshot if skipped
53463
b2d1c3b0bd31 8213231: ThreadSnapshot::_threadObj can become stale
ehelin
parents: 52877
diff changeset
   365
        _result->add_thread_snapshot();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
      ThreadConcurrentLocks* tcl = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
      if (_with_locked_synchronizers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
        tcl = concurrent_locks.thread_concurrent_locks(jt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
      }
53463
b2d1c3b0bd31 8213231: ThreadSnapshot::_threadObj can become stale
ehelin
parents: 52877
diff changeset
   372
      snapshot_thread(jt, tcl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
53463
b2d1c3b0bd31 8213231: ThreadSnapshot::_threadObj can become stale
ehelin
parents: 52877
diff changeset
   377
void VM_ThreadDump::snapshot_thread(JavaThread* java_thread, ThreadConcurrentLocks* tcl) {
b2d1c3b0bd31 8213231: ThreadSnapshot::_threadObj can become stale
ehelin
parents: 52877
diff changeset
   378
  ThreadSnapshot* snapshot = _result->add_thread_snapshot(java_thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  snapshot->dump_stack_at_safepoint(_max_depth, _with_locked_monitors);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  snapshot->set_concurrent_locks(tcl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
volatile bool VM_Exit::_vm_exited = false;
49636
6d5bd76650df 8199813: SIGSEGV in ThreadsList::includes()
dcubed
parents: 49480
diff changeset
   384
Thread * volatile VM_Exit::_shutdown_thread = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
int VM_Exit::set_vm_exited() {
31620
53be635ad49c 8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents: 30764
diff changeset
   387
34633
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34262
diff changeset
   388
  Thread * thr_cur = Thread::current();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint already");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  int num_active = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  _shutdown_thread = thr_cur;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  _vm_exited = true;                                // global flag
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   396
  for (JavaThreadIteratorWithHandle jtiwh; JavaThread *thr = jtiwh.next(); ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
    if (thr!=thr_cur && thr->thread_state() == _thread_in_native) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
      ++num_active;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
      thr->set_terminated(JavaThread::_vm_exited);  // per-thread flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
    }
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   401
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  return num_active;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
int VM_Exit::wait_for_threads_in_native_to_block() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  // VM exits at safepoint. This function must be called at the final safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  // to wait for threads in _thread_in_native state to be quiescent.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint already");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
34633
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34262
diff changeset
   411
  Thread * thr_cur = Thread::current();
28163
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27420
diff changeset
   412
  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
   413
                Monitor::_safepoint_check_never);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  // Compiler threads need longer wait because they can access VM data directly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  // while in native. If they are active and some structures being used are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  // deleted by the shutdown sequence, they will crash. On the other hand, user
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  // threads must go through native=>Java/VM transitions first to access VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  // data, and they will be stopped during state transition. In theory, we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  // don't have to wait for user threads to be quiescent, but it's always
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  // better to terminate VM when current thread is the only active thread, so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  // wait for user threads too. Numbers are in 10 milliseconds.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  int max_wait_user_thread = 30;                  // at least 300 milliseconds
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  int max_wait_compiler_thread = 1000;            // at least 10 seconds
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  int max_wait = max_wait_compiler_thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  int attempts = 0;
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   429
  JavaThreadIteratorWithHandle jtiwh;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
    int num_active = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
    int num_active_compiler_thread = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   434
    jtiwh.rewind();
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47802
diff changeset
   435
    for (; JavaThread *thr = jtiwh.next(); ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
      if (thr!=thr_cur && thr->thread_state() == _thread_in_native) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
        num_active++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
        if (thr->is_Compiler_thread()) {
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54645
diff changeset
   439
#if INCLUDE_JVMCI
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54645
diff changeset
   440
          CompilerThread* ct = (CompilerThread*) thr;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54645
diff changeset
   441
          if (ct->compiler() == NULL || !ct->compiler()->is_jvmci() || !UseJVMCINativeLibrary) {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54645
diff changeset
   442
            num_active_compiler_thread++;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54645
diff changeset
   443
          } else {
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54645
diff changeset
   444
            // When using a compiler in a JVMCI shared library, it's possible
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54645
diff changeset
   445
            // for one compiler thread to grab a lock in the shared library,
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54645
diff changeset
   446
            // enter HotSpot and go to sleep on the shutdown safepoint. Another
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54645
diff changeset
   447
            // JVMCI shared library compiler thread can then attempt to grab the
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54645
diff changeset
   448
            // lock and thus never make progress.
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54645
diff changeset
   449
          }
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54645
diff changeset
   450
#else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
          num_active_compiler_thread++;
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54645
diff changeset
   452
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    if (num_active == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
       return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    } else if (attempts > max_wait) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
       return num_active;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    } else if (num_active_compiler_thread == 0 && attempts > max_wait_user_thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
       return num_active;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    attempts++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
54645
05aaccf7d558 8222988: Use MonitorLocker rather than MutexLocker when wait/notify used
coleenp
parents: 54623
diff changeset
   467
    MonitorLocker ml(&timer, Mutex::_no_safepoint_check_flag);
05aaccf7d558 8222988: Use MonitorLocker rather than MutexLocker when wait/notify used
coleenp
parents: 54623
diff changeset
   468
    ml.wait(10);
1
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::doit() {
54729
f72402697b2f 8222534: VerifyBeforeExit is not honored when System.exit is called
dholmes
parents: 54669
diff changeset
   473
f72402697b2f 8222534: VerifyBeforeExit is not honored when System.exit is called
dholmes
parents: 54669
diff changeset
   474
  if (VerifyBeforeExit) {
f72402697b2f 8222534: VerifyBeforeExit is not honored when System.exit is called
dholmes
parents: 54669
diff changeset
   475
    HandleMark hm(VMThread::vm_thread());
f72402697b2f 8222534: VerifyBeforeExit is not honored when System.exit is called
dholmes
parents: 54669
diff changeset
   476
    // Among other things, this ensures that Eden top is correct.
f72402697b2f 8222534: VerifyBeforeExit is not honored when System.exit is called
dholmes
parents: 54669
diff changeset
   477
    Universe::heap()->prepare_for_verify();
f72402697b2f 8222534: VerifyBeforeExit is not honored when System.exit is called
dholmes
parents: 54669
diff changeset
   478
    // Silent verification so as not to pollute normal output,
f72402697b2f 8222534: VerifyBeforeExit is not honored when System.exit is called
dholmes
parents: 54669
diff changeset
   479
    // unless we really asked for it.
f72402697b2f 8222534: VerifyBeforeExit is not honored when System.exit is called
dholmes
parents: 54669
diff changeset
   480
    Universe::verify();
f72402697b2f 8222534: VerifyBeforeExit is not honored when System.exit is called
dholmes
parents: 54669
diff changeset
   481
  }
f72402697b2f 8222534: VerifyBeforeExit is not honored when System.exit is called
dholmes
parents: 54669
diff changeset
   482
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  CompileBroker::set_should_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  // Wait for a short period for threads in native to block. Any thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  // still executing native code after the wait will be stopped at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  // native==>Java/VM barriers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  // Among 16276 JCK tests, 94% of them come here without any threads still
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  // running in native; the other 6% are quiescent within 250ms (Ultra 80).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  wait_for_threads_in_native_to_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  set_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
54729
f72402697b2f 8222534: VerifyBeforeExit is not honored when System.exit is called
dholmes
parents: 54669
diff changeset
   494
  // We'd like to call IdealGraphPrinter::clean_up() to finalize the
f72402697b2f 8222534: VerifyBeforeExit is not honored when System.exit is called
dholmes
parents: 54669
diff changeset
   495
  // XML logging, but we can't safely do that here. The logic to make
f72402697b2f 8222534: VerifyBeforeExit is not honored when System.exit is called
dholmes
parents: 54669
diff changeset
   496
  // XML termination logging safe is tied to the termination of the
f72402697b2f 8222534: VerifyBeforeExit is not honored when System.exit is called
dholmes
parents: 54669
diff changeset
   497
  // VMThread, and it doesn't terminate on this exit path. See 8222534.
f72402697b2f 8222534: VerifyBeforeExit is not honored when System.exit is called
dholmes
parents: 54669
diff changeset
   498
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  // cleanup globals resources before exiting. exit_globals() currently
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  // cleans up outputStream resources and PerfMemory resources.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  exit_globals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
54729
f72402697b2f 8222534: VerifyBeforeExit is not honored when System.exit is called
dholmes
parents: 54669
diff changeset
   503
  LogConfiguration::finalize();
f72402697b2f 8222534: VerifyBeforeExit is not honored when System.exit is called
dholmes
parents: 54669
diff changeset
   504
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  // Check for exit hook
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  exit_hook_t exit_hook = Arguments::exit_hook();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  if (exit_hook != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
    // exit hook should exit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
    exit_hook(_exit_code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
    // ... but if it didn't, we must do it here
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
    vm_direct_exit(_exit_code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    vm_direct_exit(_exit_code);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
void VM_Exit::wait_if_vm_exited() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  if (_vm_exited &&
34633
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 34262
diff changeset
   520
      Thread::current_or_null() != _shutdown_thread) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
    // _vm_exited is set at safepoint, and the Threads_lock is never released
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
    // we will block here until the process dies
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
    Threads_lock->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
}
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25715
diff changeset
   527
36322
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   528
void VM_PrintCompileQueue::doit() {
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   529
  CompileBroker::print_compile_queues(_out);
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   530
}
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   531
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28163
diff changeset
   532
#if INCLUDE_SERVICES
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28163
diff changeset
   533
void VM_PrintClassHierarchy::doit() {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28163
diff changeset
   534
  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
   535
}
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28163
diff changeset
   536
#endif