hotspot/src/share/vm/utilities/vmError.cpp
author tonyp
Tue, 08 Nov 2011 00:41:28 -0500
changeset 10997 0be4b3be7197
parent 10565 dc90c239f4ec
child 11483 4d3f4bca0019
permissions -rw-r--r--
7099849: G1: include heap region information in hs_err files Reviewed-by: johnc, brutisso, poonam
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
8119
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
     2
 * Copyright (c) 2003, 2011, 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: 5403
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5403
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: 5403
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: 7108
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    26
#include "compiler/compileBroker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    27
#include "gc_interface/collectedHeap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    28
#include "runtime/arguments.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    29
#include "runtime/frame.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    30
#include "runtime/init.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    31
#include "runtime/os.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    32
#include "runtime/thread.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    33
#include "runtime/vmThread.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    34
#include "runtime/vm_operations.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    35
#include "utilities/debug.hpp"
7447
32c42d627f41 7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents: 7397
diff changeset
    36
#include "utilities/decoder.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    37
#include "utilities/defaultStream.hpp"
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7901
diff changeset
    38
#include "utilities/errorReporter.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    39
#include "utilities/top.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    40
#include "utilities/vmError.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// List of environment variables that should be reported in error log file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
const char *env_list[] = {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  // All platforms
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  "JAVA_HOME", "JRE_HOME", "JAVA_TOOL_OPTIONS", "_JAVA_OPTIONS", "CLASSPATH",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  "JAVA_COMPILER", "PATH", "USERNAME",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 8476
diff changeset
    48
  // Env variables that are defined on Solaris/Linux/BSD
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  "LD_LIBRARY_PATH", "LD_PRELOAD", "SHELL", "DISPLAY",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  "HOSTTYPE", "OSTYPE", "ARCH", "MACHTYPE",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // defined on Linux
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  "LD_ASSUME_KERNEL", "_JAVA_SR_SIGNUM",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 8476
diff changeset
    55
  // defined on Darwin
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 8476
diff changeset
    56
  "DYLD_LIBRARY_PATH", "DYLD_FALLBACK_LIBRARY_PATH",
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 8476
diff changeset
    57
  "DYLD_FRAMEWORK_PATH", "DYLD_FALLBACK_FRAMEWORK_PATH",
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 8476
diff changeset
    58
  "DYLD_INSERT_LIBRARIES",
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 8476
diff changeset
    59
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // defined on Windows
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  "OS", "PROCESSOR_IDENTIFIER", "_ALT_JAVA_HOME_DIR",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  (const char *)0
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
// Fatal error handler for internal errors and crashes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
// The default behavior of fatal error handler is to print a brief message
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
// to standard out (defaultStream::output_fd()), then save detailed information
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
// into an error report file (hs_err_pid<pid>.log) and abort VM. If multiple
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
// threads are having troubles at the same time, only one error is reported.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
// The thread that is reporting error will abort VM when it is done, all other
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// threads are blocked forever inside report_and_die().
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
// Constructor for crashes
7719
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
    76
VMError::VMError(Thread* thread, unsigned int sig, address pc, void* siginfo, void* context) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    _thread = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    _id = sig;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    _pc   = pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    _siginfo = siginfo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    _context = context;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    _verbose = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    _current_step = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    _current_step_info = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
5403
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
    87
    _message = NULL;
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
    88
    _detail_msg = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    _filename = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    _lineno = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    _size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
// Constructor for internal errors
5403
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
    96
VMError::VMError(Thread* thread, const char* filename, int lineno,
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
    97
                 const char* message, const char * detail_msg)
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
    98
{
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
    99
  _thread = thread;
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   100
  _id = internal_error;     // Value that's not an OS exception/signal
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   101
  _filename = filename;
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   102
  _lineno = lineno;
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   103
  _message = message;
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   104
  _detail_msg = detail_msg;
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   105
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   106
  _verbose = false;
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   107
  _current_step = 0;
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   108
  _current_step_info = NULL;
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   109
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   110
  _pc = NULL;
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   111
  _siginfo = NULL;
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   112
  _context = NULL;
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   113
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   114
  _size = 0;
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   115
}
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   116
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   117
// Constructor for OOM errors
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   118
VMError::VMError(Thread* thread, const char* filename, int lineno, size_t size,
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   119
                 const char* message) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    _thread = thread;
5403
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   121
    _id = oom_error;     // Value that's not an OS exception/signal
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    _filename = filename;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    _lineno = lineno;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    _message = message;
5403
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   125
    _detail_msg = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    _verbose = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    _current_step = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    _current_step_info = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    _pc = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    _siginfo = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    _context = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    _size = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
// Constructor for non-fatal errors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
VMError::VMError(const char* message) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    _thread = NULL;
5403
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   142
    _id = internal_error;     // Value that's not an OS exception/signal
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    _filename = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    _lineno = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    _message = message;
5403
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   146
    _detail_msg = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    _verbose = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    _current_step = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    _current_step_info = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    _pc = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    _siginfo = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    _context = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    _size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
// -XX:OnError=<string>, where <string> can be a list of commands, separated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
// by ';'. "%p" is replaced by current process id (pid); "%%" is replaced by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
// a single "%". Some examples:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
// -XX:OnError="pmap %p"                // show memory map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
// -XX:OnError="gcore %p; dbx - %p"     // dump core and launch debugger
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
// -XX:OnError="cat hs_err_pid%p.log | mail my_email@sun.com"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
// -XX:OnError="kill -9 %p"             // ?#!@#
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
// A simple parser for -XX:OnError, usage:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
//  ptr = OnError;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
//  while ((cmd = next_OnError_command(buffer, sizeof(buffer), &ptr) != NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
//     ... ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
static char* next_OnError_command(char* buf, int buflen, const char** ptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  if (ptr == NULL || *ptr == NULL) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  const char* cmd = *ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // skip leading blanks or ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  while (*cmd == ' ' || *cmd == ';') cmd++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  if (*cmd == '\0') return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  const char * cmdend = cmd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  while (*cmdend != '\0' && *cmdend != ';') cmdend++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  Arguments::copy_expand_pid(cmd, cmdend - cmd, buf, buflen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  *ptr = (*cmdend == '\0' ? cmdend : cmdend + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  return buf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
static void print_bug_submit_message(outputStream *out, Thread *thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  if (out == NULL) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  out->print_raw_cr("# If you would like to submit a bug report, please visit:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  out->print_raw   ("#   ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  out->print_raw_cr(Arguments::java_vendor_url_bug());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // If the crash is in native code, encourage user to submit a bug to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  // provider of that code.
229
4fddba548751 6549844: Wording problems in "An unexpected error ..."
coleenp
parents: 1
diff changeset
   199
  if (thread && thread->is_Java_thread() &&
4fddba548751 6549844: Wording problems in "An unexpected error ..."
coleenp
parents: 1
diff changeset
   200
      !thread->is_hidden_from_external_view()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    JavaThread* jt = (JavaThread*)thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    if (jt->thread_state() == _thread_in_native) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
      out->print_cr("# The crash happened outside the Java Virtual Machine in native code.\n# See problematic frame for where to report the bug.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  out->print_raw_cr("#");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
8119
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   209
bool VMError::coredump_status;
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   210
char VMError::coredump_message[O_BUFLEN];
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   211
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   212
void VMError::report_coredump_status(const char* message, bool status) {
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   213
  coredump_status = status;
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   214
  strncpy(coredump_message, message, sizeof(coredump_message));
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   215
  coredump_message[sizeof(coredump_message)-1] = 0;
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   216
}
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   217
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
// Return a string to describe the error
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
char* VMError::error_string(char* buf, int buflen) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  char signame_buf[64];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  const char *signame = os::exception_name(_id, signame_buf, sizeof(signame_buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  if (signame) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    jio_snprintf(buf, buflen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
                 "%s (0x%x) at pc=" PTR_FORMAT ", pid=%d, tid=" UINTX_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
                 signame, _id, _pc,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
                 os::current_process_id(), os::current_thread_id());
5403
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   229
  } else if (_filename != NULL && _lineno > 0) {
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   230
    // skip directory names
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   231
    char separator = os::file_separator()[0];
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   232
    const char *p = strrchr(_filename, separator);
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   233
    int n = jio_snprintf(buf, buflen,
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   234
                         "Internal Error at %s:%d, pid=%d, tid=" UINTX_FORMAT,
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   235
                         p ? p + 1 : _filename, _lineno,
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   236
                         os::current_process_id(), os::current_thread_id());
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   237
    if (n >= 0 && n < buflen && _message) {
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   238
      if (_detail_msg) {
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   239
        jio_snprintf(buf + n, buflen - n, "%s%s: %s",
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   240
                     os::line_separator(), _message, _detail_msg);
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   241
      } else {
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   242
        jio_snprintf(buf + n, buflen - n, "%sError: %s",
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   243
                     os::line_separator(), _message);
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   244
      }
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   245
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  } else {
5403
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   247
    jio_snprintf(buf, buflen,
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   248
                 "Internal Error (0x%x), pid=%d, tid=" UINTX_FORMAT,
6b0dd9c75dde 6888954: argument formatting for assert() and friends
jcoomes
parents: 5340
diff changeset
   249
                 _id, os::current_process_id(), os::current_thread_id());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  return buf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
5340
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   255
void VMError::print_stack_trace(outputStream* st, JavaThread* jt,
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   256
                                char* buf, int buflen, bool verbose) {
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   257
#ifdef ZERO
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   258
  if (jt->zero_stack()->sp() && jt->top_zero_frame()) {
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   259
    // StackFrameStream uses the frame anchor, which may not have
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   260
    // been set up.  This can be done at any time in Zero, however,
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   261
    // so if it hasn't been set up then we just set it up now and
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   262
    // clear it again when we're done.
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   263
    bool has_last_Java_frame = jt->has_last_Java_frame();
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   264
    if (!has_last_Java_frame)
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   265
      jt->set_last_Java_frame();
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   266
    st->print("Java frames:");
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   267
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   268
    // If the top frame is a Shark frame and the frame anchor isn't
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   269
    // set up then it's possible that the information in the frame
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   270
    // is garbage: it could be from a previous decache, or it could
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   271
    // simply have never been written.  So we print a warning...
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   272
    StackFrameStream sfs(jt);
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   273
    if (!has_last_Java_frame && !sfs.is_done()) {
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   274
      if (sfs.current()->zeroframe()->is_shark_frame()) {
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   275
        st->print(" (TOP FRAME MAY BE JUNK)");
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   276
      }
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   277
    }
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   278
    st->cr();
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   279
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   280
    // Print the frames
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   281
    for(int i = 0; !sfs.is_done(); sfs.next(), i++) {
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   282
      sfs.current()->zero_print_on_error(i, st, buf, buflen);
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   283
      st->cr();
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   284
    }
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   285
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   286
    // Reset the frame anchor if necessary
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   287
    if (!has_last_Java_frame)
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   288
      jt->reset_last_Java_frame();
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   289
  }
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   290
#else
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   291
  if (jt->has_last_Java_frame()) {
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   292
    st->print_cr("Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)");
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   293
    for(StackFrameStream sfs(jt); !sfs.is_done(); sfs.next()) {
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   294
      sfs.current()->print_on_error(st, buf, buflen, verbose);
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   295
      st->cr();
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   296
    }
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   297
  }
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   298
#endif // ZERO
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   299
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
// This is the main function to report a fatal error. Only one thread can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
// call this function, so we don't need to worry about MT-safety. But it's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
// possible that the error handler itself may crash or die on an internal
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
// error, for example, when the stack/heap is badly damaged. We must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
// able to handle recursive errors that happen inside error handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
// Error reporting is done in several steps. If a crash or internal error
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
// occurred when reporting an error, the nested signal/exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
// can skip steps that are already (or partially) done. Error reporting will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
// continue from the next step. This allows us to retrieve and print
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
// information that may be unsafe to get after a fatal error. If it happens,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
// you may find nested report_and_die() frames when you look at the stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
// in a debugger.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
// In general, a hang in error handler is much worse than a crash or internal
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
// error, as it's harder to recover from a hang. Deadlock can happen if we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
// try to grab a lock that is already owned by current thread, or if the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
// owner is blocked forever (e.g. in os::infinite_sleep()). If possible, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
// error handler and all the functions it called should avoid grabbing any
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
// lock. An important thing to notice is that memory allocation needs a lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
// We should avoid using large stack allocated buffers. Many errors happen
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
// when stack space is already low. Making things even worse is that there
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
// could be nested report_and_die() calls on stack (see above). Only one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
// thread can report error, so large buffers are statically allocated in data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
// segment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
void VMError::report(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
# define BEGIN if (_current_step == 0) { _current_step = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
# define STEP(n, s) } if (_current_step < n) { _current_step = n; _current_step_info = s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
# define END }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  // don't allocate large buffer on stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  static char buf[O_BUFLEN];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  BEGIN
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
229
4fddba548751 6549844: Wording problems in "An unexpected error ..."
coleenp
parents: 1
diff changeset
   338
  STEP(10, "(printing fatal error message)")
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
7719
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   340
    st->print_cr("#");
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   341
    if (should_report_bug(_id)) {
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   342
      st->print_cr("# A fatal error has been detected by the Java Runtime Environment:");
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   343
    } else {
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   344
      st->print_cr("# There is insufficient memory for the Java "
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   345
                   "Runtime Environment to continue.");
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   346
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  STEP(15, "(printing type of error)")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
     switch(_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
       case oom_error:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
         if (_size) {
7719
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   353
           st->print("# Native memory allocation (malloc) failed to allocate ");
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   354
           jio_snprintf(buf, sizeof(buf), SIZE_FORMAT, _size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
           st->print(buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
           st->print(" bytes");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
           if (_message != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
             st->print(" for ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
             st->print(_message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
           }
7719
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   361
           st->cr();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
         } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
           if (_message != NULL)
7719
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   364
             st->print("# ");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
             st->print_cr(_message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
         }
7719
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   367
         // In error file give some solutions
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   368
         if (_verbose) {
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   369
           st->print_cr("# Possible reasons:");
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   370
           st->print_cr("#   The system is out of physical RAM or swap space");
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   371
           st->print_cr("#   In 32 bit mode, the process size limit was hit");
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   372
           st->print_cr("# Possible solutions:");
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   373
           st->print_cr("#   Reduce memory load on the system");
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   374
           st->print_cr("#   Increase physical memory or swap space");
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   375
           st->print_cr("#   Check if swap backing store is full");
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   376
           st->print_cr("#   Use 64 bit Java on a 64 bit OS");
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   377
           st->print_cr("#   Decrease Java heap size (-Xmx/-Xms)");
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   378
           st->print_cr("#   Decrease number of Java threads");
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   379
           st->print_cr("#   Decrease Java thread stack sizes (-Xss)");
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   380
           st->print_cr("#   Set larger code cache with -XX:ReservedCodeCacheSize=");
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   381
           st->print_cr("# This output file may be truncated or incomplete.");
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   382
         } else {
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   383
           return;  // that's enough for the screen
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   384
         }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
         break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
       case internal_error:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
       default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
         break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  STEP(20, "(printing exception/signal name)")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
     st->print_cr("#");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
     st->print("#  ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
     // Is it an OS exception/signal?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
     if (os::exception_name(_id, buf, sizeof(buf))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
       st->print("%s", buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
       st->print(" (0x%x)", _id);                // signal number
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
       st->print(" at pc=" PTR_FORMAT, _pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
     } else {
7719
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   401
       if (should_report_bug(_id)) {
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   402
         st->print("Internal Error");
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   403
       } else {
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   404
         st->print("Out of Memory Error");
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   405
       }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
       if (_filename != NULL && _lineno > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
#ifdef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
         // In product mode chop off pathname?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
         char separator = os::file_separator()[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
         const char *p = strrchr(_filename, separator);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
         const char *file = p ? p+1 : _filename;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
         const char *file = _filename;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
         size_t len = strlen(file);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
         size_t buflen = sizeof(buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
         strncpy(buf, file, buflen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
         if (len + 10 < buflen) {
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1887
diff changeset
   420
           sprintf(buf + len, ":%d", _lineno);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
         st->print(" (%s)", buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
       } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
         st->print(" (0x%x)", _id);
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
  STEP(30, "(printing current thread and pid)")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
     // process id, thread id
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
     st->print(", pid=%d", os::current_process_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
     st->print(", tid=" UINTX_FORMAT, os::current_thread_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
     st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  STEP(40, "(printing error message)")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
7719
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   437
     if (should_report_bug(_id)) {  // already printed the message.
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   438
       // error message
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   439
       if (_detail_msg) {
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   440
         st->print_cr("#  %s: %s", _message ? _message : "Error", _detail_msg);
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   441
       } else if (_message) {
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   442
         st->print_cr("#  Error: %s", _message);
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   443
       }
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   444
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  STEP(50, "(printing Java version string)")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
     // VM version
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
     st->print_cr("#");
1660
86be56b9ba46 6689685: Hotspot crash error message should include libraries version
coleenp
parents: 1500
diff changeset
   450
     JDK_Version::current().to_string(buf, sizeof(buf));
86be56b9ba46 6689685: Hotspot crash error message should include libraries version
coleenp
parents: 1500
diff changeset
   451
     st->print_cr("# JRE version: %s", buf);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 229
diff changeset
   452
     st->print_cr("# Java VM: %s (%s %s %s %s)",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
                   Abstract_VM_Version::vm_name(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
                   Abstract_VM_Version::vm_release(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
                   Abstract_VM_Version::vm_info_string(),
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 229
diff changeset
   456
                   Abstract_VM_Version::vm_platform_string(),
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 229
diff changeset
   457
                   UseCompressedOops ? "compressed oops" : ""
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
                 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  STEP(60, "(printing problematic frame)")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
     // Print current frame if we have a context (i.e. it's a crash)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
     if (_context) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
       st->print_cr("# Problematic frame:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
       st->print("# ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
       frame fr = os::fetch_frame_from_context(_context);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
       fr.print_on_error(st, buf, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
       st->print_cr("#");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
     }
8119
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   471
  STEP(63, "(printing core file information)")
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   472
    st->print("# ");
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   473
    if (coredump_status) {
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   474
      st->print("Core dump written. Default location: %s", coredump_message);
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   475
    } else {
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   476
      st->print("Failed to write core dump. %s", coredump_message);
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   477
    }
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   478
    st->print_cr("");
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   479
    st->print_cr("#");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  STEP(65, "(printing bug submit message)")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
7719
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   483
     if (should_report_bug(_id) && _verbose) {
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   484
       print_bug_submit_message(st, _thread);
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   485
     }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  STEP(70, "(printing thread)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
       st->print_cr("---------------  T H R E A D  ---------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  STEP(80, "(printing current thread)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
     // current thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
       if (_thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
         st->print("Current thread (" PTR_FORMAT "):  ", _thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
         _thread->print_on_error(st, buf, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
         st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
       } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
         st->print_cr("Current thread is native thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  STEP(90, "(printing siginfo)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
     // signal no, signal code, address that caused the fault
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
     if (_verbose && _siginfo) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
       os::print_siginfo(st, _siginfo);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  STEP(100, "(printing registers, top of stack, instructions near pc)")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
     // registers, top of stack, instructions near pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
     if (_verbose && _context) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
       os::print_context(st, _context);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
7108
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6184
diff changeset
   525
  STEP(105, "(printing register info)")
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6184
diff changeset
   526
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6184
diff changeset
   527
     // decode register contents if possible
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6184
diff changeset
   528
     if (_verbose && _context && Universe::is_fully_initialized()) {
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6184
diff changeset
   529
       os::print_register_info(st, _context);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6184
diff changeset
   530
       st->cr();
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6184
diff changeset
   531
     }
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6184
diff changeset
   532
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  STEP(110, "(printing stack bounds)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
       st->print("Stack: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
       address stack_top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
       size_t stack_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
       if (_thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
          stack_top = _thread->stack_base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
          stack_size = _thread->stack_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
       } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
          stack_top = os::current_stack_base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
          stack_size = os::current_stack_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
       address stack_bottom = stack_top - stack_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
       st->print("[" PTR_FORMAT "," PTR_FORMAT "]", stack_bottom, stack_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
       frame fr = _context ? os::fetch_frame_from_context(_context)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
                           : os::current_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
       if (fr.sp()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
         st->print(",  sp=" PTR_FORMAT, fr.sp());
6179
4846648c4b7b 6973308: Missing zero length check before repne scas in check_klass_subtype_slow_path()
kvn
parents: 5547
diff changeset
   557
         size_t free_stack_size = pointer_delta(fr.sp(), stack_bottom, 1024);
4846648c4b7b 6973308: Missing zero length check before repne scas in check_klass_subtype_slow_path()
kvn
parents: 5547
diff changeset
   558
         st->print(",  free space=" SIZE_FORMAT "k", free_stack_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  STEP(120, "(printing native stack)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
       frame fr = _context ? os::fetch_frame_from_context(_context)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
                           : os::current_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
       // see if it's a valid frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
       if (fr.pc()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
          st->print_cr("Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
7447
32c42d627f41 7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents: 7397
diff changeset
   574
          // initialize decoder to decode C frames
32c42d627f41 7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents: 7397
diff changeset
   575
          Decoder decoder;
32c42d627f41 7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents: 7397
diff changeset
   576
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
          int count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
          while (count++ < StackPrintLimit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
             fr.print_on_error(st, buf, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
             st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
             if (os::is_first_C_frame(&fr)) break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
             fr = os::get_sender_for_C_frame(&fr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
          if (count > StackPrintLimit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
             st->print_cr("...<more frames>...");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
          st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  STEP(130, "(printing Java stack)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
     if (_verbose && _thread && _thread->is_Java_thread()) {
5340
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   596
       print_stack_trace(st, (JavaThread*)_thread, buf, sizeof(buf));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
4489
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   599
  STEP(135, "(printing target Java thread stack)" )
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   600
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   601
     // printing Java thread stack trace if it is involved in GC crash
7108
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6184
diff changeset
   602
     if (_verbose && _thread && (_thread->is_Named_thread())) {
4489
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   603
       JavaThread*  jt = ((NamedThread *)_thread)->processed_thread();
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   604
       if (jt != NULL) {
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   605
         st->print_cr("JavaThread " PTR_FORMAT " (nid = " UINTX_FORMAT ") was being processed", jt, jt->osthread()->thread_id());
5340
b838d4165c92 6944503: Improved Zero crash dump
twisti
parents: 5237
diff changeset
   606
         print_stack_trace(st, jt, buf, sizeof(buf), true);
4489
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   607
       }
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   608
     }
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   609
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  STEP(140, "(printing VM operation)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
     if (_verbose && _thread && _thread->is_VM_thread()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
        VMThread* t = (VMThread*)_thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
        VM_Operation* op = t->vm_operation();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
        if (op) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
          op->print_on_error(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
          st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
          st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  STEP(150, "(printing current compile task)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
     if (_verbose && _thread && _thread->is_Compiler_thread()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
        CompilerThread* t = (CompilerThread*)_thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
        if (t->task()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
           st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
           st->print_cr("Current CompileTask:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
           t->task()->print_line_on_error(st, buf, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
           st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  STEP(160, "(printing process)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
       st->print_cr("---------------  P R O C E S S  ---------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  STEP(170, "(printing all threads)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
     // all threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
     if (_verbose && _thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
       Threads::print_on_error(st, _thread, buf, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  STEP(175, "(printing VM state)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
       // Safepoint state
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
       st->print("VM state:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
       if (SafepointSynchronize::is_synchronizing()) st->print("synchronizing");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
       else if (SafepointSynchronize::is_at_safepoint()) st->print("at safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
       else st->print("not at safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
       // Also see if error occurred during initialization or shutdown
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
       if (!Universe::is_fully_initialized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
         st->print(" (not fully initialized)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
       } else if (VM_Exit::vm_exited()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
         st->print(" (shutting down)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
       } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
         st->print(" (normal execution)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  STEP(180, "(printing owned locks on error)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
     // mutexes/monitors that currently have an owner
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
       print_owned_locks_on_error(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  STEP(190, "(printing heap information)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
     if (_verbose && Universe::is_fully_initialized()) {
10997
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10565
diff changeset
   683
       // Print heap information before vm abort. As we'd like as much
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10565
diff changeset
   684
       // information as possible in the report we ask for the
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10565
diff changeset
   685
       // extended (i.e., more detailed) version.
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10565
diff changeset
   686
       Universe::print_on(st, true /* extended */);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
7108
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6184
diff changeset
   690
  STEP(195, "(printing code cache information)" )
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6184
diff changeset
   691
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6184
diff changeset
   692
     if (_verbose && Universe::is_fully_initialized()) {
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6184
diff changeset
   693
       // print code cache information before vm abort
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6184
diff changeset
   694
       CodeCache::print_bounds(st);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6184
diff changeset
   695
       st->cr();
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6184
diff changeset
   696
     }
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6184
diff changeset
   697
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  STEP(200, "(printing dynamic libraries)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
       // dynamic libraries, or memory map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
       os::print_dll_info(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  STEP(210, "(printing VM options)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
       // VM options
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
       Arguments::print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  STEP(220, "(printing environment variables)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
       os::print_environment_variables(st, env_list, buf, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  STEP(225, "(printing signal handlers)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
       os::print_signal_handlers(st, buf, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  STEP(230, "" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
       st->print_cr("---------------  S Y S T E M  ---------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  STEP(240, "(printing OS information)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
       os::print_os_info(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  STEP(250, "(printing CPU info)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
       os::print_cpu_info(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  STEP(260, "(printing memory info)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
       os::print_memory_info(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  STEP(270, "(printing internal vm info)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
       st->print_cr("vm_info: %s", Abstract_VM_Version::internal_vm_info_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  STEP(280, "(printing date and time)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
       os::print_date_and_time(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
# undef BEGIN
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
# undef STEP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
# undef END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   777
VMError* volatile VMError::first_error = NULL;
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   778
volatile jlong VMError::first_error_tid = -1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
void VMError::report_and_die() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  // Don't allocate large buffer on stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  static char buffer[O_BUFLEN];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
  // An error could happen before tty is initialized or after it has been
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  // destroyed. Here we use a very simple unbuffered fdStream for printing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
  // Only out.print_raw() and out.print_raw_cr() should be used, as other
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
  // printing methods need to allocate large buffer on stack. To format a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
  // string, use jio_snprintf() with a static buffer or use staticBufferStream.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  static fdStream out(defaultStream::output_fd());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  // How many errors occurred in error handler when reporting first_error.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  static int recursive_error_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
  // We will first print a brief message to standard out (verbose = false),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  // then save detailed information in log file (verbose = true).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  static bool out_done = false;         // done printing to standard out
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  static bool log_done = false;         // done saving error log
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7901
diff changeset
   798
  static bool transmit_report_done = false; // done error reporting
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
  static fdStream log;                  // error log
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
  if (SuppressFatalErrorMessage) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
      os::abort();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
  jlong mytid = os::current_thread_id();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  if (first_error == NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
      Atomic::cmpxchg_ptr(this, &first_error, NULL) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
    // first time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
    first_error_tid = mytid;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
    set_error_reported();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
8476
7e34c2d4cf9b 7022037: Pause when exiting if debugger is attached on windows
sla
parents: 8119
diff changeset
   812
    if (ShowMessageBoxOnError || PauseAtExit) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
      show_message_box(buffer, sizeof(buffer));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
      // User has asked JVM to abort. Reset ShowMessageBoxOnError so the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
      // WatcherThread can kill JVM if the error handler hangs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
      ShowMessageBoxOnError = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
8119
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   820
    // Write a minidump on Windows, check core dump limits on Linux/Solaris
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   821
    os::check_or_create_dump(_siginfo, _context, buffer, sizeof(buffer));
81eef1b06988 7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents: 8114
diff changeset
   822
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
    // reset signal handlers or exception filter; make sure recursive crashes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
    // are handled properly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
    reset_signal_handlers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  } else {
1887
0ed88ac17540 4997835: RFE: crash dump will only be created when running w/ -XX:+ShowMessageBoxOnError
coleenp
parents: 1660
diff changeset
   828
    // If UseOsErrorReporting we call this for each level of the call stack
0ed88ac17540 4997835: RFE: crash dump will only be created when running w/ -XX:+ShowMessageBoxOnError
coleenp
parents: 1660
diff changeset
   829
    // while searching for the exception handler.  Only the first level needs
0ed88ac17540 4997835: RFE: crash dump will only be created when running w/ -XX:+ShowMessageBoxOnError
coleenp
parents: 1660
diff changeset
   830
    // to be reported.
0ed88ac17540 4997835: RFE: crash dump will only be created when running w/ -XX:+ShowMessageBoxOnError
coleenp
parents: 1660
diff changeset
   831
    if (UseOSErrorReporting && log_done) return;
0ed88ac17540 4997835: RFE: crash dump will only be created when running w/ -XX:+ShowMessageBoxOnError
coleenp
parents: 1660
diff changeset
   832
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
    // This is not the first error, see if it happened in a different thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
    // or in the same thread during error reporting.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
    if (first_error_tid != mytid) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
      jio_snprintf(buffer, sizeof(buffer),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
                   "[thread " INT64_FORMAT " also had an error]",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
                   mytid);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
      out.print_raw_cr(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
      // error reporting is not MT-safe, block current thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
      os::infinite_sleep();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
      if (recursive_error_count++ > 30) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
        out.print_raw_cr("[Too many errors, abort]");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
        os::die();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
      jio_snprintf(buffer, sizeof(buffer),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
                   "[error occurred during error reporting %s, id 0x%x]",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
                   first_error ? first_error->_current_step_info : "",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
                   _id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
      if (log.is_open()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
        log.cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
        log.print_raw_cr(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
        log.cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
        out.cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
        out.print_raw_cr(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
        out.cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
  // print to screen
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
  if (!out_done) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
    first_error->_verbose = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
    staticBufferStream sbs(buffer, sizeof(buffer), &out);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
    first_error->report(&sbs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
    out_done = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
    first_error->_current_step = 0;         // reset current_step
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
    first_error->_current_step_info = "";   // reset current_step string
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
  // print to error log file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
  if (!log_done) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
    first_error->_verbose = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
    // see if log file is already open
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
    if (!log.is_open()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
      // open log file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
      int fd = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
      if (ErrorFile != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
        bool copy_ok =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
          Arguments::copy_expand_pid(ErrorFile, strlen(ErrorFile), buffer, sizeof(buffer));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
        if (copy_ok) {
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7901
diff changeset
   892
          fd = open(buffer, O_RDWR | O_CREAT | O_TRUNC, 0666);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
      if (fd == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
        const char *cwd = os::get_current_directory(buffer, sizeof(buffer));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
        size_t len = strlen(cwd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
        // either user didn't specify, or the user's location failed,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
        // so use the default name in the current directory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
        jio_snprintf(&buffer[len], sizeof(buffer)-len, "%shs_err_pid%u.log",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
                     os::file_separator(), os::current_process_id());
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7901
diff changeset
   903
        fd = open(buffer, O_RDWR | O_CREAT | O_TRUNC, 0666);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
      if (fd == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
        const char * tmpdir = os::get_temp_directory();
7901
ea3d83447861 7009828: Fix for 6938627 breaks visualvm monitoring when -Djava.io.tmpdir is defined
coleenp
parents: 7719
diff changeset
   908
        // try temp directory if it exists.
ea3d83447861 7009828: Fix for 6938627 breaks visualvm monitoring when -Djava.io.tmpdir is defined
coleenp
parents: 7719
diff changeset
   909
        if (tmpdir != NULL && tmpdir[0] != '\0') {
ea3d83447861 7009828: Fix for 6938627 breaks visualvm monitoring when -Djava.io.tmpdir is defined
coleenp
parents: 7719
diff changeset
   910
          jio_snprintf(buffer, sizeof(buffer), "%s%shs_err_pid%u.log",
ea3d83447861 7009828: Fix for 6938627 breaks visualvm monitoring when -Djava.io.tmpdir is defined
coleenp
parents: 7719
diff changeset
   911
                       tmpdir, os::file_separator(), os::current_process_id());
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7901
diff changeset
   912
          fd = open(buffer, O_RDWR | O_CREAT | O_TRUNC, 0666);
7901
ea3d83447861 7009828: Fix for 6938627 breaks visualvm monitoring when -Djava.io.tmpdir is defined
coleenp
parents: 7719
diff changeset
   913
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
      if (fd != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
        out.print_raw("# An error report file with more information is saved as:\n# ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
        out.print_raw_cr(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
        os::set_error_file(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
        log.set_fd(fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
        out.print_raw_cr("# Can not save log file, dump to screen..");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
        log.set_fd(defaultStream::output_fd());
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7901
diff changeset
   925
        /* Error reporting currently needs dumpfile.
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7901
diff changeset
   926
         * Maybe implement direct streaming in the future.*/
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7901
diff changeset
   927
        transmit_report_done = true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
    staticBufferStream sbs(buffer, O_BUFLEN, &log);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
    first_error->report(&sbs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
    first_error->_current_step = 0;         // reset current_step
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
    first_error->_current_step_info = "";   // reset current_step string
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7901
diff changeset
   936
    // Run error reporting to determine whether or not to report the crash.
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7901
diff changeset
   937
    if (!transmit_report_done && should_report_bug(first_error->_id)) {
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7901
diff changeset
   938
      transmit_report_done = true;
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7901
diff changeset
   939
      FILE* hs_err = ::fdopen(log.fd(), "r");
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7901
diff changeset
   940
      if (NULL != hs_err) {
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7901
diff changeset
   941
        ErrorReporter er;
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7901
diff changeset
   942
        er.call(hs_err, buffer, O_BUFLEN);
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7901
diff changeset
   943
      }
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7901
diff changeset
   944
    }
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7901
diff changeset
   945
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
    if (log.fd() != defaultStream::output_fd()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
      close(log.fd());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
    log.set_fd(-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
    log_done = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  static bool skip_OnError = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  if (!skip_OnError && OnError && OnError[0]) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
    skip_OnError = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
    out.print_raw_cr("#");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
    out.print_raw   ("# -XX:OnError=\"");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
    out.print_raw   (OnError);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
    out.print_raw_cr("\"");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
    char* cmd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
    const char* ptr = OnError;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
    while ((cmd = next_OnError_command(buffer, sizeof(buffer), &ptr)) != NULL){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
      out.print_raw   ("#   Executing ");
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 8476
diff changeset
   968
#if defined(LINUX) || defined(_ALLBSD_SOURCE)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
      out.print_raw   ("/bin/sh -c ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
#elif defined(SOLARIS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
      out.print_raw   ("/usr/bin/sh -c ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
      out.print_raw   ("\"");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
      out.print_raw   (cmd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
      out.print_raw_cr("\" ...");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
      os::fork_and_exec(cmd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
    // done with OnError
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
    OnError = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
7719
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   984
  static bool skip_bug_url = !should_report_bug(first_error->_id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
  if (!skip_bug_url) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
    skip_bug_url = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
    out.print_raw_cr("#");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
    print_bug_submit_message(&out, _thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
  if (!UseOSErrorReporting) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
    // os::abort() will call abort hooks, try it first.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
    static bool skip_os_abort = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
    if (!skip_os_abort) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
      skip_os_abort = true;
7719
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   997
      bool dump_core = should_report_bug(first_error->_id);
ef138e2849eb 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 7447
diff changeset
   998
      os::abort(dump_core);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
    // if os::abort() doesn't abort, try os::die();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
    os::die();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
 * OnOutOfMemoryError scripts/commands executed while VM is a safepoint - this
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
 * ensures utilities such as jmap can observe the process is a consistent state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
class VM_ReportJavaOutOfMemory : public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
  VMError *_err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
  VM_ReportJavaOutOfMemory(VMError *err) { _err = err; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
  VMOp_Type type() const                 { return VMOp_ReportJavaOutOfMemory; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
void VM_ReportJavaOutOfMemory::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
  // Don't allocate large buffer on stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
  static char buffer[O_BUFLEN];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
  tty->print_cr("#");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
  tty->print_cr("# java.lang.OutOfMemoryError: %s", _err->message());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
  tty->print_cr("# -XX:OnOutOfMemoryError=\"%s\"", OnOutOfMemoryError);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
  // make heap parsability
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  Universe::heap()->ensure_parsability(false);  // no need to retire TLABs
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
  char* cmd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
  const char* ptr = OnOutOfMemoryError;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
  while ((cmd = next_OnError_command(buffer, sizeof(buffer), &ptr)) != NULL){
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
    tty->print("#   Executing ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
#if defined(LINUX)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
    tty->print  ("/bin/sh -c ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
#elif defined(SOLARIS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
    tty->print  ("/usr/bin/sh -c ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
    tty->print_cr("\"%s\"...", cmd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
    os::fork_and_exec(cmd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
void VMError::report_java_out_of_memory() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
  if (OnOutOfMemoryError && OnOutOfMemoryError[0]) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
    MutexLocker ml(Heap_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
    VM_ReportJavaOutOfMemory op(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
    VMThread::execute(&op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
}