author | stefank |
Tue, 05 Apr 2016 10:35:39 +0200 | |
changeset 37254 | 8631304f255c |
parent 37113 | 5a33bf5089ac |
child 37466 | 287c4ebd11b0 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
35453
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35176
diff
changeset
|
2 |
* Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5403
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5403
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5403
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
28513
9464a1b5c184
8050807: Better performing performance data handling
gthornbr
parents:
27471
diff
changeset
|
25 |
#include <fcntl.h> |
7397 | 26 |
#include "precompiled.hpp" |
25715
d5a8dbdc5150
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents:
25351
diff
changeset
|
27 |
#include "code/codeCache.hpp" |
7397 | 28 |
#include "compiler/compileBroker.hpp" |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
29 |
#include "compiler/disassembler.hpp" |
30764 | 30 |
#include "gc/shared/collectedHeap.hpp" |
12095 | 31 |
#include "prims/whitebox.hpp" |
7397 | 32 |
#include "runtime/arguments.hpp" |
25351
7c198a690050
8044775: Improve usage of umbrella header atomic.inline.hpp.
goetz
parents:
24424
diff
changeset
|
33 |
#include "runtime/atomic.inline.hpp" |
7397 | 34 |
#include "runtime/frame.inline.hpp" |
35 |
#include "runtime/init.hpp" |
|
36 |
#include "runtime/os.hpp" |
|
24351
61b33cc6d3cf
8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents:
23204
diff
changeset
|
37 |
#include "runtime/thread.inline.hpp" |
7397 | 38 |
#include "runtime/vmThread.hpp" |
39 |
#include "runtime/vm_operations.hpp" |
|
13195 | 40 |
#include "services/memTracker.hpp" |
7397 | 41 |
#include "utilities/debug.hpp" |
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
7397
diff
changeset
|
42 |
#include "utilities/decoder.hpp" |
7397 | 43 |
#include "utilities/defaultStream.hpp" |
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7901
diff
changeset
|
44 |
#include "utilities/errorReporter.hpp" |
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11483
diff
changeset
|
45 |
#include "utilities/events.hpp" |
7397 | 46 |
#include "utilities/top.hpp" |
47 |
#include "utilities/vmError.hpp" |
|
1 | 48 |
|
49 |
// List of environment variables that should be reported in error log file. |
|
50 |
const char *env_list[] = { |
|
51 |
// All platforms |
|
52 |
"JAVA_HOME", "JRE_HOME", "JAVA_TOOL_OPTIONS", "_JAVA_OPTIONS", "CLASSPATH", |
|
53 |
"JAVA_COMPILER", "PATH", "USERNAME", |
|
54 |
||
10565 | 55 |
// Env variables that are defined on Solaris/Linux/BSD |
1 | 56 |
"LD_LIBRARY_PATH", "LD_PRELOAD", "SHELL", "DISPLAY", |
57 |
"HOSTTYPE", "OSTYPE", "ARCH", "MACHTYPE", |
|
58 |
||
59 |
// defined on Linux |
|
60 |
"LD_ASSUME_KERNEL", "_JAVA_SR_SIGNUM", |
|
61 |
||
10565 | 62 |
// defined on Darwin |
63 |
"DYLD_LIBRARY_PATH", "DYLD_FALLBACK_LIBRARY_PATH", |
|
64 |
"DYLD_FRAMEWORK_PATH", "DYLD_FALLBACK_FRAMEWORK_PATH", |
|
65 |
"DYLD_INSERT_LIBRARIES", |
|
66 |
||
1 | 67 |
// defined on Windows |
68 |
"OS", "PROCESSOR_IDENTIFIER", "_ALT_JAVA_HOME_DIR", |
|
69 |
||
70 |
(const char *)0 |
|
71 |
}; |
|
72 |
||
73 |
// A simple parser for -XX:OnError, usage: |
|
74 |
// ptr = OnError; |
|
75 |
// while ((cmd = next_OnError_command(buffer, sizeof(buffer), &ptr) != NULL) |
|
76 |
// ... ... |
|
77 |
static char* next_OnError_command(char* buf, int buflen, const char** ptr) { |
|
78 |
if (ptr == NULL || *ptr == NULL) return NULL; |
|
79 |
||
80 |
const char* cmd = *ptr; |
|
81 |
||
82 |
// skip leading blanks or ';' |
|
83 |
while (*cmd == ' ' || *cmd == ';') cmd++; |
|
84 |
||
85 |
if (*cmd == '\0') return NULL; |
|
86 |
||
87 |
const char * cmdend = cmd; |
|
88 |
while (*cmdend != '\0' && *cmdend != ';') cmdend++; |
|
89 |
||
90 |
Arguments::copy_expand_pid(cmd, cmdend - cmd, buf, buflen); |
|
91 |
||
92 |
*ptr = (*cmdend == '\0' ? cmdend : cmdend + 1); |
|
93 |
return buf; |
|
94 |
} |
|
95 |
||
96 |
static void print_bug_submit_message(outputStream *out, Thread *thread) { |
|
97 |
if (out == NULL) return; |
|
98 |
out->print_raw_cr("# If you would like to submit a bug report, please visit:"); |
|
99 |
out->print_raw ("# "); |
|
100 |
out->print_raw_cr(Arguments::java_vendor_url_bug()); |
|
101 |
// If the crash is in native code, encourage user to submit a bug to the |
|
102 |
// provider of that code. |
|
229
4fddba548751
6549844: Wording problems in "An unexpected error ..."
coleenp
parents:
1
diff
changeset
|
103 |
if (thread && thread->is_Java_thread() && |
4fddba548751
6549844: Wording problems in "An unexpected error ..."
coleenp
parents:
1
diff
changeset
|
104 |
!thread->is_hidden_from_external_view()) { |
1 | 105 |
JavaThread* jt = (JavaThread*)thread; |
106 |
if (jt->thread_state() == _thread_in_native) { |
|
107 |
out->print_cr("# The crash happened outside the Java Virtual Machine in native code.\n# See problematic frame for where to report the bug."); |
|
108 |
} |
|
109 |
} |
|
110 |
out->print_raw_cr("#"); |
|
111 |
} |
|
112 |
||
8119
81eef1b06988
7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
8114
diff
changeset
|
113 |
bool VMError::coredump_status; |
81eef1b06988
7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
8114
diff
changeset
|
114 |
char VMError::coredump_message[O_BUFLEN]; |
81eef1b06988
7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
8114
diff
changeset
|
115 |
|
30240
a7ba42fa1df6
8074354: Make CreateMinidumpOnCrash a new name and available on all platforms
minqi
parents:
30125
diff
changeset
|
116 |
void VMError::record_coredump_status(const char* message, bool status) { |
8119
81eef1b06988
7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
8114
diff
changeset
|
117 |
coredump_status = status; |
81eef1b06988
7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
8114
diff
changeset
|
118 |
strncpy(coredump_message, message, sizeof(coredump_message)); |
81eef1b06988
7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
8114
diff
changeset
|
119 |
coredump_message[sizeof(coredump_message)-1] = 0; |
81eef1b06988
7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
8114
diff
changeset
|
120 |
} |
81eef1b06988
7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
8114
diff
changeset
|
121 |
|
1 | 122 |
// Return a string to describe the error |
123 |
char* VMError::error_string(char* buf, int buflen) { |
|
124 |
char signame_buf[64]; |
|
125 |
const char *signame = os::exception_name(_id, signame_buf, sizeof(signame_buf)); |
|
126 |
||
127 |
if (signame) { |
|
128 |
jio_snprintf(buf, buflen, |
|
32583
e95e2cfc9cf5
8133561: linux thread id should be reported in decimal in the error reports now
coleenp
parents:
31963
diff
changeset
|
129 |
"%s (0x%x) at pc=" PTR_FORMAT ", pid=%d, tid=" UINTX_FORMAT, |
1 | 130 |
signame, _id, _pc, |
131 |
os::current_process_id(), os::current_thread_id()); |
|
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5340
diff
changeset
|
132 |
} else if (_filename != NULL && _lineno > 0) { |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5340
diff
changeset
|
133 |
// skip directory names |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5340
diff
changeset
|
134 |
char separator = os::file_separator()[0]; |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5340
diff
changeset
|
135 |
const char *p = strrchr(_filename, separator); |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5340
diff
changeset
|
136 |
int n = jio_snprintf(buf, buflen, |
32583
e95e2cfc9cf5
8133561: linux thread id should be reported in decimal in the error reports now
coleenp
parents:
31963
diff
changeset
|
137 |
"Internal Error at %s:%d, pid=%d, tid=" UINTX_FORMAT, |
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5340
diff
changeset
|
138 |
p ? p + 1 : _filename, _lineno, |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5340
diff
changeset
|
139 |
os::current_process_id(), os::current_thread_id()); |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5340
diff
changeset
|
140 |
if (n >= 0 && n < buflen && _message) { |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
141 |
if (strlen(_detail_msg) > 0) { |
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5340
diff
changeset
|
142 |
jio_snprintf(buf + n, buflen - n, "%s%s: %s", |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
143 |
os::line_separator(), _message, _detail_msg); |
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5340
diff
changeset
|
144 |
} else { |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5340
diff
changeset
|
145 |
jio_snprintf(buf + n, buflen - n, "%sError: %s", |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5340
diff
changeset
|
146 |
os::line_separator(), _message); |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5340
diff
changeset
|
147 |
} |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5340
diff
changeset
|
148 |
} |
1 | 149 |
} else { |
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5340
diff
changeset
|
150 |
jio_snprintf(buf, buflen, |
32583
e95e2cfc9cf5
8133561: linux thread id should be reported in decimal in the error reports now
coleenp
parents:
31963
diff
changeset
|
151 |
"Internal Error (0x%x), pid=%d, tid=" UINTX_FORMAT, |
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5340
diff
changeset
|
152 |
_id, os::current_process_id(), os::current_thread_id()); |
1 | 153 |
} |
154 |
||
155 |
return buf; |
|
156 |
} |
|
157 |
||
5340 | 158 |
void VMError::print_stack_trace(outputStream* st, JavaThread* jt, |
159 |
char* buf, int buflen, bool verbose) { |
|
160 |
#ifdef ZERO |
|
161 |
if (jt->zero_stack()->sp() && jt->top_zero_frame()) { |
|
162 |
// StackFrameStream uses the frame anchor, which may not have |
|
163 |
// been set up. This can be done at any time in Zero, however, |
|
164 |
// so if it hasn't been set up then we just set it up now and |
|
165 |
// clear it again when we're done. |
|
166 |
bool has_last_Java_frame = jt->has_last_Java_frame(); |
|
167 |
if (!has_last_Java_frame) |
|
168 |
jt->set_last_Java_frame(); |
|
169 |
st->print("Java frames:"); |
|
170 |
||
171 |
// If the top frame is a Shark frame and the frame anchor isn't |
|
172 |
// set up then it's possible that the information in the frame |
|
173 |
// is garbage: it could be from a previous decache, or it could |
|
174 |
// simply have never been written. So we print a warning... |
|
175 |
StackFrameStream sfs(jt); |
|
176 |
if (!has_last_Java_frame && !sfs.is_done()) { |
|
177 |
if (sfs.current()->zeroframe()->is_shark_frame()) { |
|
178 |
st->print(" (TOP FRAME MAY BE JUNK)"); |
|
179 |
} |
|
180 |
} |
|
181 |
st->cr(); |
|
182 |
||
183 |
// Print the frames |
|
184 |
for(int i = 0; !sfs.is_done(); sfs.next(), i++) { |
|
185 |
sfs.current()->zero_print_on_error(i, st, buf, buflen); |
|
186 |
st->cr(); |
|
187 |
} |
|
188 |
||
189 |
// Reset the frame anchor if necessary |
|
190 |
if (!has_last_Java_frame) |
|
191 |
jt->reset_last_Java_frame(); |
|
192 |
} |
|
193 |
#else |
|
194 |
if (jt->has_last_Java_frame()) { |
|
195 |
st->print_cr("Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)"); |
|
196 |
for(StackFrameStream sfs(jt); !sfs.is_done(); sfs.next()) { |
|
197 |
sfs.current()->print_on_error(st, buf, buflen, verbose); |
|
198 |
st->cr(); |
|
199 |
} |
|
200 |
} |
|
201 |
#endif // ZERO |
|
202 |
} |
|
1 | 203 |
|
34139
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
204 |
static void print_oom_reasons(outputStream* st) { |
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
205 |
st->print_cr("# Possible reasons:"); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
206 |
st->print_cr("# The system is out of physical RAM or swap space"); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
207 |
st->print_cr("# In 32 bit mode, the process size limit was hit"); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
208 |
st->print_cr("# Possible solutions:"); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
209 |
st->print_cr("# Reduce memory load on the system"); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
210 |
st->print_cr("# Increase physical memory or swap space"); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
211 |
st->print_cr("# Check if swap backing store is full"); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
212 |
st->print_cr("# Use 64 bit Java on a 64 bit OS"); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
213 |
st->print_cr("# Decrease Java heap size (-Xmx/-Xms)"); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
214 |
st->print_cr("# Decrease number of Java threads"); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
215 |
st->print_cr("# Decrease Java thread stack sizes (-Xss)"); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
216 |
st->print_cr("# Set larger code cache with -XX:ReservedCodeCacheSize="); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
217 |
st->print_cr("# This output file may be truncated or incomplete."); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
218 |
} |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
219 |
|
34139
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
220 |
static const char* gc_mode() { |
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
221 |
if (UseG1GC) return "g1 gc"; |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
222 |
if (UseParallelGC) return "parallel gc"; |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
223 |
if (UseConcMarkSweepGC) return "concurrent mark sweep gc"; |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
224 |
if (UseSerialGC) return "serial gc"; |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
225 |
return "ERROR in GC mode"; |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
226 |
} |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
227 |
|
34139
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
228 |
static void report_vm_version(outputStream* st, char* buf, int buflen) { |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
229 |
// VM version |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
230 |
st->print_cr("#"); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
231 |
JDK_Version::current().to_string(buf, buflen); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
232 |
const char* runtime_name = JDK_Version::runtime_name() != NULL ? |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
233 |
JDK_Version::runtime_name() : ""; |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
234 |
const char* runtime_version = JDK_Version::runtime_version() != NULL ? |
35453
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35176
diff
changeset
|
235 |
JDK_Version::runtime_version() : ""; |
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35176
diff
changeset
|
236 |
const char* jdk_debug_level = Abstract_VM_Version::printable_jdk_debug_level() != NULL ? |
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35176
diff
changeset
|
237 |
Abstract_VM_Version::printable_jdk_debug_level() : ""; |
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35176
diff
changeset
|
238 |
|
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35176
diff
changeset
|
239 |
st->print_cr("# JRE version: %s (%s) (%sbuild %s)", runtime_name, buf, |
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35176
diff
changeset
|
240 |
jdk_debug_level, runtime_version); |
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35176
diff
changeset
|
241 |
|
34139
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
242 |
// This is the long version with some default settings added |
35453
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35176
diff
changeset
|
243 |
st->print_cr("# Java VM: %s (%s%s, %s%s%s%s%s, %s, %s)", |
34139
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
244 |
Abstract_VM_Version::vm_name(), |
35453
d164ee5260a6
8146653: Debug version missing in hs_err files and on internal version after Verona
amurillo
parents:
35176
diff
changeset
|
245 |
jdk_debug_level, |
34139
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
246 |
Abstract_VM_Version::vm_release(), |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
247 |
Abstract_VM_Version::vm_info_string(), |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
248 |
TieredCompilation ? ", tiered" : "", |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
249 |
#if INCLUDE_JVMCI |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
250 |
EnableJVMCI ? ", jvmci" : "", |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
251 |
UseJVMCICompiler ? ", jvmci compiler" : "", |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
252 |
#else |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
253 |
"", "", |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
254 |
#endif |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
255 |
UseCompressedOops ? ", compressed oops" : "", |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
256 |
gc_mode(), |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
257 |
Abstract_VM_Version::vm_platform_string() |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
258 |
); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
259 |
} |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
260 |
|
1 | 261 |
// This is the main function to report a fatal error. Only one thread can |
262 |
// call this function, so we don't need to worry about MT-safety. But it's |
|
263 |
// possible that the error handler itself may crash or die on an internal |
|
264 |
// error, for example, when the stack/heap is badly damaged. We must be |
|
265 |
// able to handle recursive errors that happen inside error handler. |
|
266 |
// |
|
267 |
// Error reporting is done in several steps. If a crash or internal error |
|
268 |
// occurred when reporting an error, the nested signal/exception handler |
|
269 |
// can skip steps that are already (or partially) done. Error reporting will |
|
270 |
// continue from the next step. This allows us to retrieve and print |
|
271 |
// information that may be unsafe to get after a fatal error. If it happens, |
|
272 |
// you may find nested report_and_die() frames when you look at the stack |
|
273 |
// in a debugger. |
|
274 |
// |
|
275 |
// In general, a hang in error handler is much worse than a crash or internal |
|
276 |
// error, as it's harder to recover from a hang. Deadlock can happen if we |
|
277 |
// try to grab a lock that is already owned by current thread, or if the |
|
278 |
// owner is blocked forever (e.g. in os::infinite_sleep()). If possible, the |
|
279 |
// error handler and all the functions it called should avoid grabbing any |
|
280 |
// lock. An important thing to notice is that memory allocation needs a lock. |
|
281 |
// |
|
282 |
// We should avoid using large stack allocated buffers. Many errors happen |
|
283 |
// when stack space is already low. Making things even worse is that there |
|
284 |
// could be nested report_and_die() calls on stack (see above). Only one |
|
285 |
// thread can report error, so large buffers are statically allocated in data |
|
286 |
// segment. |
|
287 |
||
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
288 |
int VMError::_current_step; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
289 |
const char* VMError::_current_step_info; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
290 |
|
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
291 |
void VMError::report(outputStream* st, bool _verbose) { |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
292 |
|
1 | 293 |
# define BEGIN if (_current_step == 0) { _current_step = 1; |
294 |
# define STEP(n, s) } if (_current_step < n) { _current_step = n; _current_step_info = s; |
|
295 |
# define END } |
|
296 |
||
297 |
// don't allocate large buffer on stack |
|
298 |
static char buf[O_BUFLEN]; |
|
299 |
||
300 |
BEGIN |
|
301 |
||
229
4fddba548751
6549844: Wording problems in "An unexpected error ..."
coleenp
parents:
1
diff
changeset
|
302 |
STEP(10, "(printing fatal error message)") |
1 | 303 |
|
7719
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
304 |
st->print_cr("#"); |
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
305 |
if (should_report_bug(_id)) { |
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
306 |
st->print_cr("# A fatal error has been detected by the Java Runtime Environment:"); |
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
307 |
} else { |
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
308 |
st->print_cr("# There is insufficient memory for the Java " |
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
309 |
"Runtime Environment to continue."); |
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
310 |
} |
1 | 311 |
|
28943
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28513
diff
changeset
|
312 |
#ifndef PRODUCT |
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28513
diff
changeset
|
313 |
// Error handler self tests |
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28513
diff
changeset
|
314 |
|
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28513
diff
changeset
|
315 |
// test secondary error handling. Test it twice, to test that resetting |
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28513
diff
changeset
|
316 |
// error handler after a secondary crash works. |
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
317 |
STEP(20, "(test secondary crash 1)") |
29573
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
318 |
if (_verbose && TestCrashInErrorHandler != 0) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33131
diff
changeset
|
319 |
st->print_cr("Will crash now (TestCrashInErrorHandler=" UINTX_FORMAT ")...", |
29573
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
320 |
TestCrashInErrorHandler); |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
321 |
controlled_crash(TestCrashInErrorHandler); |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
322 |
} |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
323 |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
324 |
STEP(30, "(test secondary crash 2)") |
28943
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28513
diff
changeset
|
325 |
if (_verbose && TestCrashInErrorHandler != 0) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33131
diff
changeset
|
326 |
st->print_cr("Will crash now (TestCrashInErrorHandler=" UINTX_FORMAT ")...", |
28943
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28513
diff
changeset
|
327 |
TestCrashInErrorHandler); |
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28513
diff
changeset
|
328 |
controlled_crash(TestCrashInErrorHandler); |
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28513
diff
changeset
|
329 |
} |
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28513
diff
changeset
|
330 |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
331 |
STEP(40, "(test safefetch in error handler)") |
29573
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
332 |
// test whether it is safe to use SafeFetch32 in Crash Handler. Test twice |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
333 |
// to test that resetting the signal handler works correctly. |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
334 |
if (_verbose && TestSafeFetchInErrorHandler) { |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
335 |
st->print_cr("Will test SafeFetch..."); |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
336 |
if (CanUseSafeFetch32()) { |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
337 |
int* const invalid_pointer = (int*) get_segfault_address(); |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
338 |
const int x = 0x76543210; |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
339 |
int i1 = SafeFetch32(invalid_pointer, x); |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
340 |
int i2 = SafeFetch32(invalid_pointer, x); |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
341 |
if (i1 == x && i2 == x) { |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
342 |
st->print_cr("SafeFetch OK."); // Correctly deflected and returned default pattern |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
343 |
} else { |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
344 |
st->print_cr("??"); |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
345 |
} |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
346 |
} else { |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
347 |
st->print_cr("not possible; skipped."); |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
28943
diff
changeset
|
348 |
} |
28943
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28513
diff
changeset
|
349 |
} |
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28513
diff
changeset
|
350 |
#endif // PRODUCT |
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28513
diff
changeset
|
351 |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
352 |
STEP(50, "(printing type of error)") |
1 | 353 |
|
354 |
switch(_id) { |
|
17087
f0b76c4c93a0
8011661: Insufficient memory message says "malloc" when sometimes it should say "mmap"
ccheung
parents:
16685
diff
changeset
|
355 |
case OOM_MALLOC_ERROR: |
f0b76c4c93a0
8011661: Insufficient memory message says "malloc" when sometimes it should say "mmap"
ccheung
parents:
16685
diff
changeset
|
356 |
case OOM_MMAP_ERROR: |
1 | 357 |
if (_size) { |
17087
f0b76c4c93a0
8011661: Insufficient memory message says "malloc" when sometimes it should say "mmap"
ccheung
parents:
16685
diff
changeset
|
358 |
st->print("# Native memory allocation "); |
f0b76c4c93a0
8011661: Insufficient memory message says "malloc" when sometimes it should say "mmap"
ccheung
parents:
16685
diff
changeset
|
359 |
st->print((_id == (int)OOM_MALLOC_ERROR) ? "(malloc) failed to allocate " : |
f0b76c4c93a0
8011661: Insufficient memory message says "malloc" when sometimes it should say "mmap"
ccheung
parents:
16685
diff
changeset
|
360 |
"(mmap) failed to map "); |
7719
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
361 |
jio_snprintf(buf, sizeof(buf), SIZE_FORMAT, _size); |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24351
diff
changeset
|
362 |
st->print("%s", buf); |
1 | 363 |
st->print(" bytes"); |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
364 |
if (strlen(_detail_msg) > 0) { |
1 | 365 |
st->print(" for "); |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
366 |
st->print("%s", _detail_msg); |
1 | 367 |
} |
7719
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
368 |
st->cr(); |
1 | 369 |
} else { |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
370 |
if (strlen(_detail_msg) > 0) { |
7719
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
371 |
st->print("# "); |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
372 |
st->print_cr("%s", _detail_msg); |
31615 | 373 |
} |
1 | 374 |
} |
7719
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
375 |
// In error file give some solutions |
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
376 |
if (_verbose) { |
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
377 |
print_oom_reasons(st); |
7719
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
378 |
} else { |
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
379 |
return; // that's enough for the screen |
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
380 |
} |
1 | 381 |
break; |
17087
f0b76c4c93a0
8011661: Insufficient memory message says "malloc" when sometimes it should say "mmap"
ccheung
parents:
16685
diff
changeset
|
382 |
case INTERNAL_ERROR: |
1 | 383 |
default: |
384 |
break; |
|
385 |
} |
|
386 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
387 |
STEP(60, "(printing exception/signal name)") |
1 | 388 |
|
389 |
st->print_cr("#"); |
|
390 |
st->print("# "); |
|
391 |
// Is it an OS exception/signal? |
|
392 |
if (os::exception_name(_id, buf, sizeof(buf))) { |
|
393 |
st->print("%s", buf); |
|
394 |
st->print(" (0x%x)", _id); // signal number |
|
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33131
diff
changeset
|
395 |
st->print(" at pc=" PTR_FORMAT, p2i(_pc)); |
1 | 396 |
} else { |
7719
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
397 |
if (should_report_bug(_id)) { |
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
398 |
st->print("Internal Error"); |
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
399 |
} else { |
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
400 |
st->print("Out of Memory Error"); |
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
401 |
} |
1 | 402 |
if (_filename != NULL && _lineno > 0) { |
403 |
#ifdef PRODUCT |
|
404 |
// In product mode chop off pathname? |
|
405 |
char separator = os::file_separator()[0]; |
|
406 |
const char *p = strrchr(_filename, separator); |
|
407 |
const char *file = p ? p+1 : _filename; |
|
408 |
#else |
|
409 |
const char *file = _filename; |
|
410 |
#endif |
|
30281 | 411 |
st->print(" (%s:%d)", file, _lineno); |
1 | 412 |
} else { |
413 |
st->print(" (0x%x)", _id); |
|
414 |
} |
|
415 |
} |
|
416 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
417 |
STEP(70, "(printing current thread and pid)") |
1 | 418 |
|
419 |
// process id, thread id |
|
420 |
st->print(", pid=%d", os::current_process_id()); |
|
32583
e95e2cfc9cf5
8133561: linux thread id should be reported in decimal in the error reports now
coleenp
parents:
31963
diff
changeset
|
421 |
st->print(", tid=" UINTX_FORMAT, os::current_thread_id()); |
1 | 422 |
st->cr(); |
423 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
424 |
STEP(80, "(printing error message)") |
1 | 425 |
|
7719
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
426 |
if (should_report_bug(_id)) { // already printed the message. |
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
427 |
// error message |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
428 |
if (strlen(_detail_msg) > 0) { |
7719
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
429 |
st->print_cr("# %s: %s", _message ? _message : "Error", _detail_msg); |
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
430 |
} else if (_message) { |
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
431 |
st->print_cr("# Error: %s", _message); |
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
432 |
} |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
433 |
} |
1 | 434 |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
435 |
STEP(90, "(printing Java version string)") |
1 | 436 |
|
34139
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
437 |
report_vm_version(st, buf, sizeof(buf)); |
1 | 438 |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
439 |
STEP(100, "(printing problematic frame)") |
1 | 440 |
|
441 |
// Print current frame if we have a context (i.e. it's a crash) |
|
442 |
if (_context) { |
|
443 |
st->print_cr("# Problematic frame:"); |
|
444 |
st->print("# "); |
|
445 |
frame fr = os::fetch_frame_from_context(_context); |
|
446 |
fr.print_on_error(st, buf, sizeof(buf)); |
|
447 |
st->cr(); |
|
448 |
st->print_cr("#"); |
|
449 |
} |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
450 |
|
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
451 |
STEP(110, "(printing core file information)") |
8119
81eef1b06988
7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
8114
diff
changeset
|
452 |
st->print("# "); |
30240
a7ba42fa1df6
8074354: Make CreateMinidumpOnCrash a new name and available on all platforms
minqi
parents:
30125
diff
changeset
|
453 |
if (CreateCoredumpOnCrash) { |
a7ba42fa1df6
8074354: Make CreateMinidumpOnCrash a new name and available on all platforms
minqi
parents:
30125
diff
changeset
|
454 |
if (coredump_status) { |
30622
648d51c142bd
8078121: Add 'CreateMinidumpOnCrash' (JDK-8074354) caused many tests failed in nightly testing
ctornqvi
parents:
30281
diff
changeset
|
455 |
st->print("Core dump will be written. Default location: %s", coredump_message); |
30240
a7ba42fa1df6
8074354: Make CreateMinidumpOnCrash a new name and available on all platforms
minqi
parents:
30125
diff
changeset
|
456 |
} else { |
a7ba42fa1df6
8074354: Make CreateMinidumpOnCrash a new name and available on all platforms
minqi
parents:
30125
diff
changeset
|
457 |
st->print("No core dump will be written. %s", coredump_message); |
a7ba42fa1df6
8074354: Make CreateMinidumpOnCrash a new name and available on all platforms
minqi
parents:
30125
diff
changeset
|
458 |
} |
8119
81eef1b06988
7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
8114
diff
changeset
|
459 |
} else { |
30240
a7ba42fa1df6
8074354: Make CreateMinidumpOnCrash a new name and available on all platforms
minqi
parents:
30125
diff
changeset
|
460 |
st->print("CreateCoredumpOnCrash turned off, no core file dumped"); |
8119
81eef1b06988
7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
8114
diff
changeset
|
461 |
} |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24351
diff
changeset
|
462 |
st->cr(); |
8119
81eef1b06988
7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
8114
diff
changeset
|
463 |
st->print_cr("#"); |
1 | 464 |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
465 |
STEP(120, "(printing bug submit message)") |
1 | 466 |
|
7719
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
467 |
if (should_report_bug(_id) && _verbose) { |
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
468 |
print_bug_submit_message(st, _thread); |
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7447
diff
changeset
|
469 |
} |
1 | 470 |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
471 |
STEP(130, "(printing summary)" ) |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
472 |
|
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
473 |
if (_verbose) { |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
474 |
st->cr(); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
475 |
st->print_cr("--------------- S U M M A R Y ------------"); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
476 |
st->cr(); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
477 |
} |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
478 |
|
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
479 |
STEP(140, "(printing VM option summary)" ) |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
480 |
|
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
481 |
if (_verbose) { |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
482 |
// VM options |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
483 |
Arguments::print_summary_on(st); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
484 |
st->cr(); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
485 |
} |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
486 |
|
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
487 |
STEP(150, "(printing summary machine and OS info)") |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
488 |
|
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
489 |
if (_verbose) { |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
490 |
os::print_summary_info(st, buf, sizeof(buf)); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
491 |
} |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
492 |
|
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
493 |
|
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
494 |
STEP(160, "(printing date and time)" ) |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
495 |
|
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
496 |
if (_verbose) { |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
497 |
os::print_date_and_time(st, buf, sizeof(buf)); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
498 |
} |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
499 |
|
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
500 |
STEP(170, "(printing thread)" ) |
1 | 501 |
|
502 |
if (_verbose) { |
|
503 |
st->cr(); |
|
504 |
st->print_cr("--------------- T H R E A D ---------------"); |
|
505 |
st->cr(); |
|
506 |
} |
|
507 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
508 |
STEP(180, "(printing current thread)" ) |
1 | 509 |
|
510 |
// current thread |
|
511 |
if (_verbose) { |
|
512 |
if (_thread) { |
|
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33131
diff
changeset
|
513 |
st->print("Current thread (" PTR_FORMAT "): ", p2i(_thread)); |
1 | 514 |
_thread->print_on_error(st, buf, sizeof(buf)); |
515 |
st->cr(); |
|
516 |
} else { |
|
517 |
st->print_cr("Current thread is native thread"); |
|
518 |
} |
|
519 |
st->cr(); |
|
520 |
} |
|
521 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
522 |
STEP(190, "(printing current compile task)" ) |
1 | 523 |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
524 |
if (_verbose && _thread && _thread->is_Compiler_thread()) { |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
525 |
CompilerThread* t = (CompilerThread*)_thread; |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
526 |
if (t->task()) { |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
527 |
st->cr(); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
528 |
st->print_cr("Current CompileTask:"); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
529 |
t->task()->print_line_on_error(st, buf, sizeof(buf)); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
530 |
st->cr(); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
531 |
} |
1 | 532 |
} |
533 |
||
534 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
535 |
STEP(200, "(printing stack bounds)" ) |
1 | 536 |
|
537 |
if (_verbose) { |
|
538 |
st->print("Stack: "); |
|
539 |
||
540 |
address stack_top; |
|
541 |
size_t stack_size; |
|
542 |
||
543 |
if (_thread) { |
|
544 |
stack_top = _thread->stack_base(); |
|
545 |
stack_size = _thread->stack_size(); |
|
546 |
} else { |
|
547 |
stack_top = os::current_stack_base(); |
|
548 |
stack_size = os::current_stack_size(); |
|
549 |
} |
|
550 |
||
551 |
address stack_bottom = stack_top - stack_size; |
|
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33131
diff
changeset
|
552 |
st->print("[" PTR_FORMAT "," PTR_FORMAT "]", p2i(stack_bottom), p2i(stack_top)); |
1 | 553 |
|
554 |
frame fr = _context ? os::fetch_frame_from_context(_context) |
|
555 |
: os::current_frame(); |
|
556 |
||
557 |
if (fr.sp()) { |
|
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33131
diff
changeset
|
558 |
st->print(", sp=" PTR_FORMAT, p2i(fr.sp())); |
6179
4846648c4b7b
6973308: Missing zero length check before repne scas in check_klass_subtype_slow_path()
kvn
parents:
5547
diff
changeset
|
559 |
size_t free_stack_size = pointer_delta(fr.sp(), stack_bottom, 1024); |
4846648c4b7b
6973308: Missing zero length check before repne scas in check_klass_subtype_slow_path()
kvn
parents:
5547
diff
changeset
|
560 |
st->print(", free space=" SIZE_FORMAT "k", free_stack_size); |
1 | 561 |
} |
562 |
||
563 |
st->cr(); |
|
564 |
} |
|
565 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
566 |
STEP(210, "(printing native stack)" ) |
1 | 567 |
|
26821
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25946
diff
changeset
|
568 |
if (_verbose) { |
19952
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
19334
diff
changeset
|
569 |
if (os::platform_print_native_stack(st, _context, buf, sizeof(buf))) { |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
19334
diff
changeset
|
570 |
// We have printed the native stack in platform-specific code |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
19334
diff
changeset
|
571 |
// Windows/x64 needs special handling. |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
19334
diff
changeset
|
572 |
} else { |
1 | 573 |
frame fr = _context ? os::fetch_frame_from_context(_context) |
574 |
: os::current_frame(); |
|
575 |
||
26821
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25946
diff
changeset
|
576 |
print_native_stack(st, fr, _thread, buf, sizeof(buf)); |
1 | 577 |
} |
19952
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
19334
diff
changeset
|
578 |
} |
1 | 579 |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
580 |
STEP(220, "(printing Java stack)" ) |
1 | 581 |
|
582 |
if (_verbose && _thread && _thread->is_Java_thread()) { |
|
5340 | 583 |
print_stack_trace(st, (JavaThread*)_thread, buf, sizeof(buf)); |
1 | 584 |
} |
585 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
586 |
STEP(230, "(printing target Java thread stack)" ) |
4489
514173c9a0c2
6361589: Print out stack trace for target thread of GC crash
minqi
parents:
4013
diff
changeset
|
587 |
|
514173c9a0c2
6361589: Print out stack trace for target thread of GC crash
minqi
parents:
4013
diff
changeset
|
588 |
// printing Java thread stack trace if it is involved in GC crash |
7108 | 589 |
if (_verbose && _thread && (_thread->is_Named_thread())) { |
4489
514173c9a0c2
6361589: Print out stack trace for target thread of GC crash
minqi
parents:
4013
diff
changeset
|
590 |
JavaThread* jt = ((NamedThread *)_thread)->processed_thread(); |
514173c9a0c2
6361589: Print out stack trace for target thread of GC crash
minqi
parents:
4013
diff
changeset
|
591 |
if (jt != NULL) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33131
diff
changeset
|
592 |
st->print_cr("JavaThread " PTR_FORMAT " (nid = %d) was being processed", p2i(jt), jt->osthread()->thread_id()); |
5340 | 593 |
print_stack_trace(st, jt, buf, sizeof(buf), true); |
4489
514173c9a0c2
6361589: Print out stack trace for target thread of GC crash
minqi
parents:
4013
diff
changeset
|
594 |
} |
514173c9a0c2
6361589: Print out stack trace for target thread of GC crash
minqi
parents:
4013
diff
changeset
|
595 |
} |
514173c9a0c2
6361589: Print out stack trace for target thread of GC crash
minqi
parents:
4013
diff
changeset
|
596 |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
597 |
STEP(240, "(printing siginfo)" ) |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
598 |
|
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
599 |
// signal no, signal code, address that caused the fault |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
600 |
if (_verbose && _siginfo) { |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
601 |
st->cr(); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
602 |
os::print_siginfo(st, _siginfo); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
603 |
st->cr(); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
604 |
} |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
605 |
|
35176
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
34305
diff
changeset
|
606 |
STEP(245, "(CDS archive access warning)" ) |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
34305
diff
changeset
|
607 |
|
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
34305
diff
changeset
|
608 |
// Print an explicit hint if we crashed on access to the CDS archive. |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
34305
diff
changeset
|
609 |
if (_verbose && _siginfo) { |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
34305
diff
changeset
|
610 |
check_failing_cds_access(st, _siginfo); |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
34305
diff
changeset
|
611 |
st->cr(); |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
34305
diff
changeset
|
612 |
} |
11a9d4022d9e
8144219: [posix] Remove redundant code around os::print_siginfo()
stuefe
parents:
34305
diff
changeset
|
613 |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
614 |
STEP(250, "(printing register info)") |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
615 |
|
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
616 |
// decode register contents if possible |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
617 |
if (_verbose && _context && Universe::is_fully_initialized()) { |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
618 |
os::print_register_info(st, _context); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
619 |
st->cr(); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
620 |
} |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
621 |
|
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
622 |
STEP(260, "(printing registers, top of stack, instructions near pc)") |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
623 |
|
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
624 |
// registers, top of stack, instructions near pc |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
625 |
if (_verbose && _context) { |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
626 |
os::print_context(st, _context); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
627 |
st->cr(); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
628 |
} |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
629 |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
630 |
STEP(265, "(printing code blob if possible)") |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
631 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
632 |
if (_verbose && _context) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
633 |
CodeBlob* cb = CodeCache::find_blob(_pc); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
634 |
if (cb != NULL) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
635 |
if (Interpreter::contains(_pc)) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
636 |
// The interpreter CodeBlob is very large so try to print the codelet instead. |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
637 |
InterpreterCodelet* codelet = Interpreter::codelet_containing(_pc); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
638 |
if (codelet != NULL) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
639 |
codelet->print_on(st); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
640 |
Disassembler::decode(codelet->code_begin(), codelet->code_end(), st); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
641 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
642 |
} else { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
643 |
StubCodeDesc* desc = StubCodeDesc::desc_for(_pc); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
644 |
if (desc != NULL) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
645 |
desc->print_on(st); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
646 |
Disassembler::decode(desc->begin(), desc->end(), st); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
647 |
} else { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
648 |
Disassembler::decode(cb, st); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
649 |
st->cr(); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
650 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
651 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
652 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
653 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32583
diff
changeset
|
654 |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
655 |
STEP(270, "(printing VM operation)" ) |
1 | 656 |
|
657 |
if (_verbose && _thread && _thread->is_VM_thread()) { |
|
658 |
VMThread* t = (VMThread*)_thread; |
|
659 |
VM_Operation* op = t->vm_operation(); |
|
660 |
if (op) { |
|
661 |
op->print_on_error(st); |
|
662 |
st->cr(); |
|
663 |
st->cr(); |
|
664 |
} |
|
665 |
} |
|
666 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
667 |
STEP(280, "(printing process)" ) |
1 | 668 |
|
669 |
if (_verbose) { |
|
670 |
st->cr(); |
|
671 |
st->print_cr("--------------- P R O C E S S ---------------"); |
|
672 |
st->cr(); |
|
673 |
} |
|
674 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
675 |
STEP(290, "(printing all threads)" ) |
1 | 676 |
|
677 |
// all threads |
|
678 |
if (_verbose && _thread) { |
|
679 |
Threads::print_on_error(st, _thread, buf, sizeof(buf)); |
|
680 |
st->cr(); |
|
681 |
} |
|
682 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
683 |
STEP(300, "(printing VM state)" ) |
1 | 684 |
|
685 |
if (_verbose) { |
|
686 |
// Safepoint state |
|
687 |
st->print("VM state:"); |
|
688 |
||
689 |
if (SafepointSynchronize::is_synchronizing()) st->print("synchronizing"); |
|
690 |
else if (SafepointSynchronize::is_at_safepoint()) st->print("at safepoint"); |
|
691 |
else st->print("not at safepoint"); |
|
692 |
||
693 |
// Also see if error occurred during initialization or shutdown |
|
694 |
if (!Universe::is_fully_initialized()) { |
|
695 |
st->print(" (not fully initialized)"); |
|
696 |
} else if (VM_Exit::vm_exited()) { |
|
697 |
st->print(" (shutting down)"); |
|
698 |
} else { |
|
699 |
st->print(" (normal execution)"); |
|
700 |
} |
|
701 |
st->cr(); |
|
702 |
st->cr(); |
|
703 |
} |
|
704 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
705 |
STEP(310, "(printing owned locks on error)" ) |
1 | 706 |
|
707 |
// mutexes/monitors that currently have an owner |
|
708 |
if (_verbose) { |
|
709 |
print_owned_locks_on_error(st); |
|
710 |
st->cr(); |
|
711 |
} |
|
712 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
713 |
STEP(320, "(printing number of OutOfMemoryError and StackOverflow exceptions)") |
31335
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
30773
diff
changeset
|
714 |
|
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
30773
diff
changeset
|
715 |
if (_verbose && Exceptions::has_exception_counts()) { |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
30773
diff
changeset
|
716 |
st->print_cr("OutOfMemory and StackOverflow Exception counts:"); |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
30773
diff
changeset
|
717 |
Exceptions::print_exception_counts_on_error(st); |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
30773
diff
changeset
|
718 |
st->cr(); |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
30773
diff
changeset
|
719 |
} |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
30773
diff
changeset
|
720 |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
721 |
STEP(330, "(printing compressed oops mode") |
31335
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
30773
diff
changeset
|
722 |
|
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
30773
diff
changeset
|
723 |
if (_verbose && UseCompressedOops) { |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
30773
diff
changeset
|
724 |
Universe::print_compressed_oops_mode(st); |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
30773
diff
changeset
|
725 |
if (UseCompressedClassPointers) { |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
30773
diff
changeset
|
726 |
Metaspace::print_compressed_class_space(st); |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
30773
diff
changeset
|
727 |
} |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
30773
diff
changeset
|
728 |
st->cr(); |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
30773
diff
changeset
|
729 |
} |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
30773
diff
changeset
|
730 |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
731 |
STEP(340, "(printing heap information)" ) |
1 | 732 |
|
733 |
if (_verbose && Universe::is_fully_initialized()) { |
|
16685
41c34debcde0
8011872: Include Bit Map addresses in the hs_err files
stefank
parents:
15602
diff
changeset
|
734 |
Universe::heap()->print_on_error(st); |
12268 | 735 |
st->cr(); |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33131
diff
changeset
|
736 |
st->print_cr("Polling page: " INTPTR_FORMAT, p2i(os::get_polling_page())); |
12268 | 737 |
st->cr(); |
1 | 738 |
} |
739 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
740 |
STEP(350, "(printing code cache information)" ) |
7108 | 741 |
|
742 |
if (_verbose && Universe::is_fully_initialized()) { |
|
743 |
// print code cache information before vm abort |
|
15201
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14477
diff
changeset
|
744 |
CodeCache::print_summary(st); |
7108 | 745 |
st->cr(); |
746 |
} |
|
747 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
748 |
STEP(360, "(printing ring buffers)" ) |
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11483
diff
changeset
|
749 |
|
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11483
diff
changeset
|
750 |
if (_verbose) { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11483
diff
changeset
|
751 |
Events::print_all(st); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11483
diff
changeset
|
752 |
st->cr(); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11483
diff
changeset
|
753 |
} |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11483
diff
changeset
|
754 |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
755 |
STEP(370, "(printing dynamic libraries)" ) |
1 | 756 |
|
757 |
if (_verbose) { |
|
758 |
// dynamic libraries, or memory map |
|
759 |
os::print_dll_info(st); |
|
760 |
st->cr(); |
|
761 |
} |
|
762 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
763 |
STEP(380, "(printing VM options)" ) |
1 | 764 |
|
765 |
if (_verbose) { |
|
766 |
// VM options |
|
767 |
Arguments::print_on(st); |
|
768 |
st->cr(); |
|
769 |
} |
|
770 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
771 |
STEP(390, "(printing warning if internal testing API used)" ) |
12095 | 772 |
|
773 |
if (WhiteBox::used()) { |
|
774 |
st->print_cr("Unsupported internal testing APIs have been used."); |
|
775 |
st->cr(); |
|
776 |
} |
|
777 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
778 |
STEP(400, "(printing all environment variables)" ) |
1 | 779 |
|
780 |
if (_verbose) { |
|
30125 | 781 |
os::print_environment_variables(st, env_list); |
1 | 782 |
st->cr(); |
783 |
} |
|
784 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
785 |
STEP(410, "(printing signal handlers)" ) |
1 | 786 |
|
787 |
if (_verbose) { |
|
788 |
os::print_signal_handlers(st, buf, sizeof(buf)); |
|
789 |
st->cr(); |
|
790 |
} |
|
791 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
792 |
STEP(420, "(Native Memory Tracking)" ) |
25946 | 793 |
if (_verbose) { |
27162
0a4a7276949b
8059100: SIGSEGV VirtualMemoryTracker::remove_released_region
coleenp
parents:
26821
diff
changeset
|
794 |
MemTracker::error_report(st); |
25946 | 795 |
} |
796 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
797 |
STEP(430, "(printing system)" ) |
1 | 798 |
|
799 |
if (_verbose) { |
|
800 |
st->cr(); |
|
801 |
st->print_cr("--------------- S Y S T E M ---------------"); |
|
802 |
st->cr(); |
|
803 |
} |
|
804 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
805 |
STEP(440, "(printing OS information)" ) |
1 | 806 |
|
807 |
if (_verbose) { |
|
808 |
os::print_os_info(st); |
|
809 |
st->cr(); |
|
810 |
} |
|
811 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
812 |
STEP(450, "(printing CPU info)" ) |
1 | 813 |
if (_verbose) { |
31356
55ee785c49c5
8085865: hs_err improvement: Printing /proc/cpuinfo makes too long hs_err files
coleenp
parents:
31335
diff
changeset
|
814 |
os::print_cpu_info(st, buf, sizeof(buf)); |
1 | 815 |
st->cr(); |
816 |
} |
|
817 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
818 |
STEP(460, "(printing memory info)" ) |
1 | 819 |
|
820 |
if (_verbose) { |
|
821 |
os::print_memory_info(st); |
|
822 |
st->cr(); |
|
823 |
} |
|
824 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
825 |
STEP(470, "(printing internal vm info)" ) |
1 | 826 |
|
827 |
if (_verbose) { |
|
828 |
st->print_cr("vm_info: %s", Abstract_VM_Version::internal_vm_info_string()); |
|
829 |
st->cr(); |
|
830 |
} |
|
831 |
||
28943
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28513
diff
changeset
|
832 |
// print a defined marker to show that error handling finished correctly. |
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31615
diff
changeset
|
833 |
STEP(480, "(printing end marker)" ) |
28943
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28513
diff
changeset
|
834 |
|
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28513
diff
changeset
|
835 |
if (_verbose) { |
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28513
diff
changeset
|
836 |
st->print_cr("END."); |
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28513
diff
changeset
|
837 |
} |
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28513
diff
changeset
|
838 |
|
1 | 839 |
END |
840 |
||
841 |
# undef BEGIN |
|
842 |
# undef STEP |
|
843 |
# undef END |
|
844 |
} |
|
845 |
||
34139
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
846 |
// Report for the vm_info_cmd. This prints out the information above omitting |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
847 |
// crash and thread specific information. If output is added above, it should be added |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
848 |
// here also, if it is safe to call during a running process. |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
849 |
void VMError::print_vm_info(outputStream* st) { |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
850 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
851 |
char buf[O_BUFLEN]; |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
852 |
report_vm_version(st, buf, sizeof(buf)); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
853 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
854 |
// STEP("(printing summary)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
855 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
856 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
857 |
st->print_cr("--------------- S U M M A R Y ------------"); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
858 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
859 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
860 |
// STEP("(printing VM option summary)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
861 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
862 |
// VM options |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
863 |
Arguments::print_summary_on(st); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
864 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
865 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
866 |
// STEP("(printing summary machine and OS info)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
867 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
868 |
os::print_summary_info(st, buf, sizeof(buf)); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
869 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
870 |
// STEP("(printing date and time)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
871 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
872 |
os::print_date_and_time(st, buf, sizeof(buf)); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
873 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
874 |
// Skip: STEP("(printing thread)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
875 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
876 |
// STEP("(printing process)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
877 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
878 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
879 |
st->print_cr("--------------- P R O C E S S ---------------"); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
880 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
881 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
882 |
// STEP("(printing number of OutOfMemoryError and StackOverflow exceptions)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
883 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
884 |
if (Exceptions::has_exception_counts()) { |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
885 |
st->print_cr("OutOfMemory and StackOverflow Exception counts:"); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
886 |
Exceptions::print_exception_counts_on_error(st); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
887 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
888 |
} |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
889 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
890 |
// STEP("(printing compressed oops mode") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
891 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
892 |
if (UseCompressedOops) { |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
893 |
Universe::print_compressed_oops_mode(st); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
894 |
if (UseCompressedClassPointers) { |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
895 |
Metaspace::print_compressed_class_space(st); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
896 |
} |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
897 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
898 |
} |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
899 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
900 |
// STEP("(printing heap information)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
901 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
902 |
if (Universe::is_fully_initialized()) { |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
903 |
Universe::heap()->print_on_error(st); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
904 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
905 |
st->print_cr("Polling page: " INTPTR_FORMAT, p2i(os::get_polling_page())); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
906 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
907 |
} |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
908 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
909 |
// STEP("(printing code cache information)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
910 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
911 |
if (Universe::is_fully_initialized()) { |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
912 |
// print code cache information before vm abort |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
913 |
CodeCache::print_summary(st); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
914 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
915 |
} |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
916 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
917 |
// STEP("(printing ring buffers)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
918 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
919 |
Events::print_all(st); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
920 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
921 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
922 |
// STEP("(printing dynamic libraries)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
923 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
924 |
// dynamic libraries, or memory map |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
925 |
os::print_dll_info(st); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
926 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
927 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
928 |
// STEP("(printing VM options)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
929 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
930 |
// VM options |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
931 |
Arguments::print_on(st); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
932 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
933 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
934 |
// STEP("(printing warning if internal testing API used)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
935 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
936 |
if (WhiteBox::used()) { |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
937 |
st->print_cr("Unsupported internal testing APIs have been used."); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
938 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
939 |
} |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
940 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
941 |
// STEP("(printing all environment variables)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
942 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
943 |
os::print_environment_variables(st, env_list); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
944 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
945 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
946 |
// STEP("(printing signal handlers)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
947 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
948 |
os::print_signal_handlers(st, buf, sizeof(buf)); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
949 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
950 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
951 |
// STEP("(Native Memory Tracking)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
952 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
953 |
MemTracker::error_report(st); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
954 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
955 |
// STEP("(printing system)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
956 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
957 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
958 |
st->print_cr("--------------- S Y S T E M ---------------"); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
959 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
960 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
961 |
// STEP("(printing OS information)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
962 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
963 |
os::print_os_info(st); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
964 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
965 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
966 |
// STEP("(printing CPU info)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
967 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
968 |
os::print_cpu_info(st, buf, sizeof(buf)); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
969 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
970 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
971 |
// STEP("(printing memory info)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
972 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
973 |
os::print_memory_info(st); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
974 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
975 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
976 |
// STEP("(printing internal vm info)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
977 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
978 |
st->print_cr("vm_info: %s", Abstract_VM_Version::internal_vm_info_string()); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
979 |
st->cr(); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
980 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
981 |
// print a defined marker to show that error handling finished correctly. |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
982 |
// STEP("(printing end marker)") |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
983 |
|
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
984 |
st->print_cr("END."); |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
985 |
} |
0728fe06ccf8
8027429: Add diagnostic command VM.info to get hs_err print-out
coleenp
parents:
33198
diff
changeset
|
986 |
|
33131
a8ad9de9e5a4
8138832: CreateCoredumpOnCrash on linux ARM causes assert message to be repeated.
david
parents:
33105
diff
changeset
|
987 |
volatile intptr_t VMError::first_error_tid = -1; |
1 | 988 |
|
18487
270ef05ebce8
7060111: race condition in VMError::report_and_die()
fparain
parents:
17134
diff
changeset
|
989 |
// An error could happen before tty is initialized or after it has been |
35869 | 990 |
// destroyed. |
991 |
// Please note: to prevent large stack allocations, the log- and |
|
992 |
// output-stream use a global scratch buffer for format printing. |
|
993 |
// (see VmError::report_and_die(). Access to those streams is synchronized |
|
994 |
// in VmError::report_and_die() - there is only one reporting thread at |
|
995 |
// any given time. |
|
18487
270ef05ebce8
7060111: race condition in VMError::report_and_die()
fparain
parents:
17134
diff
changeset
|
996 |
fdStream VMError::out(defaultStream::output_fd()); |
270ef05ebce8
7060111: race condition in VMError::report_and_die()
fparain
parents:
17134
diff
changeset
|
997 |
fdStream VMError::log; // error log used by VMError::report_and_die() |
270ef05ebce8
7060111: race condition in VMError::report_and_die()
fparain
parents:
17134
diff
changeset
|
998 |
|
17121
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
999 |
/** Expand a pattern into a buffer starting at pos and open a file using constructed path */ |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1000 |
static int expand_and_open(const char* pattern, char* buf, size_t buflen, size_t pos) { |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1001 |
int fd = -1; |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1002 |
if (Arguments::copy_expand_pid(pattern, strlen(pattern), &buf[pos], buflen - pos)) { |
28513
9464a1b5c184
8050807: Better performing performance data handling
gthornbr
parents:
27471
diff
changeset
|
1003 |
// the O_EXCL flag will cause the open to fail if the file exists |
9464a1b5c184
8050807: Better performing performance data handling
gthornbr
parents:
27471
diff
changeset
|
1004 |
fd = open(buf, O_RDWR | O_CREAT | O_EXCL, 0666); |
17121
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1005 |
} |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1006 |
return fd; |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1007 |
} |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1008 |
|
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1009 |
/** |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1010 |
* Construct file name for a log file and return it's file descriptor. |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1011 |
* Name and location depends on pattern, default_pattern params and access |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1012 |
* permissions. |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1013 |
*/ |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1014 |
static int prepare_log_file(const char* pattern, const char* default_pattern, char* buf, size_t buflen) { |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1015 |
int fd = -1; |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1016 |
|
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1017 |
// If possible, use specified pattern to construct log file name |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1018 |
if (pattern != NULL) { |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1019 |
fd = expand_and_open(pattern, buf, buflen, 0); |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1020 |
} |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1021 |
|
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1022 |
// Either user didn't specify, or the user's location failed, |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1023 |
// so use the default name in the current directory |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1024 |
if (fd == -1) { |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1025 |
const char* cwd = os::get_current_directory(buf, buflen); |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1026 |
if (cwd != NULL) { |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1027 |
size_t pos = strlen(cwd); |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1028 |
int fsep_len = jio_snprintf(&buf[pos], buflen-pos, "%s", os::file_separator()); |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1029 |
pos += fsep_len; |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1030 |
if (fsep_len > 0) { |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1031 |
fd = expand_and_open(default_pattern, buf, buflen, pos); |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1032 |
} |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1033 |
} |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1034 |
} |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1035 |
|
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1036 |
// try temp directory if it exists. |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1037 |
if (fd == -1) { |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1038 |
const char* tmpdir = os::get_temp_directory(); |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1039 |
if (tmpdir != NULL && strlen(tmpdir) > 0) { |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1040 |
int pos = jio_snprintf(buf, buflen, "%s%s", tmpdir, os::file_separator()); |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1041 |
if (pos > 0) { |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1042 |
fd = expand_and_open(default_pattern, buf, buflen, pos); |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1043 |
} |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1044 |
} |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1045 |
} |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1046 |
|
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1047 |
return fd; |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1048 |
} |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1049 |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1050 |
int VMError::_id; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1051 |
const char* VMError::_message; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1052 |
char VMError::_detail_msg[1024]; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1053 |
Thread* VMError::_thread; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1054 |
address VMError::_pc; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1055 |
void* VMError::_siginfo; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1056 |
void* VMError::_context; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1057 |
const char* VMError::_filename; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1058 |
int VMError::_lineno; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1059 |
size_t VMError::_size; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1060 |
|
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1061 |
void VMError::report_and_die(Thread* thread, unsigned int sig, address pc, void* siginfo, |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1062 |
void* context, const char* detail_fmt, ...) |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1063 |
{ |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1064 |
va_list detail_args; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1065 |
va_start(detail_args, detail_fmt); |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1066 |
report_and_die(sig, NULL, detail_fmt, detail_args, thread, pc, siginfo, context, NULL, 0, 0); |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1067 |
va_end(detail_args); |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1068 |
} |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1069 |
|
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1070 |
void VMError::report_and_die(Thread* thread, unsigned int sig, address pc, void* siginfo, void* context) |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1071 |
{ |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1072 |
report_and_die(thread, sig, pc, siginfo, context, "%s", ""); |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1073 |
} |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1074 |
|
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1075 |
void VMError::report_and_die(const char* message, const char* detail_fmt, ...) |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1076 |
{ |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1077 |
va_list detail_args; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1078 |
va_start(detail_args, detail_fmt); |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1079 |
report_and_die(INTERNAL_ERROR, message, detail_fmt, detail_args, NULL, NULL, NULL, NULL, NULL, 0, 0); |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1080 |
va_end(detail_args); |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1081 |
} |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1082 |
|
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1083 |
void VMError::report_and_die(const char* message) |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1084 |
{ |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1085 |
report_and_die(message, "%s", ""); |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1086 |
} |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1087 |
|
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1088 |
void VMError::report_and_die(Thread* thread, const char* filename, int lineno, const char* message, |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1089 |
const char* detail_fmt, va_list detail_args) |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1090 |
{ |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1091 |
report_and_die(INTERNAL_ERROR, message, detail_fmt, detail_args, thread, NULL, NULL, NULL, filename, lineno, 0); |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1092 |
} |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1093 |
|
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1094 |
void VMError::report_and_die(Thread* thread, const char* filename, int lineno, size_t size, |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1095 |
VMErrorType vm_err_type, const char* detail_fmt, va_list detail_args) { |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1096 |
report_and_die(vm_err_type, NULL, detail_fmt, detail_args, thread, NULL, NULL, NULL, filename, lineno, size); |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1097 |
} |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1098 |
|
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1099 |
void VMError::report_and_die(int id, const char* message, const char* detail_fmt, va_list detail_args, |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1100 |
Thread* thread, address pc, void* siginfo, void* context, const char* filename, |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1101 |
int lineno, size_t size) |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1102 |
{ |
1 | 1103 |
// Don't allocate large buffer on stack |
1104 |
static char buffer[O_BUFLEN]; |
|
35869 | 1105 |
out.set_scratch_buffer(buffer, sizeof(buffer)); |
1106 |
log.set_scratch_buffer(buffer, sizeof(buffer)); |
|
1 | 1107 |
|
1108 |
// How many errors occurred in error handler when reporting first_error. |
|
1109 |
static int recursive_error_count; |
|
1110 |
||
1111 |
// We will first print a brief message to standard out (verbose = false), |
|
1112 |
// then save detailed information in log file (verbose = true). |
|
1113 |
static bool out_done = false; // done printing to standard out |
|
1114 |
static bool log_done = false; // done saving error log |
|
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7901
diff
changeset
|
1115 |
static bool transmit_report_done = false; // done error reporting |
1 | 1116 |
|
1117 |
if (SuppressFatalErrorMessage) { |
|
30240
a7ba42fa1df6
8074354: Make CreateMinidumpOnCrash a new name and available on all platforms
minqi
parents:
30125
diff
changeset
|
1118 |
os::abort(CreateCoredumpOnCrash); |
1 | 1119 |
} |
33131
a8ad9de9e5a4
8138832: CreateCoredumpOnCrash on linux ARM causes assert message to be repeated.
david
parents:
33105
diff
changeset
|
1120 |
intptr_t mytid = os::current_thread_id(); |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1121 |
if (first_error_tid == -1 && |
33131
a8ad9de9e5a4
8138832: CreateCoredumpOnCrash on linux ARM causes assert message to be repeated.
david
parents:
33105
diff
changeset
|
1122 |
Atomic::cmpxchg_ptr(mytid, &first_error_tid, -1) == -1) { |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1123 |
|
36320
3d35d1e1dfde
8150441: CompileTask::print_impl() is broken after JDK-8146905
thartmann
parents:
35913
diff
changeset
|
1124 |
// Initialize time stamps to use the same base. |
3d35d1e1dfde
8150441: CompileTask::print_impl() is broken after JDK-8146905
thartmann
parents:
35913
diff
changeset
|
1125 |
out.time_stamp().update_to(1); |
3d35d1e1dfde
8150441: CompileTask::print_impl() is broken after JDK-8146905
thartmann
parents:
35913
diff
changeset
|
1126 |
log.time_stamp().update_to(1); |
3d35d1e1dfde
8150441: CompileTask::print_impl() is broken after JDK-8146905
thartmann
parents:
35913
diff
changeset
|
1127 |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1128 |
_id = id; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1129 |
_message = message; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1130 |
_thread = thread; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1131 |
_pc = pc; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1132 |
_siginfo = siginfo; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1133 |
_context = context; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1134 |
_filename = filename; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1135 |
_lineno = lineno; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1136 |
_size = size; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1137 |
jio_vsnprintf(_detail_msg, sizeof(_detail_msg), detail_fmt, detail_args); |
1 | 1138 |
|
1139 |
// first time |
|
1140 |
set_error_reported(); |
|
1141 |
||
8476
7e34c2d4cf9b
7022037: Pause when exiting if debugger is attached on windows
sla
parents:
8119
diff
changeset
|
1142 |
if (ShowMessageBoxOnError || PauseAtExit) { |
1 | 1143 |
show_message_box(buffer, sizeof(buffer)); |
1144 |
||
1145 |
// User has asked JVM to abort. Reset ShowMessageBoxOnError so the |
|
1146 |
// WatcherThread can kill JVM if the error handler hangs. |
|
1147 |
ShowMessageBoxOnError = false; |
|
1148 |
} |
|
1149 |
||
30240
a7ba42fa1df6
8074354: Make CreateMinidumpOnCrash a new name and available on all platforms
minqi
parents:
30125
diff
changeset
|
1150 |
os::check_dump_limit(buffer, sizeof(buffer)); |
8119
81eef1b06988
7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
8114
diff
changeset
|
1151 |
|
1 | 1152 |
// reset signal handlers or exception filter; make sure recursive crashes |
1153 |
// are handled properly. |
|
1154 |
reset_signal_handlers(); |
|
1155 |
||
1156 |
} else { |
|
1887
0ed88ac17540
4997835: RFE: crash dump will only be created when running w/ -XX:+ShowMessageBoxOnError
coleenp
parents:
1660
diff
changeset
|
1157 |
// If UseOsErrorReporting we call this for each level of the call stack |
0ed88ac17540
4997835: RFE: crash dump will only be created when running w/ -XX:+ShowMessageBoxOnError
coleenp
parents:
1660
diff
changeset
|
1158 |
// while searching for the exception handler. Only the first level needs |
0ed88ac17540
4997835: RFE: crash dump will only be created when running w/ -XX:+ShowMessageBoxOnError
coleenp
parents:
1660
diff
changeset
|
1159 |
// to be reported. |
0ed88ac17540
4997835: RFE: crash dump will only be created when running w/ -XX:+ShowMessageBoxOnError
coleenp
parents:
1660
diff
changeset
|
1160 |
if (UseOSErrorReporting && log_done) return; |
0ed88ac17540
4997835: RFE: crash dump will only be created when running w/ -XX:+ShowMessageBoxOnError
coleenp
parents:
1660
diff
changeset
|
1161 |
|
1 | 1162 |
// This is not the first error, see if it happened in a different thread |
1163 |
// or in the same thread during error reporting. |
|
1164 |
if (first_error_tid != mytid) { |
|
18684 | 1165 |
char msgbuf[64]; |
1166 |
jio_snprintf(msgbuf, sizeof(msgbuf), |
|
33131
a8ad9de9e5a4
8138832: CreateCoredumpOnCrash on linux ARM causes assert message to be repeated.
david
parents:
33105
diff
changeset
|
1167 |
"[thread " INTX_FORMAT " also had an error]", |
1 | 1168 |
mytid); |
18684 | 1169 |
out.print_raw_cr(msgbuf); |
1 | 1170 |
|
1171 |
// error reporting is not MT-safe, block current thread |
|
1172 |
os::infinite_sleep(); |
|
1173 |
||
1174 |
} else { |
|
1175 |
if (recursive_error_count++ > 30) { |
|
1176 |
out.print_raw_cr("[Too many errors, abort]"); |
|
1177 |
os::die(); |
|
1178 |
} |
|
1179 |
||
1180 |
jio_snprintf(buffer, sizeof(buffer), |
|
1181 |
"[error occurred during error reporting %s, id 0x%x]", |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1182 |
_current_step_info, _id); |
1 | 1183 |
if (log.is_open()) { |
1184 |
log.cr(); |
|
1185 |
log.print_raw_cr(buffer); |
|
1186 |
log.cr(); |
|
1187 |
} else { |
|
1188 |
out.cr(); |
|
1189 |
out.print_raw_cr(buffer); |
|
1190 |
out.cr(); |
|
1191 |
} |
|
1192 |
} |
|
1193 |
} |
|
1194 |
||
1195 |
// print to screen |
|
1196 |
if (!out_done) { |
|
35869 | 1197 |
report(&out, false); |
1 | 1198 |
|
1199 |
out_done = true; |
|
1200 |
||
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1201 |
_current_step = 0; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1202 |
_current_step_info = ""; |
1 | 1203 |
} |
1204 |
||
1205 |
// print to error log file |
|
1206 |
if (!log_done) { |
|
1207 |
// see if log file is already open |
|
1208 |
if (!log.is_open()) { |
|
1209 |
// open log file |
|
17121
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1210 |
int fd = prepare_log_file(ErrorFile, "hs_err_pid%p.log", buffer, sizeof(buffer)); |
1 | 1211 |
if (fd != -1) { |
1212 |
out.print_raw("# An error report file with more information is saved as:\n# "); |
|
1213 |
out.print_raw_cr(buffer); |
|
1214 |
||
1215 |
log.set_fd(fd); |
|
1216 |
} else { |
|
1217 |
out.print_raw_cr("# Can not save log file, dump to screen.."); |
|
1218 |
log.set_fd(defaultStream::output_fd()); |
|
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7901
diff
changeset
|
1219 |
/* Error reporting currently needs dumpfile. |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7901
diff
changeset
|
1220 |
* Maybe implement direct streaming in the future.*/ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7901
diff
changeset
|
1221 |
transmit_report_done = true; |
1 | 1222 |
} |
1223 |
} |
|
1224 |
||
35869 | 1225 |
report(&log, true); |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1226 |
_current_step = 0; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1227 |
_current_step_info = ""; |
1 | 1228 |
|
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7901
diff
changeset
|
1229 |
// Run error reporting to determine whether or not to report the crash. |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1230 |
if (!transmit_report_done && should_report_bug(_id)) { |
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7901
diff
changeset
|
1231 |
transmit_report_done = true; |
27471 | 1232 |
const int fd2 = ::dup(log.fd()); |
1233 |
FILE* const hs_err = ::fdopen(fd2, "r"); |
|
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7901
diff
changeset
|
1234 |
if (NULL != hs_err) { |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7901
diff
changeset
|
1235 |
ErrorReporter er; |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7901
diff
changeset
|
1236 |
er.call(hs_err, buffer, O_BUFLEN); |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7901
diff
changeset
|
1237 |
} |
27471 | 1238 |
::fclose(hs_err); |
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7901
diff
changeset
|
1239 |
} |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7901
diff
changeset
|
1240 |
|
1 | 1241 |
if (log.fd() != defaultStream::output_fd()) { |
1242 |
close(log.fd()); |
|
1243 |
} |
|
1244 |
||
1245 |
log.set_fd(-1); |
|
1246 |
log_done = true; |
|
1247 |
} |
|
1248 |
||
22243 | 1249 |
static bool skip_replay = ReplayCompiles; // Do not overwrite file during replay |
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
14289
diff
changeset
|
1250 |
if (DumpReplayDataOnError && _thread && _thread->is_Compiler_thread() && !skip_replay) { |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
14289
diff
changeset
|
1251 |
skip_replay = true; |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
14289
diff
changeset
|
1252 |
ciEnv* env = ciEnv::current(); |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
14289
diff
changeset
|
1253 |
if (env != NULL) { |
17121
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1254 |
int fd = prepare_log_file(ReplayDataFile, "replay_pid%p.log", buffer, sizeof(buffer)); |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1255 |
if (fd != -1) { |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1256 |
FILE* replay_data_file = os::open(fd, "w"); |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1257 |
if (replay_data_file != NULL) { |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1258 |
fileStream replay_data_stream(replay_data_file, /*need_close=*/true); |
20692
65021f70c2fc
8024943: ciReplay: fails to dump replay data during safepointing
vlivanov
parents:
19952
diff
changeset
|
1259 |
env->dump_replay_data_unsafe(&replay_data_stream); |
17121
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1260 |
out.print_raw("#\n# Compiler replay data is saved as:\n# "); |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1261 |
out.print_raw_cr(buffer); |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1262 |
} else { |
37113 | 1263 |
int e = errno; |
17121
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1264 |
out.print_raw("#\n# Can't open file to dump replay data. Error: "); |
37113 | 1265 |
out.print_raw_cr(os::strerror(e)); |
17121
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1266 |
} |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16685
diff
changeset
|
1267 |
} |
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
14289
diff
changeset
|
1268 |
} |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
14289
diff
changeset
|
1269 |
} |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
14289
diff
changeset
|
1270 |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1271 |
static bool skip_bug_url = !should_report_bug(_id); |
1 | 1272 |
if (!skip_bug_url) { |
1273 |
skip_bug_url = true; |
|
1274 |
||
1275 |
out.print_raw_cr("#"); |
|
1276 |
print_bug_submit_message(&out, _thread); |
|
1277 |
} |
|
1278 |
||
35568
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1279 |
static bool skip_OnError = false; |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1280 |
if (!skip_OnError && OnError && OnError[0]) { |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1281 |
skip_OnError = true; |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1282 |
|
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1283 |
// Flush output and finish logs before running OnError commands. |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1284 |
ostream_abort(); |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1285 |
|
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1286 |
out.print_raw_cr("#"); |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1287 |
out.print_raw ("# -XX:OnError=\""); |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1288 |
out.print_raw (OnError); |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1289 |
out.print_raw_cr("\""); |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1290 |
|
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1291 |
char* cmd; |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1292 |
const char* ptr = OnError; |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1293 |
while ((cmd = next_OnError_command(buffer, sizeof(buffer), &ptr)) != NULL){ |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1294 |
out.print_raw ("# Executing "); |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1295 |
#if defined(LINUX) || defined(_ALLBSD_SOURCE) |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1296 |
out.print_raw ("/bin/sh -c "); |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1297 |
#elif defined(SOLARIS) |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1298 |
out.print_raw ("/usr/bin/sh -c "); |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1299 |
#endif |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1300 |
out.print_raw ("\""); |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1301 |
out.print_raw (cmd); |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1302 |
out.print_raw_cr("\" ..."); |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1303 |
|
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1304 |
if (os::fork_and_exec(cmd) < 0) { |
37113 | 1305 |
out.print_cr("os::fork_and_exec failed: %s (%s=%d)", |
1306 |
os::strerror(errno), os::errno_name(errno), errno); |
|
35568
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1307 |
} |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1308 |
} |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1309 |
|
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1310 |
// done with OnError |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1311 |
OnError = NULL; |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1312 |
} |
8dfb205a2886
6985422: flush the output streams before OnError commands
vlivanov
parents:
35176
diff
changeset
|
1313 |
|
1 | 1314 |
if (!UseOSErrorReporting) { |
1315 |
// os::abort() will call abort hooks, try it first. |
|
1316 |
static bool skip_os_abort = false; |
|
1317 |
if (!skip_os_abort) { |
|
1318 |
skip_os_abort = true; |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1319 |
bool dump_core = should_report_bug(_id); |
30240
a7ba42fa1df6
8074354: Make CreateMinidumpOnCrash a new name and available on all platforms
minqi
parents:
30125
diff
changeset
|
1320 |
os::abort(dump_core && CreateCoredumpOnCrash, _siginfo, _context); |
1 | 1321 |
} |
1322 |
||
1323 |
// if os::abort() doesn't abort, try os::die(); |
|
1324 |
os::die(); |
|
1325 |
} |
|
1326 |
} |
|
1327 |
||
1328 |
/* |
|
1329 |
* OnOutOfMemoryError scripts/commands executed while VM is a safepoint - this |
|
1330 |
* ensures utilities such as jmap can observe the process is a consistent state. |
|
1331 |
*/ |
|
1332 |
class VM_ReportJavaOutOfMemory : public VM_Operation { |
|
1333 |
private: |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1334 |
const char* _message; |
1 | 1335 |
public: |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1336 |
VM_ReportJavaOutOfMemory(const char* message) { _message = message; } |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1337 |
VMOp_Type type() const { return VMOp_ReportJavaOutOfMemory; } |
1 | 1338 |
void doit(); |
1339 |
}; |
|
1340 |
||
1341 |
void VM_ReportJavaOutOfMemory::doit() { |
|
1342 |
// Don't allocate large buffer on stack |
|
1343 |
static char buffer[O_BUFLEN]; |
|
1344 |
||
1345 |
tty->print_cr("#"); |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1346 |
tty->print_cr("# java.lang.OutOfMemoryError: %s", _message); |
1 | 1347 |
tty->print_cr("# -XX:OnOutOfMemoryError=\"%s\"", OnOutOfMemoryError); |
1348 |
||
1349 |
// make heap parsability |
|
1350 |
Universe::heap()->ensure_parsability(false); // no need to retire TLABs |
|
1351 |
||
1352 |
char* cmd; |
|
1353 |
const char* ptr = OnOutOfMemoryError; |
|
1354 |
while ((cmd = next_OnError_command(buffer, sizeof(buffer), &ptr)) != NULL){ |
|
1355 |
tty->print("# Executing "); |
|
1356 |
#if defined(LINUX) |
|
1357 |
tty->print ("/bin/sh -c "); |
|
1358 |
#elif defined(SOLARIS) |
|
1359 |
tty->print ("/usr/bin/sh -c "); |
|
1360 |
#endif |
|
1361 |
tty->print_cr("\"%s\"...", cmd); |
|
1362 |
||
30745
8ebe80838174
8078470: [Linux] Replace syscall use in os::fork_and_exec with glibc fork() and execve()
dholmes
parents:
30622
diff
changeset
|
1363 |
if (os::fork_and_exec(cmd) < 0) { |
37113 | 1364 |
tty->print_cr("os::fork_and_exec failed: %s (%s=%d)", |
1365 |
os::strerror(errno), os::errno_name(errno), errno); |
|
30745
8ebe80838174
8078470: [Linux] Replace syscall use in os::fork_and_exec with glibc fork() and execve()
dholmes
parents:
30622
diff
changeset
|
1366 |
} |
1 | 1367 |
} |
1368 |
} |
|
1369 |
||
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1370 |
void VMError::report_java_out_of_memory(const char* message) { |
1 | 1371 |
if (OnOutOfMemoryError && OnOutOfMemoryError[0]) { |
1372 |
MutexLocker ml(Heap_lock); |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32583
diff
changeset
|
1373 |
VM_ReportJavaOutOfMemory op(message); |
1 | 1374 |
VMThread::execute(&op); |
1375 |
} |
|
1376 |
} |
|
34305
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34139
diff
changeset
|
1377 |
|
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34139
diff
changeset
|
1378 |
void VMError::show_message_box(char *buf, int buflen) { |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34139
diff
changeset
|
1379 |
bool yes; |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34139
diff
changeset
|
1380 |
do { |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34139
diff
changeset
|
1381 |
error_string(buf, buflen); |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34139
diff
changeset
|
1382 |
yes = os::start_debugging(buf,buflen); |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34139
diff
changeset
|
1383 |
} while (yes); |
e399e6b44631
8136978: Much nearly duplicated code for vmError support
sebastian
parents:
34139
diff
changeset
|
1384 |
} |