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