hotspot/src/share/vm/utilities/vmError.cpp
author coleenp
Wed, 31 Mar 2010 16:51:18 -0700
changeset 5237 aab592fd4f44
parent 4489 514173c9a0c2
child 5340 b838d4165c92
permissions -rw-r--r--
6938627: Make temporary directory use property java.io.tmpdir when specified Summary: Get java.io.tmpdir property in os::get_temp_directory() and call this instead of harcoding "/tmp". Don't assume trailing file_separator either. Reviewed-by: dholmes, kamg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1887
diff changeset
     2
 * Copyright 2003-2009 Sun Microsystems, Inc.  All Rights Reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_vmError.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// List of environment variables that should be reported in error log file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
const char *env_list[] = {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  // All platforms
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  "JAVA_HOME", "JRE_HOME", "JAVA_TOOL_OPTIONS", "_JAVA_OPTIONS", "CLASSPATH",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  "JAVA_COMPILER", "PATH", "USERNAME",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  // Env variables that are defined on Solaris/Linux
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  "LD_LIBRARY_PATH", "LD_PRELOAD", "SHELL", "DISPLAY",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  "HOSTTYPE", "OSTYPE", "ARCH", "MACHTYPE",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  // defined on Linux
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  "LD_ASSUME_KERNEL", "_JAVA_SR_SIGNUM",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  // defined on Windows
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  "OS", "PROCESSOR_IDENTIFIER", "_ALT_JAVA_HOME_DIR",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  (const char *)0
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// Fatal error handler for internal errors and crashes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// The default behavior of fatal error handler is to print a brief message
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// to standard out (defaultStream::output_fd()), then save detailed information
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// into an error report file (hs_err_pid<pid>.log) and abort VM. If multiple
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// threads are having troubles at the same time, only one error is reported.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// The thread that is reporting error will abort VM when it is done, all other
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// threads are blocked forever inside report_and_die().
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// Constructor for crashes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
VMError::VMError(Thread* thread, int sig, address pc, void* siginfo, void* context) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    _thread = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    _id = sig;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    _pc   = pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    _siginfo = siginfo;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    _context = context;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    _verbose = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    _current_step = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    _current_step_info = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    _message = "";
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    _filename = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    _lineno = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    _size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
// Constructor for internal errors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
VMError::VMError(Thread* thread, const char* message, const char* filename, int lineno) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    _thread = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    _id = internal_error;     // set it to a value that's not an OS exception/signal
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    _filename = filename;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    _lineno = lineno;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    _message = message;
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    _pc = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    _siginfo = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    _context = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    _size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
// Constructor for OOM errors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
VMError::VMError(Thread* thread, size_t size, const char* message, const char* filename, int lineno) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    _thread = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    _id = oom_error;     // set it to a value that's not an OS exception/signal
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    _filename = filename;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    _lineno = lineno;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    _message = message;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    _verbose = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    _current_step = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    _current_step_info = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    _pc = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    _siginfo = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    _context = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    _size = size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
// Constructor for non-fatal errors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
VMError::VMError(const char* message) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    _thread = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    _id = internal_error;     // set it to a value that's not an OS exception/signal
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    _filename = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    _lineno = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    _message = message;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    _verbose = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    _current_step = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    _current_step_info = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    _pc = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    _siginfo = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    _context = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    _size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
// -XX:OnError=<string>, where <string> can be a list of commands, separated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
// by ';'. "%p" is replaced by current process id (pid); "%%" is replaced by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
// a single "%". Some examples:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
// -XX:OnError="pmap %p"                // show memory map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
// -XX:OnError="gcore %p; dbx - %p"     // dump core and launch debugger
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
// -XX:OnError="cat hs_err_pid%p.log | mail my_email@sun.com"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
// -XX:OnError="kill -9 %p"             // ?#!@#
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
// A simple parser for -XX:OnError, usage:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
//  ptr = OnError;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
//  while ((cmd = next_OnError_command(buffer, sizeof(buffer), &ptr) != NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
//     ... ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
static char* next_OnError_command(char* buf, int buflen, const char** ptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  if (ptr == NULL || *ptr == NULL) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  const char* cmd = *ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // skip leading blanks or ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  while (*cmd == ' ' || *cmd == ';') cmd++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  if (*cmd == '\0') return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  const char * cmdend = cmd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  while (*cmdend != '\0' && *cmdend != ';') cmdend++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  Arguments::copy_expand_pid(cmd, cmdend - cmd, buf, buflen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  *ptr = (*cmdend == '\0' ? cmdend : cmdend + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  return buf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
static void print_bug_submit_message(outputStream *out, Thread *thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  if (out == NULL) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  out->print_raw_cr("# If you would like to submit a bug report, please visit:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  out->print_raw   ("#   ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  out->print_raw_cr(Arguments::java_vendor_url_bug());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // If the crash is in native code, encourage user to submit a bug to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // provider of that code.
229
4fddba548751 6549844: Wording problems in "An unexpected error ..."
coleenp
parents: 1
diff changeset
   173
  if (thread && thread->is_Java_thread() &&
4fddba548751 6549844: Wording problems in "An unexpected error ..."
coleenp
parents: 1
diff changeset
   174
      !thread->is_hidden_from_external_view()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    JavaThread* jt = (JavaThread*)thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    if (jt->thread_state() == _thread_in_native) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
      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
   178
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  out->print_raw_cr("#");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
// Return a string to describe the error
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
char* VMError::error_string(char* buf, int buflen) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  char signame_buf[64];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  const char *signame = os::exception_name(_id, signame_buf, sizeof(signame_buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  if (signame) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    jio_snprintf(buf, buflen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
                 "%s (0x%x) at pc=" PTR_FORMAT ", pid=%d, tid=" UINTX_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
                 signame, _id, _pc,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
                 os::current_process_id(), os::current_thread_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    if (_filename != NULL && _lineno > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
      // skip directory names
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
      char separator = os::file_separator()[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
      const char *p = strrchr(_filename, separator);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
      jio_snprintf(buf, buflen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
        "Internal Error at %s:%d, pid=%d, tid=" UINTX_FORMAT " \nError: %s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
        p ? p + 1 : _filename, _lineno,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
        os::current_process_id(), os::current_thread_id(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
        _message ? _message : "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
      jio_snprintf(buf, buflen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
        "Internal Error (0x%x), pid=%d, tid=" UINTX_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
        _id, os::current_process_id(), os::current_thread_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  return buf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
// This is the main function to report a fatal error. Only one thread can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
// call this function, so we don't need to worry about MT-safety. But it's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
// possible that the error handler itself may crash or die on an internal
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
// error, for example, when the stack/heap is badly damaged. We must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
// able to handle recursive errors that happen inside error handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
// Error reporting is done in several steps. If a crash or internal error
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
// occurred when reporting an error, the nested signal/exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
// can skip steps that are already (or partially) done. Error reporting will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
// continue from the next step. This allows us to retrieve and print
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
// information that may be unsafe to get after a fatal error. If it happens,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
// you may find nested report_and_die() frames when you look at the stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
// in a debugger.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
// In general, a hang in error handler is much worse than a crash or internal
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
// error, as it's harder to recover from a hang. Deadlock can happen if we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
// try to grab a lock that is already owned by current thread, or if the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
// owner is blocked forever (e.g. in os::infinite_sleep()). If possible, the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
// error handler and all the functions it called should avoid grabbing any
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
// lock. An important thing to notice is that memory allocation needs a lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
// We should avoid using large stack allocated buffers. Many errors happen
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
// when stack space is already low. Making things even worse is that there
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
// could be nested report_and_die() calls on stack (see above). Only one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
// thread can report error, so large buffers are statically allocated in data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
// segment.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
void VMError::report(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
# define BEGIN if (_current_step == 0) { _current_step = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
# define STEP(n, s) } if (_current_step < n) { _current_step = n; _current_step_info = s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
# define END }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  // don't allocate large buffer on stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  static char buf[O_BUFLEN];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  BEGIN
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
229
4fddba548751 6549844: Wording problems in "An unexpected error ..."
coleenp
parents: 1
diff changeset
   253
  STEP(10, "(printing fatal error message)")
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
     st->print_cr("#");
229
4fddba548751 6549844: Wording problems in "An unexpected error ..."
coleenp
parents: 1
diff changeset
   256
     st->print_cr("# A fatal error has been detected by the Java Runtime Environment:");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  STEP(15, "(printing type of error)")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
     switch(_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
       case oom_error:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
         st->print_cr("#");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
         st->print("# java.lang.OutOfMemoryError: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
         if (_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
           st->print("requested ");
1500
bea9a90f3e8f 6462850: generate biased locking code in C2 ideal graph
kvn
parents: 670
diff changeset
   266
           sprintf(buf,SIZE_FORMAT,_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
           st->print(buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
           st->print(" bytes");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
           if (_message != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
             st->print(" for ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
             st->print(_message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
           }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
           st->print_cr(". Out of swap space?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
         } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
           if (_message != NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
             st->print_cr(_message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
         break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
       case internal_error:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
       default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
         break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  STEP(20, "(printing exception/signal name)")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
     st->print_cr("#");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
     st->print("#  ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
     // Is it an OS exception/signal?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
     if (os::exception_name(_id, buf, sizeof(buf))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
       st->print("%s", buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
       st->print(" (0x%x)", _id);                // signal number
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
       st->print(" at pc=" PTR_FORMAT, _pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
     } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
       st->print("Internal Error");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
       if (_filename != NULL && _lineno > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
#ifdef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
         // In product mode chop off pathname?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
         char separator = os::file_separator()[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
         const char *p = strrchr(_filename, separator);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
         const char *file = p ? p+1 : _filename;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
         const char *file = _filename;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
         size_t len = strlen(file);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
         size_t buflen = sizeof(buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
         strncpy(buf, file, buflen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
         if (len + 10 < buflen) {
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1887
diff changeset
   309
           sprintf(buf + len, ":%d", _lineno);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
         st->print(" (%s)", buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
       } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
         st->print(" (0x%x)", _id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  STEP(30, "(printing current thread and pid)")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
     // process id, thread id
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
     st->print(", pid=%d", os::current_process_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
     st->print(", tid=" UINTX_FORMAT, os::current_thread_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
     st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  STEP(40, "(printing error message)")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
     // error message
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
     if (_message && _message[0] != '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
       st->print_cr("#  Error: %s", _message);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  STEP(50, "(printing Java version string)")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
     // VM version
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
     st->print_cr("#");
1660
86be56b9ba46 6689685: Hotspot crash error message should include libraries version
coleenp
parents: 1500
diff changeset
   335
     JDK_Version::current().to_string(buf, sizeof(buf));
86be56b9ba46 6689685: Hotspot crash error message should include libraries version
coleenp
parents: 1500
diff changeset
   336
     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
   337
     st->print_cr("# Java VM: %s (%s %s %s %s)",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
                   Abstract_VM_Version::vm_name(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
                   Abstract_VM_Version::vm_release(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
                   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
   341
                   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
   342
                   UseCompressedOops ? "compressed oops" : ""
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
                 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  STEP(60, "(printing problematic frame)")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
     // Print current frame if we have a context (i.e. it's a crash)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
     if (_context) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
       st->print_cr("# Problematic frame:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
       st->print("# ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
       frame fr = os::fetch_frame_from_context(_context);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
       fr.print_on_error(st, buf, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
       st->print_cr("#");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  STEP(65, "(printing bug submit message)")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
     if (_verbose) print_bug_submit_message(st, _thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  STEP(70, "(printing thread)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
       st->print_cr("---------------  T H R E A D  ---------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  STEP(80, "(printing current thread)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
     // current thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
       if (_thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
         st->print("Current thread (" PTR_FORMAT "):  ", _thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
         _thread->print_on_error(st, buf, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
         st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
       } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
         st->print_cr("Current thread is native thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  STEP(90, "(printing siginfo)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
     // signal no, signal code, address that caused the fault
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
     if (_verbose && _siginfo) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
       os::print_siginfo(st, _siginfo);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
       st->cr();
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(100, "(printing registers, top of stack, instructions near pc)")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
     // registers, top of stack, instructions near pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
     if (_verbose && _context) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
       os::print_context(st, _context);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  STEP(110, "(printing stack bounds)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
       st->print("Stack: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
       address stack_top;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
       size_t stack_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
       if (_thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
          stack_top = _thread->stack_base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
          stack_size = _thread->stack_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
       } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
          stack_top = os::current_stack_base();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
          stack_size = os::current_stack_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
       address stack_bottom = stack_top - stack_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
       st->print("[" PTR_FORMAT "," PTR_FORMAT "]", stack_bottom, stack_top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
       frame fr = _context ? os::fetch_frame_from_context(_context)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
                           : os::current_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
       if (fr.sp()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
         st->print(",  sp=" PTR_FORMAT, fr.sp());
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1887
diff changeset
   423
         st->print(",  free space=%" INTPTR_FORMAT "k",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
                     ((intptr_t)fr.sp() - (intptr_t)stack_bottom) >> 10);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  STEP(120, "(printing native stack)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
       frame fr = _context ? os::fetch_frame_from_context(_context)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
                           : os::current_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
       // see if it's a valid frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
       if (fr.pc()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
          st->print_cr("Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
          int count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
          while (count++ < StackPrintLimit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
             fr.print_on_error(st, buf, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
             st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
             if (os::is_first_C_frame(&fr)) break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
             fr = os::get_sender_for_C_frame(&fr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
          if (count > StackPrintLimit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
             st->print_cr("...<more frames>...");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
          st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  STEP(130, "(printing Java stack)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
     if (_verbose && _thread && _thread->is_Java_thread()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
       JavaThread* jt = (JavaThread*)_thread;
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   461
#ifdef ZERO
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   462
       if (jt->zero_stack()->sp() && jt->top_zero_frame()) {
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   463
         // StackFrameStream uses the frame anchor, which may not have
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   464
         // been set up.  This can be done at any time in Zero, however,
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   465
         // so if it hasn't been set up then we just set it up now and
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   466
         // clear it again when we're done.
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   467
         bool has_last_Java_frame = jt->has_last_Java_frame();
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   468
         if (!has_last_Java_frame)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   469
           jt->set_last_Java_frame();
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   470
         st->print("Java frames:");
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   471
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   472
         // If the top frame is a Shark frame and the frame anchor isn't
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   473
         // set up then it's possible that the information in the frame
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   474
         // is garbage: it could be from a previous decache, or it could
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   475
         // simply have never been written.  So we print a warning...
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   476
         StackFrameStream sfs(jt);
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   477
         if (!has_last_Java_frame && !sfs.is_done()) {
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   478
           if (sfs.current()->zeroframe()->is_shark_frame()) {
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   479
             st->print(" (TOP FRAME MAY BE JUNK)");
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   480
           }
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   481
         }
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   482
         st->cr();
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   483
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   484
         // Print the frames
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   485
         for(int i = 0; !sfs.is_done(); sfs.next(), i++) {
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   486
           sfs.current()->zero_print_on_error(i, st, buf, sizeof(buf));
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   487
           st->cr();
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   488
         }
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   489
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   490
         // Reset the frame anchor if necessary
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   491
         if (!has_last_Java_frame)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   492
           jt->reset_last_Java_frame();
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   493
       }
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   494
#else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
       if (jt->has_last_Java_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
         st->print_cr("Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
         for(StackFrameStream sfs(jt); !sfs.is_done(); sfs.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
           sfs.current()->print_on_error(st, buf, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
           st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
       }
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2154
diff changeset
   502
#endif // ZERO
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
4489
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   505
  STEP(135, "(printing target Java thread stack)" )
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   506
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   507
     // printing Java thread stack trace if it is involved in GC crash
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   508
     if (_verbose && (_thread->is_Named_thread())) {
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   509
       JavaThread*  jt = ((NamedThread *)_thread)->processed_thread();
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   510
       if (jt != NULL) {
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   511
         st->print_cr("JavaThread " PTR_FORMAT " (nid = " UINTX_FORMAT ") was being processed", jt, jt->osthread()->thread_id());
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   512
         if (jt->has_last_Java_frame()) {
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   513
           st->print_cr("Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)");
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   514
           for(StackFrameStream sfs(jt); !sfs.is_done(); sfs.next()) {
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   515
             sfs.current()->print_on_error(st, buf, sizeof(buf), true);
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   516
             st->cr();
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   517
           }
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   518
         }
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   519
       }
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   520
     }
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 4013
diff changeset
   521
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  STEP(140, "(printing VM operation)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
     if (_verbose && _thread && _thread->is_VM_thread()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
        VMThread* t = (VMThread*)_thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
        VM_Operation* op = t->vm_operation();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
        if (op) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
          op->print_on_error(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
          st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
          st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  STEP(150, "(printing current compile task)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
     if (_verbose && _thread && _thread->is_Compiler_thread()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
        CompilerThread* t = (CompilerThread*)_thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
        if (t->task()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
           st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
           st->print_cr("Current CompileTask:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
           t->task()->print_line_on_error(st, buf, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
           st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  STEP(160, "(printing process)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
       st->print_cr("---------------  P R O C E S S  ---------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  STEP(170, "(printing all threads)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
     // all threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
     if (_verbose && _thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
       Threads::print_on_error(st, _thread, buf, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  STEP(175, "(printing VM state)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
       // Safepoint state
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
       st->print("VM state:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
       if (SafepointSynchronize::is_synchronizing()) st->print("synchronizing");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
       else if (SafepointSynchronize::is_at_safepoint()) st->print("at safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
       else st->print("not at safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
       // Also see if error occurred during initialization or shutdown
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
       if (!Universe::is_fully_initialized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
         st->print(" (not fully initialized)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
       } else if (VM_Exit::vm_exited()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
         st->print(" (shutting down)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
       } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
         st->print(" (normal execution)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  STEP(180, "(printing owned locks on error)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
     // mutexes/monitors that currently have an owner
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
       print_owned_locks_on_error(st);
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
  STEP(190, "(printing heap information)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
     if (_verbose && Universe::is_fully_initialized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
       // print heap information before vm abort
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
       Universe::print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  STEP(200, "(printing dynamic libraries)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
       // dynamic libraries, or memory map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
       os::print_dll_info(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  STEP(210, "(printing VM options)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
       // VM options
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
       Arguments::print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  STEP(220, "(printing environment variables)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
       os::print_environment_variables(st, env_list, buf, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  STEP(225, "(printing signal handlers)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
       os::print_signal_handlers(st, buf, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  STEP(230, "" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
       st->print_cr("---------------  S Y S T E M  ---------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  STEP(240, "(printing OS information)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
       os::print_os_info(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  STEP(250, "(printing CPU info)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
       os::print_cpu_info(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  STEP(260, "(printing memory info)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
       os::print_memory_info(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  STEP(270, "(printing internal vm info)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
       st->print_cr("vm_info: %s", Abstract_VM_Version::internal_vm_info_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  STEP(280, "(printing date and time)" )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
     if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
       os::print_date_and_time(st);
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
  END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
# undef BEGIN
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
# undef STEP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
# undef END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
void VMError::report_and_die() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  // Don't allocate large buffer on stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  static char buffer[O_BUFLEN];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  // First error, and its thread id. We must be able to handle native thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  // so use thread id instead of Thread* to identify thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  static VMError* first_error;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  static jlong    first_error_tid;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  // An error could happen before tty is initialized or after it has been
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  // destroyed. Here we use a very simple unbuffered fdStream for printing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  // Only out.print_raw() and out.print_raw_cr() should be used, as other
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  // printing methods need to allocate large buffer on stack. To format a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  // string, use jio_snprintf() with a static buffer or use staticBufferStream.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  static fdStream out(defaultStream::output_fd());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  // How many errors occurred in error handler when reporting first_error.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  static int recursive_error_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  // We will first print a brief message to standard out (verbose = false),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  // then save detailed information in log file (verbose = true).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  static bool out_done = false;         // done printing to standard out
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  static bool log_done = false;         // done saving error log
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  static fdStream log;                  // error log
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  if (SuppressFatalErrorMessage) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
      os::abort();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  jlong mytid = os::current_thread_id();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  if (first_error == NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
      Atomic::cmpxchg_ptr(this, &first_error, NULL) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
    // first time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
    first_error_tid = mytid;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
    set_error_reported();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
    if (ShowMessageBoxOnError) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
      show_message_box(buffer, sizeof(buffer));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
      // User has asked JVM to abort. Reset ShowMessageBoxOnError so the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
      // WatcherThread can kill JVM if the error handler hangs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
      ShowMessageBoxOnError = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
    // reset signal handlers or exception filter; make sure recursive crashes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
    // are handled properly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
    reset_signal_handlers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  } else {
1887
0ed88ac17540 4997835: RFE: crash dump will only be created when running w/ -XX:+ShowMessageBoxOnError
coleenp
parents: 1660
diff changeset
   729
    // 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
   730
    // 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
   731
    // to be reported.
0ed88ac17540 4997835: RFE: crash dump will only be created when running w/ -XX:+ShowMessageBoxOnError
coleenp
parents: 1660
diff changeset
   732
    if (UseOSErrorReporting && log_done) return;
0ed88ac17540 4997835: RFE: crash dump will only be created when running w/ -XX:+ShowMessageBoxOnError
coleenp
parents: 1660
diff changeset
   733
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
    // This is not the first error, see if it happened in a different thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
    // or in the same thread during error reporting.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
    if (first_error_tid != mytid) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
      jio_snprintf(buffer, sizeof(buffer),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
                   "[thread " INT64_FORMAT " also had an error]",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
                   mytid);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
      out.print_raw_cr(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
      // error reporting is not MT-safe, block current thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
      os::infinite_sleep();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
      if (recursive_error_count++ > 30) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
        out.print_raw_cr("[Too many errors, abort]");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
        os::die();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
      jio_snprintf(buffer, sizeof(buffer),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
                   "[error occurred during error reporting %s, id 0x%x]",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
                   first_error ? first_error->_current_step_info : "",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
                   _id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
      if (log.is_open()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
        log.cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
        log.print_raw_cr(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
        log.cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
        out.cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
        out.print_raw_cr(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
        out.cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  // print to screen
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  if (!out_done) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
    first_error->_verbose = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
    staticBufferStream sbs(buffer, sizeof(buffer), &out);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
    first_error->report(&sbs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
    out_done = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
    first_error->_current_step = 0;         // reset current_step
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
    first_error->_current_step_info = "";   // reset current_step string
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
  // print to error log file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  if (!log_done) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
    first_error->_verbose = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
    // see if log file is already open
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
    if (!log.is_open()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
      // open log file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
      int fd = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
      if (ErrorFile != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
        bool copy_ok =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
          Arguments::copy_expand_pid(ErrorFile, strlen(ErrorFile), buffer, sizeof(buffer));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
        if (copy_ok) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
          fd = open(buffer, O_WRONLY | O_CREAT | O_TRUNC, 0666);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
      if (fd == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
        const char *cwd = os::get_current_directory(buffer, sizeof(buffer));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
        size_t len = strlen(cwd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
        // either user didn't specify, or the user's location failed,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
        // so use the default name in the current directory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
        jio_snprintf(&buffer[len], sizeof(buffer)-len, "%shs_err_pid%u.log",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
                     os::file_separator(), os::current_process_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
        fd = open(buffer, O_WRONLY | O_CREAT | O_TRUNC, 0666);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
      if (fd == -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
        // try temp directory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
        const char * tmpdir = os::get_temp_directory();
5237
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 4489
diff changeset
   810
        jio_snprintf(buffer, sizeof(buffer), "%s%shs_err_pid%u.log",
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 4489
diff changeset
   811
                     tmpdir, os::file_separator(), os::current_process_id());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
        fd = open(buffer, O_WRONLY | O_CREAT | O_TRUNC, 0666);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
      if (fd != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
        out.print_raw("# An error report file with more information is saved as:\n# ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
        out.print_raw_cr(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
        os::set_error_file(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
        log.set_fd(fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
        out.print_raw_cr("# Can not save log file, dump to screen..");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
        log.set_fd(defaultStream::output_fd());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
    staticBufferStream sbs(buffer, O_BUFLEN, &log);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
    first_error->report(&sbs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
    first_error->_current_step = 0;         // reset current_step
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
    first_error->_current_step_info = "";   // reset current_step string
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
    if (log.fd() != defaultStream::output_fd()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
      close(log.fd());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
    log.set_fd(-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
    log_done = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
  static bool skip_OnError = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  if (!skip_OnError && OnError && OnError[0]) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
    skip_OnError = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
    out.print_raw_cr("#");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
    out.print_raw   ("# -XX:OnError=\"");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
    out.print_raw   (OnError);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
    out.print_raw_cr("\"");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
    char* cmd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
    const char* ptr = OnError;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
    while ((cmd = next_OnError_command(buffer, sizeof(buffer), &ptr)) != NULL){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
      out.print_raw   ("#   Executing ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
#if defined(LINUX)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
      out.print_raw   ("/bin/sh -c ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
#elif defined(SOLARIS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
      out.print_raw   ("/usr/bin/sh -c ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
      out.print_raw   ("\"");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
      out.print_raw   (cmd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
      out.print_raw_cr("\" ...");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
      os::fork_and_exec(cmd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
    // done with OnError
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
    OnError = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
  static bool skip_bug_url = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
  if (!skip_bug_url) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
    skip_bug_url = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
    out.print_raw_cr("#");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
    print_bug_submit_message(&out, _thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
  if (!UseOSErrorReporting) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
    // os::abort() will call abort hooks, try it first.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
    static bool skip_os_abort = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
    if (!skip_os_abort) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
      skip_os_abort = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
      os::abort();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
    // if os::abort() doesn't abort, try os::die();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
    os::die();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
 * OnOutOfMemoryError scripts/commands executed while VM is a safepoint - this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
 * ensures utilities such as jmap can observe the process is a consistent state.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
class VM_ReportJavaOutOfMemory : public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
  VMError *_err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
  VM_ReportJavaOutOfMemory(VMError *err) { _err = err; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  VMOp_Type type() const                 { return VMOp_ReportJavaOutOfMemory; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
void VM_ReportJavaOutOfMemory::doit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  // Don't allocate large buffer on stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
  static char buffer[O_BUFLEN];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
  tty->print_cr("#");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  tty->print_cr("# java.lang.OutOfMemoryError: %s", _err->message());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  tty->print_cr("# -XX:OnOutOfMemoryError=\"%s\"", OnOutOfMemoryError);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  // make heap parsability
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
  Universe::heap()->ensure_parsability(false);  // no need to retire TLABs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
  char* cmd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
  const char* ptr = OnOutOfMemoryError;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  while ((cmd = next_OnError_command(buffer, sizeof(buffer), &ptr)) != NULL){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
    tty->print("#   Executing ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
#if defined(LINUX)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
    tty->print  ("/bin/sh -c ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
#elif defined(SOLARIS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
    tty->print  ("/usr/bin/sh -c ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
    tty->print_cr("\"%s\"...", cmd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
    os::fork_and_exec(cmd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
void VMError::report_java_out_of_memory() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
  if (OnOutOfMemoryError && OnOutOfMemoryError[0]) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
    MutexLocker ml(Heap_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
    VM_ReportJavaOutOfMemory op(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
    VMThread::execute(&op);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
}