author | gziemski |
Mon, 23 Apr 2018 10:59:39 -0500 | |
changeset 49857 | 31e07291ae29 |
parent 49671 | 015af70b9a1d |
child 49860 | ca5216a2a2cc |
permissions | -rw-r--r-- |
1 | 1 |
/* |
49061
a6b6a428c915
8198635: Remove unused safepoint message functions and ShowSafepointMsgs
coleenp
parents:
47891
diff
changeset
|
2 |
* Copyright (c) 1997, 2018, 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 |
||
7397 | 25 |
#include "precompiled.hpp" |
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47216
diff
changeset
|
26 |
#include "jvm.h" |
7397 | 27 |
#include "classfile/systemDictionary.hpp" |
28 |
#include "code/codeCache.hpp" |
|
29 |
#include "code/icBuffer.hpp" |
|
30 |
#include "code/nmethod.hpp" |
|
31 |
#include "code/vtableStubs.hpp" |
|
32 |
#include "compiler/compileBroker.hpp" |
|
33 |
#include "compiler/disassembler.hpp" |
|
30764 | 34 |
#include "gc/shared/collectedHeap.hpp" |
7397 | 35 |
#include "interpreter/bytecodeHistogram.hpp" |
36 |
#include "interpreter/interpreter.hpp" |
|
37 |
#include "memory/resourceArea.hpp" |
|
38 |
#include "memory/universe.hpp" |
|
39 |
#include "oops/oop.inline.hpp" |
|
40 |
#include "prims/privilegedStack.hpp" |
|
41 |
#include "runtime/arguments.hpp" |
|
40655
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
39274
diff
changeset
|
42 |
#include "runtime/atomic.hpp" |
49857
31e07291ae29
8081519: Split globals.hpp to factor out the Flag class
gziemski
parents:
49671
diff
changeset
|
43 |
#include "runtime/flags/flagSetting.hpp" |
49480
d7df2dd501ce
8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents:
49061
diff
changeset
|
44 |
#include "runtime/frame.inline.hpp" |
d7df2dd501ce
8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents:
49061
diff
changeset
|
45 |
#include "runtime/handles.inline.hpp" |
7397 | 46 |
#include "runtime/java.hpp" |
25468
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
25351
diff
changeset
|
47 |
#include "runtime/os.hpp" |
7397 | 48 |
#include "runtime/sharedRuntime.hpp" |
49 |
#include "runtime/stubCodeGenerator.hpp" |
|
50 |
#include "runtime/stubRoutines.hpp" |
|
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
14076
diff
changeset
|
51 |
#include "runtime/thread.inline.hpp" |
7397 | 52 |
#include "runtime/vframe.hpp" |
25715
d5a8dbdc5150
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents:
25468
diff
changeset
|
53 |
#include "runtime/vm_version.hpp" |
7397 | 54 |
#include "services/heapDumper.hpp" |
55 |
#include "utilities/defaultStream.hpp" |
|
56 |
#include "utilities/events.hpp" |
|
46560
388aa8d67c80
8181449: Fix debug.hpp / globalDefinitions.hpp dependency inversion
kbarrett
parents:
46408
diff
changeset
|
57 |
#include "utilities/formatBuffer.hpp" |
49653
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
58 |
#include "utilities/globalDefinitions.hpp" |
36384 | 59 |
#include "utilities/macros.hpp" |
7397 | 60 |
#include "utilities/vmError.hpp" |
1 | 61 |
|
38254 | 62 |
#include <stdio.h> |
63 |
||
49653
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
64 |
// Support for showing register content on asserts/guarantees. |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
65 |
#ifdef CAN_SHOW_REGISTERS_ON_ASSERT |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
66 |
static char g_dummy; |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
67 |
char* g_assert_poison = &g_dummy; |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
68 |
static intx g_asserting_thread = 0; |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
69 |
static void* g_assertion_context = NULL; |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
70 |
#endif // CAN_SHOW_REGISTERS_ON_ASSERT |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
71 |
|
1 | 72 |
#ifndef ASSERT |
73 |
# ifdef _DEBUG |
|
74 |
// NOTE: don't turn the lines below into a comment -- if you're getting |
|
75 |
// a compile error here, change the settings to define ASSERT |
|
76 |
ASSERT should be defined when _DEBUG is defined. It is not intended to be used for debugging |
|
77 |
functions that do not slow down the system too much and thus can be left in optimized code. |
|
78 |
On the other hand, the code should not be included in a production version. |
|
79 |
# endif // _DEBUG |
|
80 |
#endif // ASSERT |
|
81 |
||
82 |
||
83 |
#ifdef _DEBUG |
|
84 |
# ifndef ASSERT |
|
85 |
configuration error: ASSERT must be defined in debug version |
|
86 |
# endif // ASSERT |
|
87 |
#endif // _DEBUG |
|
88 |
||
89 |
||
90 |
#ifdef PRODUCT |
|
91 |
# if -defined _DEBUG || -defined ASSERT |
|
92 |
configuration error: ASSERT et al. must not be defined in PRODUCT version |
|
93 |
# endif |
|
94 |
#endif // PRODUCT |
|
95 |
||
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
18683
diff
changeset
|
96 |
ATTRIBUTE_PRINTF(1, 2) |
1 | 97 |
void warning(const char* format, ...) { |
6967
c5ebdcf8372e
6392697: Additional flag needed to supress Hotspot warning messages
kamg
parents:
6445
diff
changeset
|
98 |
if (PrintWarnings) { |
13761 | 99 |
FILE* const err = defaultStream::error_stream(); |
100 |
jio_fprintf(err, "%s warning: ", VM_Version::vm_name()); |
|
6967
c5ebdcf8372e
6392697: Additional flag needed to supress Hotspot warning messages
kamg
parents:
6445
diff
changeset
|
101 |
va_list ap; |
c5ebdcf8372e
6392697: Additional flag needed to supress Hotspot warning messages
kamg
parents:
6445
diff
changeset
|
102 |
va_start(ap, format); |
13761 | 103 |
vfprintf(err, format, ap); |
6967
c5ebdcf8372e
6392697: Additional flag needed to supress Hotspot warning messages
kamg
parents:
6445
diff
changeset
|
104 |
va_end(ap); |
13761 | 105 |
fputc('\n', err); |
6967
c5ebdcf8372e
6392697: Additional flag needed to supress Hotspot warning messages
kamg
parents:
6445
diff
changeset
|
106 |
} |
1 | 107 |
if (BreakAtWarning) BREAKPOINT; |
108 |
} |
|
109 |
||
110 |
#ifndef PRODUCT |
|
111 |
||
112 |
#define is_token_break(ch) (isspace(ch) || (ch) == ',') |
|
113 |
||
114 |
static const char* last_file_name = NULL; |
|
115 |
static int last_line_no = -1; |
|
116 |
||
117 |
// assert/guarantee/... may happen very early during VM initialization. |
|
118 |
// Don't rely on anything that is initialized by Threads::create_vm(). For |
|
119 |
// example, don't use tty. |
|
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
120 |
bool error_is_suppressed(const char* file_name, int line_no) { |
1 | 121 |
// The following 1-element cache requires that passed-in |
122 |
// file names are always only constant literals. |
|
123 |
if (file_name == last_file_name && line_no == last_line_no) return true; |
|
124 |
||
125 |
int file_name_len = (int)strlen(file_name); |
|
126 |
char separator = os::file_separator()[0]; |
|
127 |
const char* base_name = strrchr(file_name, separator); |
|
128 |
if (base_name == NULL) |
|
129 |
base_name = file_name; |
|
130 |
||
131 |
// scan the SuppressErrorAt option |
|
132 |
const char* cp = SuppressErrorAt; |
|
133 |
for (;;) { |
|
134 |
const char* sfile; |
|
135 |
int sfile_len; |
|
136 |
int sline; |
|
137 |
bool noisy; |
|
138 |
while ((*cp) != '\0' && is_token_break(*cp)) cp++; |
|
139 |
if ((*cp) == '\0') break; |
|
140 |
sfile = cp; |
|
141 |
while ((*cp) != '\0' && !is_token_break(*cp) && (*cp) != ':') cp++; |
|
142 |
sfile_len = cp - sfile; |
|
143 |
if ((*cp) == ':') cp++; |
|
144 |
sline = 0; |
|
145 |
while ((*cp) != '\0' && isdigit(*cp)) { |
|
146 |
sline *= 10; |
|
147 |
sline += (*cp) - '0'; |
|
148 |
cp++; |
|
149 |
} |
|
150 |
// "file:line!" means the assert suppression is not silent |
|
151 |
noisy = ((*cp) == '!'); |
|
152 |
while ((*cp) != '\0' && !is_token_break(*cp)) cp++; |
|
153 |
// match the line |
|
154 |
if (sline != 0) { |
|
155 |
if (sline != line_no) continue; |
|
156 |
} |
|
157 |
// match the file |
|
158 |
if (sfile_len > 0) { |
|
159 |
const char* look = file_name; |
|
160 |
const char* look_max = file_name + file_name_len - sfile_len; |
|
161 |
const char* foundp; |
|
162 |
bool match = false; |
|
163 |
while (!match |
|
164 |
&& (foundp = strchr(look, sfile[0])) != NULL |
|
165 |
&& foundp <= look_max) { |
|
166 |
match = true; |
|
167 |
for (int i = 1; i < sfile_len; i++) { |
|
168 |
if (sfile[i] != foundp[i]) { |
|
169 |
match = false; |
|
170 |
break; |
|
171 |
} |
|
172 |
} |
|
173 |
look = foundp + 1; |
|
174 |
} |
|
175 |
if (!match) continue; |
|
176 |
} |
|
177 |
// got a match! |
|
178 |
if (noisy) { |
|
179 |
fdStream out(defaultStream::output_fd()); |
|
180 |
out.print_raw("[error suppressed at "); |
|
181 |
out.print_raw(base_name); |
|
182 |
char buf[16]; |
|
183 |
jio_snprintf(buf, sizeof(buf), ":%d]", line_no); |
|
184 |
out.print_raw_cr(buf); |
|
185 |
} else { |
|
186 |
// update 1-element cache for fast silent matches |
|
187 |
last_file_name = file_name; |
|
188 |
last_line_no = line_no; |
|
189 |
} |
|
190 |
return true; |
|
191 |
} |
|
192 |
||
46589 | 193 |
if (!VMError::is_error_reported() && !SuppressFatalErrorMessage) { |
1 | 194 |
// print a friendly hint: |
195 |
fdStream out(defaultStream::output_fd()); |
|
196 |
out.print_raw_cr("# To suppress the following error report, specify this argument"); |
|
197 |
out.print_raw ("# after -XX: or in .hotspotrc: SuppressErrorAt="); |
|
198 |
out.print_raw (base_name); |
|
199 |
char buf[16]; |
|
200 |
jio_snprintf(buf, sizeof(buf), ":%d", line_no); |
|
201 |
out.print_raw_cr(buf); |
|
202 |
} |
|
203 |
return false; |
|
204 |
} |
|
205 |
||
206 |
#undef is_token_break |
|
207 |
||
208 |
#else |
|
209 |
||
210 |
// Place-holder for non-existent suppression check: |
|
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
211 |
#define error_is_suppressed(file_name, line_no) (false) |
1 | 212 |
|
10739 | 213 |
#endif // !PRODUCT |
1 | 214 |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31340
diff
changeset
|
215 |
void report_vm_error(const char* file, int line, const char* error_msg) |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31340
diff
changeset
|
216 |
{ |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31340
diff
changeset
|
217 |
report_vm_error(file, line, error_msg, "%s", ""); |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31340
diff
changeset
|
218 |
} |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31340
diff
changeset
|
219 |
|
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31340
diff
changeset
|
220 |
void report_vm_error(const char* file, int line, const char* error_msg, const char* detail_fmt, ...) |
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
221 |
{ |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
222 |
if (Debugging || error_is_suppressed(file, line)) return; |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31340
diff
changeset
|
223 |
va_list detail_args; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31340
diff
changeset
|
224 |
va_start(detail_args, detail_fmt); |
49653
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
225 |
void* context = NULL; |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
226 |
#ifdef CAN_SHOW_REGISTERS_ON_ASSERT |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
227 |
if (g_assertion_context != NULL && os::current_thread_id() == g_asserting_thread) { |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
228 |
context = g_assertion_context; |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
229 |
} |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
230 |
#endif // CAN_SHOW_REGISTERS_ON_ASSERT |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
231 |
VMError::report_and_die(Thread::current_or_null(), context, file, line, error_msg, detail_fmt, detail_args); |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31340
diff
changeset
|
232 |
va_end(detail_args); |
1 | 233 |
} |
234 |
||
37113 | 235 |
void report_vm_status_error(const char* file, int line, const char* error_msg, |
236 |
int status, const char* detail) { |
|
237 |
report_vm_error(file, line, error_msg, "error %s(%d), %s", os::errno_name(status), status, detail); |
|
238 |
} |
|
239 |
||
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31340
diff
changeset
|
240 |
void report_fatal(const char* file, int line, const char* detail_fmt, ...) |
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
241 |
{ |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31340
diff
changeset
|
242 |
if (Debugging || error_is_suppressed(file, line)) return; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31340
diff
changeset
|
243 |
va_list detail_args; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31340
diff
changeset
|
244 |
va_start(detail_args, detail_fmt); |
49653
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
245 |
void* context = NULL; |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
246 |
#ifdef CAN_SHOW_REGISTERS_ON_ASSERT |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
247 |
if (g_assertion_context != NULL && os::current_thread_id() == g_asserting_thread) { |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
248 |
context = g_assertion_context; |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
249 |
} |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
250 |
#endif // CAN_SHOW_REGISTERS_ON_ASSERT |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
251 |
VMError::report_and_die(Thread::current_or_null(), context, file, line, "fatal error", detail_fmt, detail_args); |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31340
diff
changeset
|
252 |
va_end(detail_args); |
1 | 253 |
} |
254 |
||
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
255 |
void report_vm_out_of_memory(const char* file, int line, size_t size, |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31340
diff
changeset
|
256 |
VMErrorType vm_err_type, const char* detail_fmt, ...) { |
7719
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7433
diff
changeset
|
257 |
if (Debugging) return; |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31340
diff
changeset
|
258 |
va_list detail_args; |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31340
diff
changeset
|
259 |
va_start(detail_args, detail_fmt); |
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
34144
diff
changeset
|
260 |
VMError::report_and_die(Thread::current_or_null(), file, line, size, vm_err_type, detail_fmt, detail_args); |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31340
diff
changeset
|
261 |
va_end(detail_args); |
1 | 262 |
|
15796
41577a5deb58
6799919: Recursive calls to report_vm_out_of_memory are handled incorrectly
dcubed
parents:
15088
diff
changeset
|
263 |
// The UseOSErrorReporting option in report_and_die() may allow a return |
41577a5deb58
6799919: Recursive calls to report_vm_out_of_memory are handled incorrectly
dcubed
parents:
15088
diff
changeset
|
264 |
// to here. If so then we'll have to figure out how to handle it. |
41577a5deb58
6799919: Recursive calls to report_vm_out_of_memory are handled incorrectly
dcubed
parents:
15088
diff
changeset
|
265 |
guarantee(false, "report_and_die() should not return here"); |
1 | 266 |
} |
267 |
||
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
268 |
void report_should_not_call(const char* file, int line) { |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
269 |
report_vm_error(file, line, "ShouldNotCall()"); |
1 | 270 |
} |
271 |
||
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
272 |
void report_should_not_reach_here(const char* file, int line) { |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
273 |
report_vm_error(file, line, "ShouldNotReachHere()"); |
1 | 274 |
} |
275 |
||
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
276 |
void report_unimplemented(const char* file, int line) { |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
277 |
report_vm_error(file, line, "Unimplemented()"); |
1 | 278 |
} |
279 |
||
38254 | 280 |
#ifdef ASSERT |
281 |
bool is_executing_unit_tests() { |
|
282 |
return ExecutingUnitTests; |
|
283 |
} |
|
284 |
||
285 |
void report_assert_msg(const char* msg, ...) { |
|
286 |
va_list ap; |
|
287 |
va_start(ap, msg); |
|
288 |
||
289 |
fprintf(stderr, "assert failed: %s\n", err_msg(FormatBufferDummy(), msg, ap).buffer()); |
|
290 |
||
291 |
va_end(ap); |
|
292 |
} |
|
293 |
#endif // ASSERT |
|
294 |
||
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
295 |
void report_untested(const char* file, int line, const char* message) { |
1 | 296 |
#ifndef PRODUCT |
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
297 |
warning("Untested: %s in %s: %d\n", message, file, line); |
10739 | 298 |
#endif // !PRODUCT |
1 | 299 |
} |
300 |
||
301 |
void report_java_out_of_memory(const char* message) { |
|
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47216
diff
changeset
|
302 |
static int out_of_memory_reported = 0; |
1 | 303 |
|
304 |
// A number of threads may attempt to report OutOfMemoryError at around the |
|
305 |
// same time. To avoid dumping the heap or executing the data collection |
|
306 |
// commands multiple times we just do it once when the first threads reports |
|
307 |
// the error. |
|
308 |
if (Atomic::cmpxchg(1, &out_of_memory_reported, 0) == 0) { |
|
309 |
// create heap dump before OnOutOfMemoryError commands are executed |
|
310 |
if (HeapDumpOnOutOfMemoryError) { |
|
311 |
tty->print_cr("java.lang.OutOfMemoryError: %s", message); |
|
6445
64694b1e56e7
6765718: Indicate which thread throwing OOME when generating the heap dump at OOME
thurka
parents:
6176
diff
changeset
|
312 |
HeapDumper::dump_heap_from_oome(); |
1 | 313 |
} |
314 |
||
315 |
if (OnOutOfMemoryError && OnOutOfMemoryError[0]) { |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31340
diff
changeset
|
316 |
VMError::report_java_out_of_memory(message); |
1 | 317 |
} |
34670
5ab871b40190
8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents:
34633
diff
changeset
|
318 |
|
5ab871b40190
8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents:
34633
diff
changeset
|
319 |
if (CrashOnOutOfMemoryError) { |
5ab871b40190
8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents:
34633
diff
changeset
|
320 |
tty->print_cr("Aborting due to java.lang.OutOfMemoryError: %s", message); |
5ab871b40190
8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents:
34633
diff
changeset
|
321 |
fatal("OutOfMemory encountered: %s", message); |
5ab871b40190
8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents:
34633
diff
changeset
|
322 |
} |
5ab871b40190
8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents:
34633
diff
changeset
|
323 |
|
5ab871b40190
8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents:
34633
diff
changeset
|
324 |
if (ExitOnOutOfMemoryError) { |
5ab871b40190
8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents:
34633
diff
changeset
|
325 |
tty->print_cr("Terminating due to java.lang.OutOfMemoryError: %s", message); |
5ab871b40190
8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents:
34633
diff
changeset
|
326 |
os::exit(3); |
5ab871b40190
8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents:
34633
diff
changeset
|
327 |
} |
1 | 328 |
} |
329 |
} |
|
330 |
||
331 |
// ------ helper functions for debugging go here ------------ |
|
332 |
||
333 |
// All debug entries should be wrapped with a stack allocated |
|
334 |
// Command object. It makes sure a resource mark is set and |
|
335 |
// flushes the logfile to prevent file sharing problems. |
|
336 |
||
337 |
class Command : public StackObj { |
|
338 |
private: |
|
339 |
ResourceMark rm; |
|
340 |
ResetNoHandleMark rnhm; |
|
341 |
HandleMark hm; |
|
342 |
bool debug_save; |
|
343 |
public: |
|
344 |
static int level; |
|
345 |
Command(const char* str) { |
|
346 |
debug_save = Debugging; |
|
347 |
Debugging = true; |
|
348 |
if (level++ > 0) return; |
|
349 |
tty->cr(); |
|
350 |
tty->print_cr("\"Executing %s\"", str); |
|
351 |
} |
|
352 |
||
10739 | 353 |
~Command() { |
354 |
tty->flush(); |
|
355 |
Debugging = debug_save; |
|
356 |
level--; |
|
357 |
} |
|
1 | 358 |
}; |
359 |
||
360 |
int Command::level = 0; |
|
361 |
||
10739 | 362 |
#ifndef PRODUCT |
363 |
||
1 | 364 |
extern "C" void blob(CodeBlob* cb) { |
365 |
Command c("blob"); |
|
366 |
cb->print(); |
|
367 |
} |
|
368 |
||
369 |
||
370 |
extern "C" void dump_vtable(address p) { |
|
371 |
Command c("dump_vtable"); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
372 |
Klass* k = (Klass*)p; |
46408
70aab0c2ea8b
8178350: klassVtable and klassItable should be ValueObj
iklam
parents:
42650
diff
changeset
|
373 |
k->vtable().print(); |
1 | 374 |
} |
375 |
||
376 |
||
377 |
extern "C" void nm(intptr_t p) { |
|
378 |
// Actually we look through all CodeBlobs (the nm name has been kept for backwards compatability) |
|
379 |
Command c("nm"); |
|
380 |
CodeBlob* cb = CodeCache::find_blob((address)p); |
|
381 |
if (cb == NULL) { |
|
382 |
tty->print_cr("NULL"); |
|
383 |
} else { |
|
384 |
cb->print(); |
|
385 |
} |
|
386 |
} |
|
387 |
||
388 |
||
389 |
extern "C" void disnm(intptr_t p) { |
|
390 |
Command c("disnm"); |
|
391 |
CodeBlob* cb = CodeCache::find_blob((address) p); |
|
35542
9dccb7f9f656
8071374: -XX:+PrintAssembly -XX:+PrintSignatureHandlers crash fastdebug VM with assert(limit == __null || limit <= nm->code_end()) in RelocIterator::initialize
vlivanov
parents:
35061
diff
changeset
|
392 |
if (cb != NULL) { |
9dccb7f9f656
8071374: -XX:+PrintAssembly -XX:+PrintSignatureHandlers crash fastdebug VM with assert(limit == __null || limit <= nm->code_end()) in RelocIterator::initialize
vlivanov
parents:
35061
diff
changeset
|
393 |
nmethod* nm = cb->as_nmethod_or_null(); |
9dccb7f9f656
8071374: -XX:+PrintAssembly -XX:+PrintSignatureHandlers crash fastdebug VM with assert(limit == __null || limit <= nm->code_end()) in RelocIterator::initialize
vlivanov
parents:
35061
diff
changeset
|
394 |
if (nm != NULL) { |
9dccb7f9f656
8071374: -XX:+PrintAssembly -XX:+PrintSignatureHandlers crash fastdebug VM with assert(limit == __null || limit <= nm->code_end()) in RelocIterator::initialize
vlivanov
parents:
35061
diff
changeset
|
395 |
nm->print(); |
9dccb7f9f656
8071374: -XX:+PrintAssembly -XX:+PrintSignatureHandlers crash fastdebug VM with assert(limit == __null || limit <= nm->code_end()) in RelocIterator::initialize
vlivanov
parents:
35061
diff
changeset
|
396 |
} else { |
9dccb7f9f656
8071374: -XX:+PrintAssembly -XX:+PrintSignatureHandlers crash fastdebug VM with assert(limit == __null || limit <= nm->code_end()) in RelocIterator::initialize
vlivanov
parents:
35061
diff
changeset
|
397 |
cb->print(); |
9dccb7f9f656
8071374: -XX:+PrintAssembly -XX:+PrintSignatureHandlers crash fastdebug VM with assert(limit == __null || limit <= nm->code_end()) in RelocIterator::initialize
vlivanov
parents:
35061
diff
changeset
|
398 |
} |
7433 | 399 |
Disassembler::decode(cb); |
400 |
} |
|
1 | 401 |
} |
402 |
||
403 |
||
404 |
extern "C" void printnm(intptr_t p) { |
|
405 |
char buffer[256]; |
|
406 |
sprintf(buffer, "printnm: " INTPTR_FORMAT, p); |
|
407 |
Command c(buffer); |
|
408 |
CodeBlob* cb = CodeCache::find_blob((address) p); |
|
409 |
if (cb->is_nmethod()) { |
|
410 |
nmethod* nm = (nmethod*)cb; |
|
411 |
nm->print_nmethod(true); |
|
412 |
} |
|
413 |
} |
|
414 |
||
415 |
||
416 |
extern "C" void universe() { |
|
417 |
Command c("universe"); |
|
35061 | 418 |
Universe::print_on(tty); |
1 | 419 |
} |
420 |
||
421 |
||
422 |
extern "C" void verify() { |
|
423 |
// try to run a verify on the entire system |
|
424 |
// note: this may not be safe if we're not at a safepoint; for debugging, |
|
425 |
// this manipulates the safepoint settings to avoid assertion failures |
|
426 |
Command c("universe verify"); |
|
427 |
bool safe = SafepointSynchronize::is_at_safepoint(); |
|
428 |
if (!safe) { |
|
429 |
tty->print_cr("warning: not at safepoint -- verify may fail"); |
|
430 |
SafepointSynchronize::set_is_at_safepoint(); |
|
431 |
} |
|
432 |
// Ensure Eden top is correct before verification |
|
433 |
Universe::heap()->prepare_for_verify(); |
|
14076
84643cfaeaa8
8000831: Heap verification output incorrect/incomplete
johnc
parents:
13761
diff
changeset
|
434 |
Universe::verify(); |
1 | 435 |
if (!safe) SafepointSynchronize::set_is_not_at_safepoint(); |
436 |
} |
|
437 |
||
438 |
||
439 |
extern "C" void pp(void* p) { |
|
440 |
Command c("pp"); |
|
441 |
FlagSetting fl(PrintVMMessages, true); |
|
9437
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
442 |
FlagSetting f2(DisplayVMOutput, true); |
1 | 443 |
if (Universe::heap()->is_in(p)) { |
444 |
oop obj = oop(p); |
|
445 |
obj->print(); |
|
446 |
} else { |
|
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33135
diff
changeset
|
447 |
tty->print(PTR_FORMAT, p2i(p)); |
1 | 448 |
} |
449 |
} |
|
450 |
||
451 |
||
452 |
// pv: print vm-printable object |
|
453 |
extern "C" void pa(intptr_t p) { ((AllocatedObj*) p)->print(); } |
|
454 |
extern "C" void findpc(intptr_t x); |
|
455 |
||
10739 | 456 |
#endif // !PRODUCT |
457 |
||
1 | 458 |
extern "C" void ps() { // print stack |
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
34144
diff
changeset
|
459 |
if (Thread::current_or_null() == NULL) return; |
1 | 460 |
Command c("ps"); |
461 |
||
462 |
||
463 |
// Prints the stack of the current Java thread |
|
464 |
JavaThread* p = JavaThread::active(); |
|
465 |
tty->print(" for thread: "); |
|
466 |
p->print(); |
|
467 |
tty->cr(); |
|
468 |
||
469 |
if (p->has_last_Java_frame()) { |
|
470 |
// If the last_Java_fp is set we are in C land and |
|
471 |
// can call the standard stack_trace function. |
|
10739 | 472 |
#ifdef PRODUCT |
473 |
p->print_stack(); |
|
474 |
} else { |
|
475 |
tty->print_cr("Cannot find the last Java frame, printing stack disabled."); |
|
476 |
#else // !PRODUCT |
|
1 | 477 |
p->trace_stack(); |
478 |
} else { |
|
479 |
frame f = os::current_frame(); |
|
480 |
RegisterMap reg_map(p); |
|
481 |
f = f.sender(®_map); |
|
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33135
diff
changeset
|
482 |
tty->print("(guessing starting frame id=" PTR_FORMAT " based on current fp)\n", p2i(f.id())); |
1 | 483 |
p->trace_stack_from(vframe::new_vframe(&f, ®_map, p)); |
46589 | 484 |
f.pd_ps(); |
10739 | 485 |
#endif // PRODUCT |
1 | 486 |
} |
487 |
||
488 |
} |
|
489 |
||
9437
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
490 |
extern "C" void pfl() { |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
491 |
// print frame layout |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
492 |
Command c("pfl"); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
493 |
JavaThread* p = JavaThread::active(); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
494 |
tty->print(" for thread: "); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
495 |
p->print(); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
496 |
tty->cr(); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
497 |
if (p->has_last_Java_frame()) { |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
498 |
p->print_frame_layout(); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
499 |
} |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
500 |
} |
1 | 501 |
|
10739 | 502 |
#ifndef PRODUCT |
503 |
||
1 | 504 |
extern "C" void psf() { // print stack frames |
505 |
{ |
|
506 |
Command c("psf"); |
|
507 |
JavaThread* p = JavaThread::active(); |
|
508 |
tty->print(" for thread: "); |
|
509 |
p->print(); |
|
510 |
tty->cr(); |
|
511 |
if (p->has_last_Java_frame()) { |
|
512 |
p->trace_frames(); |
|
513 |
} |
|
514 |
} |
|
515 |
} |
|
516 |
||
517 |
||
518 |
extern "C" void threads() { |
|
519 |
Command c("threads"); |
|
520 |
Threads::print(false, true); |
|
521 |
} |
|
522 |
||
523 |
||
524 |
extern "C" void psd() { |
|
525 |
Command c("psd"); |
|
526 |
SystemDictionary::print(); |
|
527 |
} |
|
528 |
||
10739 | 529 |
#endif // !PRODUCT |
1 | 530 |
|
531 |
extern "C" void pss() { // print all stacks |
|
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
34144
diff
changeset
|
532 |
if (Thread::current_or_null() == NULL) return; |
1 | 533 |
Command c("pss"); |
10739 | 534 |
Threads::print(true, PRODUCT_ONLY(false) NOT_PRODUCT(true)); |
1 | 535 |
} |
536 |
||
10739 | 537 |
#ifndef PRODUCT |
1 | 538 |
|
539 |
extern "C" void debug() { // to set things up for compiler debugging |
|
540 |
Command c("debug"); |
|
541 |
WizardMode = true; |
|
542 |
PrintVMMessages = PrintCompilation = true; |
|
543 |
PrintInlining = PrintAssembly = true; |
|
544 |
tty->flush(); |
|
545 |
} |
|
546 |
||
547 |
||
548 |
extern "C" void ndebug() { // undo debug() |
|
549 |
Command c("ndebug"); |
|
550 |
PrintCompilation = false; |
|
551 |
PrintInlining = PrintAssembly = false; |
|
552 |
tty->flush(); |
|
553 |
} |
|
554 |
||
555 |
||
556 |
extern "C" void flush() { |
|
557 |
Command c("flush"); |
|
558 |
tty->flush(); |
|
559 |
} |
|
560 |
||
11788 | 561 |
extern "C" void events() { |
562 |
Command c("events"); |
|
563 |
Events::print(); |
|
564 |
} |
|
1 | 565 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
566 |
extern "C" Method* findm(intptr_t pc) { |
1 | 567 |
Command c("findm"); |
568 |
nmethod* nm = CodeCache::find_nmethod((address)pc); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
569 |
return (nm == NULL) ? (Method*)NULL : nm->method(); |
1 | 570 |
} |
571 |
||
572 |
||
573 |
extern "C" nmethod* findnm(intptr_t addr) { |
|
574 |
Command c("findnm"); |
|
575 |
return CodeCache::find_nmethod((address)addr); |
|
576 |
} |
|
577 |
||
578 |
// Another interface that isn't ambiguous in dbx. |
|
579 |
// Can we someday rename the other find to hsfind? |
|
580 |
extern "C" void hsfind(intptr_t x) { |
|
581 |
Command c("hsfind"); |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
582 |
os::print_location(tty, x, false); |
1 | 583 |
} |
584 |
||
585 |
||
586 |
extern "C" void find(intptr_t x) { |
|
587 |
Command c("find"); |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
588 |
os::print_location(tty, x, false); |
1 | 589 |
} |
590 |
||
591 |
||
592 |
extern "C" void findpc(intptr_t x) { |
|
593 |
Command c("findpc"); |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
594 |
os::print_location(tty, x, true); |
1 | 595 |
} |
596 |
||
597 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
598 |
// Need method pointer to find bcp, when not in permgen. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
599 |
extern "C" void findbcp(intptr_t method, intptr_t bcp) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
600 |
Command c("findbcp"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
601 |
Method* mh = (Method*)method; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
602 |
if (!mh->is_native()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
603 |
tty->print_cr("bci_from(%p) = %d; print_codes():", |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
604 |
mh, mh->bci_from(address(bcp))); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
605 |
mh->print_codes_on(tty); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
606 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
607 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
608 |
|
1 | 609 |
// int versions of all methods to avoid having to type type casts in the debugger |
610 |
||
611 |
void pp(intptr_t p) { pp((void*)p); } |
|
612 |
void pp(oop p) { pp((void*)p); } |
|
613 |
||
614 |
void help() { |
|
615 |
Command c("help"); |
|
616 |
tty->print_cr("basic"); |
|
617 |
tty->print_cr(" pp(void* p) - try to make sense of p"); |
|
618 |
tty->print_cr(" pv(intptr_t p)- ((PrintableResourceObj*) p)->print()"); |
|
619 |
tty->print_cr(" ps() - print current thread stack"); |
|
620 |
tty->print_cr(" pss() - print all thread stacks"); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
621 |
tty->print_cr(" pm(int pc) - print Method* given compiled PC"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
622 |
tty->print_cr(" findm(intptr_t pc) - finds Method*"); |
1 | 623 |
tty->print_cr(" find(intptr_t x) - finds & prints nmethod/stub/bytecode/oop based on pointer into it"); |
26821
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25715
diff
changeset
|
624 |
tty->print_cr(" pns(void* sp, void* fp, void* pc) - print native (i.e. mixed) stack trace. E.g."); |
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25715
diff
changeset
|
625 |
tty->print_cr(" pns($sp, $rbp, $pc) on Linux/amd64 and Solaris/amd64 or"); |
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25715
diff
changeset
|
626 |
tty->print_cr(" pns($sp, $ebp, $pc) on Linux/x86 or"); |
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25715
diff
changeset
|
627 |
tty->print_cr(" pns($sp, 0, $pc) on Linux/ppc64 or"); |
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25715
diff
changeset
|
628 |
tty->print_cr(" pns($sp + 0x7ff, 0, $pc) on Solaris/SPARC"); |
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25715
diff
changeset
|
629 |
tty->print_cr(" - in gdb do 'set overload-resolution off' before calling pns()"); |
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25715
diff
changeset
|
630 |
tty->print_cr(" - in dbx do 'frame 1' before calling pns()"); |
1 | 631 |
|
632 |
tty->print_cr("misc."); |
|
633 |
tty->print_cr(" flush() - flushes the log file"); |
|
11788 | 634 |
tty->print_cr(" events() - dump events from ring buffers"); |
1 | 635 |
|
636 |
||
637 |
tty->print_cr("compiler debugging"); |
|
638 |
tty->print_cr(" debug() - to set things up for compiler debugging"); |
|
639 |
tty->print_cr(" ndebug() - undo debug"); |
|
640 |
} |
|
641 |
||
26821
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25715
diff
changeset
|
642 |
extern "C" void pns(void* sp, void* fp, void* pc) { // print native stack |
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25715
diff
changeset
|
643 |
Command c("pns"); |
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25715
diff
changeset
|
644 |
static char buf[O_BUFLEN]; |
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
34144
diff
changeset
|
645 |
Thread* t = Thread::current_or_null(); |
26821
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25715
diff
changeset
|
646 |
// Call generic frame constructor (certain arguments may be ignored) |
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25715
diff
changeset
|
647 |
frame fr(sp, fp, pc); |
46560
388aa8d67c80
8181449: Fix debug.hpp / globalDefinitions.hpp dependency inversion
kbarrett
parents:
46408
diff
changeset
|
648 |
VMError::print_native_stack(tty, fr, t, buf, sizeof(buf)); |
26821
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25715
diff
changeset
|
649 |
} |
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25715
diff
changeset
|
650 |
|
47891
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
651 |
// |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
652 |
// This version of pns() will not work when called from the debugger, but is |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
653 |
// useful when called from within hotspot code. The advantages over pns() |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
654 |
// are not having to pass in any arguments, and it will work on Windows/x64. |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
655 |
// |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
656 |
// WARNING: Only intended for use when debugging. Do not leave calls to |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
657 |
// pns2() in committed source (product or debug). |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
658 |
// |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
659 |
extern "C" void pns2() { // print native stack |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
660 |
Command c("pns2"); |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
661 |
static char buf[O_BUFLEN]; |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
662 |
if (os::platform_print_native_stack(tty, NULL, buf, sizeof(buf))) { |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
663 |
// We have printed the native stack in platform-specific code, |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
664 |
// so nothing else to do in this case. |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
665 |
} else { |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
666 |
Thread* t = Thread::current_or_null(); |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
667 |
frame fr = os::current_frame(); |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
668 |
VMError::print_native_stack(tty, fr, t, buf, sizeof(buf)); |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
669 |
} |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
670 |
} |
fa736014cf28
8191049: Add alternate version of pns() that is callable from within hotspot source
cjplummer
parents:
47765
diff
changeset
|
671 |
|
26821
ce9f82507dc2
8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents:
25715
diff
changeset
|
672 |
#endif // !PRODUCT |
31340
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
673 |
|
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
674 |
////////////////////////////////////////////////////////////////////////////// |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
675 |
// Test multiple STATIC_ASSERT forms in various scopes. |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
676 |
|
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
677 |
#ifndef PRODUCT |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
678 |
|
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
679 |
// namespace scope |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
680 |
STATIC_ASSERT(true); |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
681 |
STATIC_ASSERT(true); |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
682 |
STATIC_ASSERT(1 == 1); |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
683 |
STATIC_ASSERT(0 == 0); |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
684 |
|
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
685 |
void test_multiple_static_assert_forms_in_function_scope() { |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
686 |
STATIC_ASSERT(true); |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
687 |
STATIC_ASSERT(true); |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
688 |
STATIC_ASSERT(0 == 0); |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
689 |
STATIC_ASSERT(1 == 1); |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
690 |
} |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
691 |
|
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
692 |
// class scope |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
693 |
struct TestMultipleStaticAssertFormsInClassScope { |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
694 |
STATIC_ASSERT(true); |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
695 |
STATIC_ASSERT(true); |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
696 |
STATIC_ASSERT(0 == 0); |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
697 |
STATIC_ASSERT(1 == 1); |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
698 |
}; |
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
699 |
|
2f9ff278bb13
8086027: Multiple STATIC_ASSERTs at class scope doesn't work
kbarrett
parents:
30764
diff
changeset
|
700 |
#endif // !PRODUCT |
49653
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
701 |
|
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
702 |
// Support for showing register content on asserts/guarantees. |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
703 |
#ifdef CAN_SHOW_REGISTERS_ON_ASSERT |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
704 |
|
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
705 |
static ucontext_t g_stored_assertion_context; |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
706 |
|
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
707 |
void initialize_assert_poison() { |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
708 |
char* page = os::reserve_memory(os::vm_page_size()); |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
709 |
if (page) { |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
710 |
if (os::commit_memory(page, os::vm_page_size(), false) && |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
711 |
os::protect_memory(page, os::vm_page_size(), os::MEM_PROT_NONE)) { |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
712 |
g_assert_poison = page; |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
713 |
} |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
714 |
} |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
715 |
} |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
716 |
|
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
717 |
static bool store_context(const void* context) { |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
718 |
if (memcpy(&g_stored_assertion_context, context, sizeof(ucontext_t)) == false) { |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
719 |
return false; |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
720 |
} |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
721 |
#if defined(__linux) && defined(PPC64) |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
722 |
// on Linux ppc64, ucontext_t contains pointers into itself which have to be patched up |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
723 |
// after copying the context (see comment in sys/ucontext.h): |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
724 |
*((void**) &g_stored_assertion_context.uc_mcontext.regs) = &(g_stored_assertion_context.uc_mcontext.gp_regs); |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
725 |
#endif |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
726 |
return true; |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
727 |
} |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
728 |
|
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
729 |
bool handle_assert_poison_fault(const void* ucVoid, const void* faulting_address) { |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
730 |
if (faulting_address == g_assert_poison) { |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
731 |
// Disarm poison page. |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
732 |
os::protect_memory((char*)g_assert_poison, os::vm_page_size(), os::MEM_PROT_RWX); |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
733 |
// Store Context away. |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
734 |
if (ucVoid) { |
49671
015af70b9a1d
8200608: Build failures after JDK-8191101 (Show register content in hs-err file on assert)
shade
parents:
49653
diff
changeset
|
735 |
const intx my_tid = os::current_thread_id(); |
49653
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
736 |
if (Atomic::cmpxchg(my_tid, &g_asserting_thread, (intx)0) == 0) { |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
737 |
if (store_context(ucVoid)) { |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
738 |
g_assertion_context = &g_stored_assertion_context; |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
739 |
} |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
740 |
} |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
741 |
} |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
742 |
return true; |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
743 |
} |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
744 |
return false; |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
745 |
} |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
746 |
#endif // CAN_SHOW_REGISTERS_ON_ASSERT |
a569cb4425f3
8191101: Show register content in hs-err file on assert
stuefe
parents:
49480
diff
changeset
|
747 |