annotate src/share/vm/utilities/vmError.cpp @ 2177:3582bf76420e

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