author | goetz |
Wed, 04 Jun 2014 11:56:44 +0200 | |
changeset 25351 | 7c198a690050 |
parent 24826 | ad80eed312fc |
child 25468 | 5331df506290 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
18683
diff
changeset
|
2 |
* Copyright (c) 1997, 2014, 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" |
26 |
#include "classfile/systemDictionary.hpp" |
|
27 |
#include "code/codeCache.hpp" |
|
28 |
#include "code/icBuffer.hpp" |
|
29 |
#include "code/nmethod.hpp" |
|
30 |
#include "code/vtableStubs.hpp" |
|
31 |
#include "compiler/compileBroker.hpp" |
|
32 |
#include "compiler/disassembler.hpp" |
|
33 |
#include "gc_implementation/shared/markSweep.hpp" |
|
34 |
#include "gc_interface/collectedHeap.hpp" |
|
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" |
|
25351
7c198a690050
8044775: Improve usage of umbrella header atomic.inline.hpp.
goetz
parents:
24826
diff
changeset
|
42 |
#include "runtime/atomic.inline.hpp" |
7397 | 43 |
#include "runtime/frame.hpp" |
44 |
#include "runtime/java.hpp" |
|
45 |
#include "runtime/sharedRuntime.hpp" |
|
46 |
#include "runtime/stubCodeGenerator.hpp" |
|
47 |
#include "runtime/stubRoutines.hpp" |
|
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
14076
diff
changeset
|
48 |
#include "runtime/thread.inline.hpp" |
7397 | 49 |
#include "runtime/vframe.hpp" |
50 |
#include "services/heapDumper.hpp" |
|
51 |
#include "utilities/defaultStream.hpp" |
|
52 |
#include "utilities/events.hpp" |
|
53 |
#include "utilities/top.hpp" |
|
54 |
#include "utilities/vmError.hpp" |
|
55 |
#ifdef TARGET_OS_FAMILY_linux |
|
56 |
# include "os_linux.inline.hpp" |
|
57 |
#endif |
|
58 |
#ifdef TARGET_OS_FAMILY_solaris |
|
59 |
# include "os_solaris.inline.hpp" |
|
60 |
#endif |
|
61 |
#ifdef TARGET_OS_FAMILY_windows |
|
62 |
# include "os_windows.inline.hpp" |
|
63 |
#endif |
|
10565 | 64 |
#ifdef TARGET_OS_FAMILY_bsd |
65 |
# include "os_bsd.inline.hpp" |
|
66 |
#endif |
|
1 | 67 |
|
68 |
#ifndef ASSERT |
|
69 |
# ifdef _DEBUG |
|
70 |
// NOTE: don't turn the lines below into a comment -- if you're getting |
|
71 |
// a compile error here, change the settings to define ASSERT |
|
72 |
ASSERT should be defined when _DEBUG is defined. It is not intended to be used for debugging |
|
73 |
functions that do not slow down the system too much and thus can be left in optimized code. |
|
74 |
On the other hand, the code should not be included in a production version. |
|
75 |
# endif // _DEBUG |
|
76 |
#endif // ASSERT |
|
77 |
||
78 |
||
79 |
#ifdef _DEBUG |
|
80 |
# ifndef ASSERT |
|
81 |
configuration error: ASSERT must be defined in debug version |
|
82 |
# endif // ASSERT |
|
83 |
#endif // _DEBUG |
|
84 |
||
85 |
||
86 |
#ifdef PRODUCT |
|
87 |
# if -defined _DEBUG || -defined ASSERT |
|
88 |
configuration error: ASSERT et al. must not be defined in PRODUCT version |
|
89 |
# endif |
|
90 |
#endif // PRODUCT |
|
91 |
||
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
18683
diff
changeset
|
92 |
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC |
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
18683
diff
changeset
|
93 |
|
13393
f0344cc50a90
7187454: stack overflow in C2 compiler thread on Solaris x86
kvn
parents:
11788
diff
changeset
|
94 |
FormatBufferResource::FormatBufferResource(const char * format, ...) |
f0344cc50a90
7187454: stack overflow in C2 compiler thread on Solaris x86
kvn
parents:
11788
diff
changeset
|
95 |
: FormatBufferBase((char*)resource_allocate_bytes(RES_BUFSZ)) { |
f0344cc50a90
7187454: stack overflow in C2 compiler thread on Solaris x86
kvn
parents:
11788
diff
changeset
|
96 |
va_list argp; |
f0344cc50a90
7187454: stack overflow in C2 compiler thread on Solaris x86
kvn
parents:
11788
diff
changeset
|
97 |
va_start(argp, format); |
f0344cc50a90
7187454: stack overflow in C2 compiler thread on Solaris x86
kvn
parents:
11788
diff
changeset
|
98 |
jio_vsnprintf(_buf, RES_BUFSZ, format, argp); |
f0344cc50a90
7187454: stack overflow in C2 compiler thread on Solaris x86
kvn
parents:
11788
diff
changeset
|
99 |
va_end(argp); |
f0344cc50a90
7187454: stack overflow in C2 compiler thread on Solaris x86
kvn
parents:
11788
diff
changeset
|
100 |
} |
1 | 101 |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
18683
diff
changeset
|
102 |
ATTRIBUTE_PRINTF(1, 2) |
1 | 103 |
void warning(const char* format, ...) { |
6967
c5ebdcf8372e
6392697: Additional flag needed to supress Hotspot warning messages
kamg
parents:
6445
diff
changeset
|
104 |
if (PrintWarnings) { |
13761 | 105 |
FILE* const err = defaultStream::error_stream(); |
106 |
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
|
107 |
va_list ap; |
c5ebdcf8372e
6392697: Additional flag needed to supress Hotspot warning messages
kamg
parents:
6445
diff
changeset
|
108 |
va_start(ap, format); |
13761 | 109 |
vfprintf(err, format, ap); |
6967
c5ebdcf8372e
6392697: Additional flag needed to supress Hotspot warning messages
kamg
parents:
6445
diff
changeset
|
110 |
va_end(ap); |
13761 | 111 |
fputc('\n', err); |
6967
c5ebdcf8372e
6392697: Additional flag needed to supress Hotspot warning messages
kamg
parents:
6445
diff
changeset
|
112 |
} |
1 | 113 |
if (BreakAtWarning) BREAKPOINT; |
114 |
} |
|
115 |
||
116 |
#ifndef PRODUCT |
|
117 |
||
118 |
#define is_token_break(ch) (isspace(ch) || (ch) == ',') |
|
119 |
||
120 |
static const char* last_file_name = NULL; |
|
121 |
static int last_line_no = -1; |
|
122 |
||
123 |
// assert/guarantee/... may happen very early during VM initialization. |
|
124 |
// Don't rely on anything that is initialized by Threads::create_vm(). For |
|
125 |
// example, don't use tty. |
|
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
126 |
bool error_is_suppressed(const char* file_name, int line_no) { |
1 | 127 |
// The following 1-element cache requires that passed-in |
128 |
// file names are always only constant literals. |
|
129 |
if (file_name == last_file_name && line_no == last_line_no) return true; |
|
130 |
||
131 |
int file_name_len = (int)strlen(file_name); |
|
132 |
char separator = os::file_separator()[0]; |
|
133 |
const char* base_name = strrchr(file_name, separator); |
|
134 |
if (base_name == NULL) |
|
135 |
base_name = file_name; |
|
136 |
||
137 |
// scan the SuppressErrorAt option |
|
138 |
const char* cp = SuppressErrorAt; |
|
139 |
for (;;) { |
|
140 |
const char* sfile; |
|
141 |
int sfile_len; |
|
142 |
int sline; |
|
143 |
bool noisy; |
|
144 |
while ((*cp) != '\0' && is_token_break(*cp)) cp++; |
|
145 |
if ((*cp) == '\0') break; |
|
146 |
sfile = cp; |
|
147 |
while ((*cp) != '\0' && !is_token_break(*cp) && (*cp) != ':') cp++; |
|
148 |
sfile_len = cp - sfile; |
|
149 |
if ((*cp) == ':') cp++; |
|
150 |
sline = 0; |
|
151 |
while ((*cp) != '\0' && isdigit(*cp)) { |
|
152 |
sline *= 10; |
|
153 |
sline += (*cp) - '0'; |
|
154 |
cp++; |
|
155 |
} |
|
156 |
// "file:line!" means the assert suppression is not silent |
|
157 |
noisy = ((*cp) == '!'); |
|
158 |
while ((*cp) != '\0' && !is_token_break(*cp)) cp++; |
|
159 |
// match the line |
|
160 |
if (sline != 0) { |
|
161 |
if (sline != line_no) continue; |
|
162 |
} |
|
163 |
// match the file |
|
164 |
if (sfile_len > 0) { |
|
165 |
const char* look = file_name; |
|
166 |
const char* look_max = file_name + file_name_len - sfile_len; |
|
167 |
const char* foundp; |
|
168 |
bool match = false; |
|
169 |
while (!match |
|
170 |
&& (foundp = strchr(look, sfile[0])) != NULL |
|
171 |
&& foundp <= look_max) { |
|
172 |
match = true; |
|
173 |
for (int i = 1; i < sfile_len; i++) { |
|
174 |
if (sfile[i] != foundp[i]) { |
|
175 |
match = false; |
|
176 |
break; |
|
177 |
} |
|
178 |
} |
|
179 |
look = foundp + 1; |
|
180 |
} |
|
181 |
if (!match) continue; |
|
182 |
} |
|
183 |
// got a match! |
|
184 |
if (noisy) { |
|
185 |
fdStream out(defaultStream::output_fd()); |
|
186 |
out.print_raw("[error suppressed at "); |
|
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 |
} else { |
|
192 |
// update 1-element cache for fast silent matches |
|
193 |
last_file_name = file_name; |
|
194 |
last_line_no = line_no; |
|
195 |
} |
|
196 |
return true; |
|
197 |
} |
|
198 |
||
199 |
if (!is_error_reported()) { |
|
200 |
// print a friendly hint: |
|
201 |
fdStream out(defaultStream::output_fd()); |
|
202 |
out.print_raw_cr("# To suppress the following error report, specify this argument"); |
|
203 |
out.print_raw ("# after -XX: or in .hotspotrc: SuppressErrorAt="); |
|
204 |
out.print_raw (base_name); |
|
205 |
char buf[16]; |
|
206 |
jio_snprintf(buf, sizeof(buf), ":%d", line_no); |
|
207 |
out.print_raw_cr(buf); |
|
208 |
} |
|
209 |
return false; |
|
210 |
} |
|
211 |
||
212 |
#undef is_token_break |
|
213 |
||
214 |
#else |
|
215 |
||
216 |
// Place-holder for non-existent suppression check: |
|
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
217 |
#define error_is_suppressed(file_name, line_no) (false) |
1 | 218 |
|
10739 | 219 |
#endif // !PRODUCT |
1 | 220 |
|
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
221 |
void report_vm_error(const char* file, int line, const char* error_msg, |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
222 |
const char* detail_msg) |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
223 |
{ |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
224 |
if (Debugging || error_is_suppressed(file, line)) return; |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
225 |
Thread* const thread = ThreadLocalStorage::get_thread_slow(); |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
226 |
VMError err(thread, file, line, error_msg, detail_msg); |
1 | 227 |
err.report_and_die(); |
228 |
} |
|
229 |
||
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
230 |
void report_fatal(const char* file, int line, const char* message) |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
231 |
{ |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
232 |
report_vm_error(file, line, "fatal error", message); |
1 | 233 |
} |
234 |
||
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
235 |
void report_vm_out_of_memory(const char* file, int line, size_t size, |
17087
f0b76c4c93a0
8011661: Insufficient memory message says "malloc" when sometimes it should say "mmap"
ccheung
parents:
16670
diff
changeset
|
236 |
VMErrorType vm_err_type, const char* message) { |
7719
ef138e2849eb
6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents:
7433
diff
changeset
|
237 |
if (Debugging) return; |
1 | 238 |
|
15796
41577a5deb58
6799919: Recursive calls to report_vm_out_of_memory are handled incorrectly
dcubed
parents:
15088
diff
changeset
|
239 |
Thread* thread = ThreadLocalStorage::get_thread_slow(); |
17087
f0b76c4c93a0
8011661: Insufficient memory message says "malloc" when sometimes it should say "mmap"
ccheung
parents:
16670
diff
changeset
|
240 |
VMError(thread, file, line, size, vm_err_type, message).report_and_die(); |
1 | 241 |
|
15796
41577a5deb58
6799919: Recursive calls to report_vm_out_of_memory are handled incorrectly
dcubed
parents:
15088
diff
changeset
|
242 |
// 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
|
243 |
// 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
|
244 |
guarantee(false, "report_and_die() should not return here"); |
1 | 245 |
} |
246 |
||
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
247 |
void report_should_not_call(const char* file, int line) { |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
248 |
report_vm_error(file, line, "ShouldNotCall()"); |
1 | 249 |
} |
250 |
||
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
251 |
void report_should_not_reach_here(const char* file, int line) { |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
252 |
report_vm_error(file, line, "ShouldNotReachHere()"); |
1 | 253 |
} |
254 |
||
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
255 |
void report_unimplemented(const char* file, int line) { |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
256 |
report_vm_error(file, line, "Unimplemented()"); |
1 | 257 |
} |
258 |
||
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
259 |
void report_untested(const char* file, int line, const char* message) { |
1 | 260 |
#ifndef PRODUCT |
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
261 |
warning("Untested: %s in %s: %d\n", message, file, line); |
10739 | 262 |
#endif // !PRODUCT |
1 | 263 |
} |
264 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7719
diff
changeset
|
265 |
void report_out_of_shared_space(SharedSpaceType shared_space) { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7719
diff
changeset
|
266 |
static const char* name[] = { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7719
diff
changeset
|
267 |
"shared read only space", |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7719
diff
changeset
|
268 |
"shared read write space", |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7719
diff
changeset
|
269 |
"shared miscellaneous data space" |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7719
diff
changeset
|
270 |
}; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7719
diff
changeset
|
271 |
static const char* flag[] = { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7719
diff
changeset
|
272 |
"SharedReadOnlySize", |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7719
diff
changeset
|
273 |
"SharedReadWriteSize", |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7719
diff
changeset
|
274 |
"SharedMiscDataSize" |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7719
diff
changeset
|
275 |
}; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7719
diff
changeset
|
276 |
|
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7719
diff
changeset
|
277 |
warning("\nThe %s is not large enough\n" |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7719
diff
changeset
|
278 |
"to preload requested classes. Use -XX:%s=\n" |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7719
diff
changeset
|
279 |
"to increase the initial size of %s.\n", |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7719
diff
changeset
|
280 |
name[shared_space], flag[shared_space], name[shared_space]); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7719
diff
changeset
|
281 |
exit(2); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7719
diff
changeset
|
282 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7719
diff
changeset
|
283 |
|
1 | 284 |
void report_java_out_of_memory(const char* message) { |
285 |
static jint out_of_memory_reported = 0; |
|
286 |
||
287 |
// A number of threads may attempt to report OutOfMemoryError at around the |
|
288 |
// same time. To avoid dumping the heap or executing the data collection |
|
289 |
// commands multiple times we just do it once when the first threads reports |
|
290 |
// the error. |
|
291 |
if (Atomic::cmpxchg(1, &out_of_memory_reported, 0) == 0) { |
|
292 |
// create heap dump before OnOutOfMemoryError commands are executed |
|
293 |
if (HeapDumpOnOutOfMemoryError) { |
|
294 |
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
|
295 |
HeapDumper::dump_heap_from_oome(); |
1 | 296 |
} |
297 |
||
298 |
if (OnOutOfMemoryError && OnOutOfMemoryError[0]) { |
|
299 |
VMError err(message); |
|
300 |
err.report_java_out_of_memory(); |
|
301 |
} |
|
302 |
} |
|
303 |
} |
|
304 |
||
305 |
static bool error_reported = false; |
|
306 |
||
307 |
// call this when the VM is dying--it might loosen some asserts |
|
308 |
void set_error_reported() { |
|
309 |
error_reported = true; |
|
310 |
} |
|
311 |
||
312 |
bool is_error_reported() { |
|
313 |
return error_reported; |
|
314 |
} |
|
315 |
||
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
316 |
#ifndef PRODUCT |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
317 |
#include <signal.h> |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
318 |
|
18683
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
17606
diff
changeset
|
319 |
void test_error_handler() { |
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
17606
diff
changeset
|
320 |
uintx test_num = ErrorHandlerTest; |
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
321 |
if (test_num == 0) return; |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
322 |
|
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
323 |
// If asserts are disabled, use the corresponding guarantee instead. |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
324 |
size_t n = test_num; |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
325 |
NOT_DEBUG(if (n <= 2) n += 2); |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
326 |
|
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
327 |
const char* const str = "hello"; |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
328 |
const size_t num = (size_t)os::vm_page_size(); |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
329 |
|
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
330 |
const char* const eol = os::line_separator(); |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
331 |
const char* const msg = "this message should be truncated during formatting"; |
18683
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
17606
diff
changeset
|
332 |
char * const dataPtr = NULL; // bad data pointer |
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
17606
diff
changeset
|
333 |
const void (*funcPtr)(void) = (const void(*)()) 0xF; // bad function pointer |
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
334 |
|
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
335 |
// Keep this in sync with test/runtime/6888954/vmerrors.sh. |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
336 |
switch (n) { |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
337 |
case 1: assert(str == NULL, "expected null"); |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
338 |
case 2: assert(num == 1023 && *str == 'X', |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
339 |
err_msg("num=" SIZE_FORMAT " str=\"%s\"", num, str)); |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
340 |
case 3: guarantee(str == NULL, "expected null"); |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
341 |
case 4: guarantee(num == 1023 && *str == 'X', |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
342 |
err_msg("num=" SIZE_FORMAT " str=\"%s\"", num, str)); |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
343 |
case 5: fatal("expected null"); |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
344 |
case 6: fatal(err_msg("num=" SIZE_FORMAT " str=\"%s\"", num, str)); |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
345 |
case 7: fatal(err_msg("%s%s# %s%s# %s%s# %s%s# %s%s# " |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
346 |
"%s%s# %s%s# %s%s# %s%s# %s%s# " |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
347 |
"%s%s# %s%s# %s%s# %s%s# %s", |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
348 |
msg, eol, msg, eol, msg, eol, msg, eol, msg, eol, |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
349 |
msg, eol, msg, eol, msg, eol, msg, eol, msg, eol, |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
350 |
msg, eol, msg, eol, msg, eol, msg, eol, msg)); |
17087
f0b76c4c93a0
8011661: Insufficient memory message says "malloc" when sometimes it should say "mmap"
ccheung
parents:
16670
diff
changeset
|
351 |
case 8: vm_exit_out_of_memory(num, OOM_MALLOC_ERROR, "ChunkPool::allocate"); |
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
352 |
case 9: ShouldNotCallThis(); |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
353 |
case 10: ShouldNotReachHere(); |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
354 |
case 11: Unimplemented(); |
18683
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
17606
diff
changeset
|
355 |
// There's no guarantee the bad data pointer will crash us |
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
17606
diff
changeset
|
356 |
// so "break" out to the ShouldNotReachHere(). |
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
17606
diff
changeset
|
357 |
case 12: *dataPtr = '\0'; break; |
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
17606
diff
changeset
|
358 |
// There's no guarantee the bad function pointer will crash us |
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
17606
diff
changeset
|
359 |
// so "break" out to the ShouldNotReachHere(). |
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
17606
diff
changeset
|
360 |
case 13: (*funcPtr)(); break; |
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
361 |
|
18683
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
17606
diff
changeset
|
362 |
default: tty->print_cr("ERROR: %d: unexpected test_num value.", n); |
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
363 |
} |
18683
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
17606
diff
changeset
|
364 |
ShouldNotReachHere(); |
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
365 |
} |
10739 | 366 |
#endif // !PRODUCT |
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3908
diff
changeset
|
367 |
|
1 | 368 |
// ------ helper functions for debugging go here ------------ |
369 |
||
370 |
// All debug entries should be wrapped with a stack allocated |
|
371 |
// Command object. It makes sure a resource mark is set and |
|
372 |
// flushes the logfile to prevent file sharing problems. |
|
373 |
||
374 |
class Command : public StackObj { |
|
375 |
private: |
|
376 |
ResourceMark rm; |
|
377 |
ResetNoHandleMark rnhm; |
|
378 |
HandleMark hm; |
|
379 |
bool debug_save; |
|
380 |
public: |
|
381 |
static int level; |
|
382 |
Command(const char* str) { |
|
383 |
debug_save = Debugging; |
|
384 |
Debugging = true; |
|
385 |
if (level++ > 0) return; |
|
386 |
tty->cr(); |
|
387 |
tty->print_cr("\"Executing %s\"", str); |
|
388 |
} |
|
389 |
||
10739 | 390 |
~Command() { |
391 |
tty->flush(); |
|
392 |
Debugging = debug_save; |
|
393 |
level--; |
|
394 |
} |
|
1 | 395 |
}; |
396 |
||
397 |
int Command::level = 0; |
|
398 |
||
10739 | 399 |
#ifndef PRODUCT |
400 |
||
1 | 401 |
extern "C" void blob(CodeBlob* cb) { |
402 |
Command c("blob"); |
|
403 |
cb->print(); |
|
404 |
} |
|
405 |
||
406 |
||
407 |
extern "C" void dump_vtable(address p) { |
|
408 |
Command c("dump_vtable"); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
409 |
Klass* k = (Klass*)p; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
410 |
InstanceKlass::cast(k)->vtable()->print(); |
1 | 411 |
} |
412 |
||
413 |
||
414 |
extern "C" void nm(intptr_t p) { |
|
415 |
// Actually we look through all CodeBlobs (the nm name has been kept for backwards compatability) |
|
416 |
Command c("nm"); |
|
417 |
CodeBlob* cb = CodeCache::find_blob((address)p); |
|
418 |
if (cb == NULL) { |
|
419 |
tty->print_cr("NULL"); |
|
420 |
} else { |
|
421 |
cb->print(); |
|
422 |
} |
|
423 |
} |
|
424 |
||
425 |
||
426 |
extern "C" void disnm(intptr_t p) { |
|
427 |
Command c("disnm"); |
|
428 |
CodeBlob* cb = CodeCache::find_blob((address) p); |
|
7433 | 429 |
nmethod* nm = cb->as_nmethod_or_null(); |
430 |
if (nm) { |
|
431 |
nm->print(); |
|
432 |
Disassembler::decode(nm); |
|
433 |
} else { |
|
434 |
cb->print(); |
|
435 |
Disassembler::decode(cb); |
|
436 |
} |
|
1 | 437 |
} |
438 |
||
439 |
||
440 |
extern "C" void printnm(intptr_t p) { |
|
441 |
char buffer[256]; |
|
442 |
sprintf(buffer, "printnm: " INTPTR_FORMAT, p); |
|
443 |
Command c(buffer); |
|
444 |
CodeBlob* cb = CodeCache::find_blob((address) p); |
|
445 |
if (cb->is_nmethod()) { |
|
446 |
nmethod* nm = (nmethod*)cb; |
|
447 |
nm->print_nmethod(true); |
|
448 |
} |
|
449 |
} |
|
450 |
||
451 |
||
452 |
extern "C" void universe() { |
|
453 |
Command c("universe"); |
|
454 |
Universe::print(); |
|
455 |
} |
|
456 |
||
457 |
||
458 |
extern "C" void verify() { |
|
459 |
// try to run a verify on the entire system |
|
460 |
// note: this may not be safe if we're not at a safepoint; for debugging, |
|
461 |
// this manipulates the safepoint settings to avoid assertion failures |
|
462 |
Command c("universe verify"); |
|
463 |
bool safe = SafepointSynchronize::is_at_safepoint(); |
|
464 |
if (!safe) { |
|
465 |
tty->print_cr("warning: not at safepoint -- verify may fail"); |
|
466 |
SafepointSynchronize::set_is_at_safepoint(); |
|
467 |
} |
|
468 |
// Ensure Eden top is correct before verification |
|
469 |
Universe::heap()->prepare_for_verify(); |
|
14076
84643cfaeaa8
8000831: Heap verification output incorrect/incomplete
johnc
parents:
13761
diff
changeset
|
470 |
Universe::verify(); |
1 | 471 |
if (!safe) SafepointSynchronize::set_is_not_at_safepoint(); |
472 |
} |
|
473 |
||
474 |
||
475 |
extern "C" void pp(void* p) { |
|
476 |
Command c("pp"); |
|
477 |
FlagSetting fl(PrintVMMessages, true); |
|
9437
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
478 |
FlagSetting f2(DisplayVMOutput, true); |
1 | 479 |
if (Universe::heap()->is_in(p)) { |
480 |
oop obj = oop(p); |
|
481 |
obj->print(); |
|
482 |
} else { |
|
10739 | 483 |
tty->print(PTR_FORMAT, p); |
1 | 484 |
} |
485 |
} |
|
486 |
||
487 |
||
488 |
// pv: print vm-printable object |
|
489 |
extern "C" void pa(intptr_t p) { ((AllocatedObj*) p)->print(); } |
|
490 |
extern "C" void findpc(intptr_t x); |
|
491 |
||
10739 | 492 |
#endif // !PRODUCT |
493 |
||
1 | 494 |
extern "C" void ps() { // print stack |
10739 | 495 |
if (Thread::current() == NULL) return; |
1 | 496 |
Command c("ps"); |
497 |
||
498 |
||
499 |
// Prints the stack of the current Java thread |
|
500 |
JavaThread* p = JavaThread::active(); |
|
501 |
tty->print(" for thread: "); |
|
502 |
p->print(); |
|
503 |
tty->cr(); |
|
504 |
||
505 |
if (p->has_last_Java_frame()) { |
|
506 |
// If the last_Java_fp is set we are in C land and |
|
507 |
// can call the standard stack_trace function. |
|
10739 | 508 |
#ifdef PRODUCT |
509 |
p->print_stack(); |
|
510 |
} else { |
|
511 |
tty->print_cr("Cannot find the last Java frame, printing stack disabled."); |
|
512 |
#else // !PRODUCT |
|
1 | 513 |
p->trace_stack(); |
514 |
} else { |
|
515 |
frame f = os::current_frame(); |
|
516 |
RegisterMap reg_map(p); |
|
517 |
f = f.sender(®_map); |
|
518 |
tty->print("(guessing starting frame id=%#p based on current fp)\n", f.id()); |
|
519 |
p->trace_stack_from(vframe::new_vframe(&f, ®_map, p)); |
|
520 |
pd_ps(f); |
|
10739 | 521 |
#endif // PRODUCT |
1 | 522 |
} |
523 |
||
524 |
} |
|
525 |
||
9437
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
526 |
extern "C" void pfl() { |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
527 |
// print frame layout |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
528 |
Command c("pfl"); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
529 |
JavaThread* p = JavaThread::active(); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
530 |
tty->print(" for thread: "); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
531 |
p->print(); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
532 |
tty->cr(); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
533 |
if (p->has_last_Java_frame()) { |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
534 |
p->print_frame_layout(); |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
535 |
} |
9981851b4b8c
7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents:
8921
diff
changeset
|
536 |
} |
1 | 537 |
|
10739 | 538 |
#ifndef PRODUCT |
539 |
||
1 | 540 |
extern "C" void psf() { // print stack frames |
541 |
{ |
|
542 |
Command c("psf"); |
|
543 |
JavaThread* p = JavaThread::active(); |
|
544 |
tty->print(" for thread: "); |
|
545 |
p->print(); |
|
546 |
tty->cr(); |
|
547 |
if (p->has_last_Java_frame()) { |
|
548 |
p->trace_frames(); |
|
549 |
} |
|
550 |
} |
|
551 |
} |
|
552 |
||
553 |
||
554 |
extern "C" void threads() { |
|
555 |
Command c("threads"); |
|
556 |
Threads::print(false, true); |
|
557 |
} |
|
558 |
||
559 |
||
560 |
extern "C" void psd() { |
|
561 |
Command c("psd"); |
|
562 |
SystemDictionary::print(); |
|
563 |
} |
|
564 |
||
565 |
||
566 |
extern "C" void safepoints() { |
|
567 |
Command c("safepoints"); |
|
568 |
SafepointSynchronize::print_state(); |
|
569 |
} |
|
570 |
||
10739 | 571 |
#endif // !PRODUCT |
1 | 572 |
|
573 |
extern "C" void pss() { // print all stacks |
|
10739 | 574 |
if (Thread::current() == NULL) return; |
1 | 575 |
Command c("pss"); |
10739 | 576 |
Threads::print(true, PRODUCT_ONLY(false) NOT_PRODUCT(true)); |
1 | 577 |
} |
578 |
||
10739 | 579 |
#ifndef PRODUCT |
1 | 580 |
|
581 |
extern "C" void debug() { // to set things up for compiler debugging |
|
582 |
Command c("debug"); |
|
583 |
WizardMode = true; |
|
584 |
PrintVMMessages = PrintCompilation = true; |
|
585 |
PrintInlining = PrintAssembly = true; |
|
586 |
tty->flush(); |
|
587 |
} |
|
588 |
||
589 |
||
590 |
extern "C" void ndebug() { // undo debug() |
|
591 |
Command c("ndebug"); |
|
592 |
PrintCompilation = false; |
|
593 |
PrintInlining = PrintAssembly = false; |
|
594 |
tty->flush(); |
|
595 |
} |
|
596 |
||
597 |
||
598 |
extern "C" void flush() { |
|
599 |
Command c("flush"); |
|
600 |
tty->flush(); |
|
601 |
} |
|
602 |
||
11788 | 603 |
extern "C" void events() { |
604 |
Command c("events"); |
|
605 |
Events::print(); |
|
606 |
} |
|
1 | 607 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
608 |
extern "C" Method* findm(intptr_t pc) { |
1 | 609 |
Command c("findm"); |
610 |
nmethod* nm = CodeCache::find_nmethod((address)pc); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
611 |
return (nm == NULL) ? (Method*)NULL : nm->method(); |
1 | 612 |
} |
613 |
||
614 |
||
615 |
extern "C" nmethod* findnm(intptr_t addr) { |
|
616 |
Command c("findnm"); |
|
617 |
return CodeCache::find_nmethod((address)addr); |
|
618 |
} |
|
619 |
||
620 |
// Another interface that isn't ambiguous in dbx. |
|
621 |
// Can we someday rename the other find to hsfind? |
|
622 |
extern "C" void hsfind(intptr_t x) { |
|
623 |
Command c("hsfind"); |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
624 |
os::print_location(tty, x, false); |
1 | 625 |
} |
626 |
||
627 |
||
628 |
extern "C" void find(intptr_t x) { |
|
629 |
Command c("find"); |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
630 |
os::print_location(tty, x, false); |
1 | 631 |
} |
632 |
||
633 |
||
634 |
extern "C" void findpc(intptr_t x) { |
|
635 |
Command c("findpc"); |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
636 |
os::print_location(tty, x, true); |
1 | 637 |
} |
638 |
||
639 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
640 |
// 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
|
641 |
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
|
642 |
Command c("findbcp"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
643 |
Method* mh = (Method*)method; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
644 |
if (!mh->is_native()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
645 |
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
|
646 |
mh, mh->bci_from(address(bcp))); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
647 |
mh->print_codes_on(tty); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
648 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
649 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13393
diff
changeset
|
650 |
|
1 | 651 |
// int versions of all methods to avoid having to type type casts in the debugger |
652 |
||
653 |
void pp(intptr_t p) { pp((void*)p); } |
|
654 |
void pp(oop p) { pp((void*)p); } |
|
655 |
||
656 |
void help() { |
|
657 |
Command c("help"); |
|
658 |
tty->print_cr("basic"); |
|
659 |
tty->print_cr(" pp(void* p) - try to make sense of p"); |
|
660 |
tty->print_cr(" pv(intptr_t p)- ((PrintableResourceObj*) p)->print()"); |
|
661 |
tty->print_cr(" ps() - print current thread stack"); |
|
662 |
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
|
663 |
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
|
664 |
tty->print_cr(" findm(intptr_t pc) - finds Method*"); |
1 | 665 |
tty->print_cr(" find(intptr_t x) - finds & prints nmethod/stub/bytecode/oop based on pointer into it"); |
666 |
||
667 |
tty->print_cr("misc."); |
|
668 |
tty->print_cr(" flush() - flushes the log file"); |
|
11788 | 669 |
tty->print_cr(" events() - dump events from ring buffers"); |
1 | 670 |
|
671 |
||
672 |
tty->print_cr("compiler debugging"); |
|
673 |
tty->print_cr(" debug() - to set things up for compiler debugging"); |
|
674 |
tty->print_cr(" ndebug() - undo debug"); |
|
675 |
} |
|
676 |
||
10739 | 677 |
#endif // !PRODUCT |