annotate src/share/vm/utilities/vmError.cpp @ 603:dbbe28fc66b5

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