annotate src/share/vm/utilities/debug.cpp @ 196:d1605aabd0a1 jdk7-b30

6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
author xdono
date Wed, 02 Jul 2008 12:55:16 -0700
parents ba764ed4b6f2
children 9c2ecc2ffb12
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 113
diff changeset
2 * Copyright 1997-2008 Sun Microsystems, Inc. All Rights Reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_debug.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 #ifndef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
29 # ifdef _DEBUG
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // NOTE: don't turn the lines below into a comment -- if you're getting
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // a compile error here, change the settings to define ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
32 ASSERT should be defined when _DEBUG is defined. It is not intended to be used for debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
33 functions that do not slow down the system too much and thus can be left in optimized code.
a61af66fc99e Initial load
duke
parents:
diff changeset
34 On the other hand, the code should not be included in a production version.
a61af66fc99e Initial load
duke
parents:
diff changeset
35 # endif // _DEBUG
a61af66fc99e Initial load
duke
parents:
diff changeset
36 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 #ifdef _DEBUG
a61af66fc99e Initial load
duke
parents:
diff changeset
40 # ifndef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
41 configuration error: ASSERT must be defined in debug version
a61af66fc99e Initial load
duke
parents:
diff changeset
42 # endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
43 #endif // _DEBUG
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 #ifdef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
47 # if -defined _DEBUG || -defined ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
48 configuration error: ASSERT et al. must not be defined in PRODUCT version
a61af66fc99e Initial load
duke
parents:
diff changeset
49 # endif
a61af66fc99e Initial load
duke
parents:
diff changeset
50 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 void warning(const char* format, ...) {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // In case error happens before init or during shutdown
a61af66fc99e Initial load
duke
parents:
diff changeset
55 if (tty == NULL) ostream_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 tty->print("%s warning: ", VM_Version::vm_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
58 va_list ap;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 va_start(ap, format);
a61af66fc99e Initial load
duke
parents:
diff changeset
60 tty->vprint_cr(format, ap);
a61af66fc99e Initial load
duke
parents:
diff changeset
61 va_end(ap);
a61af66fc99e Initial load
duke
parents:
diff changeset
62 if (BreakAtWarning) BREAKPOINT;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 #define is_token_break(ch) (isspace(ch) || (ch) == ',')
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 static const char* last_file_name = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 static int last_line_no = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // assert/guarantee/... may happen very early during VM initialization.
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // Don't rely on anything that is initialized by Threads::create_vm(). For
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // example, don't use tty.
a61af66fc99e Initial load
duke
parents:
diff changeset
75 bool assert_is_suppressed(const char* file_name, int line_no) {
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // The following 1-element cache requires that passed-in
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // file names are always only constant literals.
a61af66fc99e Initial load
duke
parents:
diff changeset
78 if (file_name == last_file_name && line_no == last_line_no) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 int file_name_len = (int)strlen(file_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
81 char separator = os::file_separator()[0];
a61af66fc99e Initial load
duke
parents:
diff changeset
82 const char* base_name = strrchr(file_name, separator);
a61af66fc99e Initial load
duke
parents:
diff changeset
83 if (base_name == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
84 base_name = file_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // scan the SuppressErrorAt option
a61af66fc99e Initial load
duke
parents:
diff changeset
87 const char* cp = SuppressErrorAt;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 for (;;) {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 const char* sfile;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 int sfile_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
91 int sline;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 bool noisy;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 while ((*cp) != '\0' && is_token_break(*cp)) cp++;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 if ((*cp) == '\0') break;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 sfile = cp;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 while ((*cp) != '\0' && !is_token_break(*cp) && (*cp) != ':') cp++;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 sfile_len = cp - sfile;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 if ((*cp) == ':') cp++;
a61af66fc99e Initial load
duke
parents:
diff changeset
99 sline = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 while ((*cp) != '\0' && isdigit(*cp)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 sline *= 10;
a61af66fc99e Initial load
duke
parents:
diff changeset
102 sline += (*cp) - '0';
a61af66fc99e Initial load
duke
parents:
diff changeset
103 cp++;
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // "file:line!" means the assert suppression is not silent
a61af66fc99e Initial load
duke
parents:
diff changeset
106 noisy = ((*cp) == '!');
a61af66fc99e Initial load
duke
parents:
diff changeset
107 while ((*cp) != '\0' && !is_token_break(*cp)) cp++;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // match the line
a61af66fc99e Initial load
duke
parents:
diff changeset
109 if (sline != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
110 if (sline != line_no) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
111 }
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // match the file
a61af66fc99e Initial load
duke
parents:
diff changeset
113 if (sfile_len > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
114 const char* look = file_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
115 const char* look_max = file_name + file_name_len - sfile_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
116 const char* foundp;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 bool match = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
118 while (!match
a61af66fc99e Initial load
duke
parents:
diff changeset
119 && (foundp = strchr(look, sfile[0])) != NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
120 && foundp <= look_max) {
a61af66fc99e Initial load
duke
parents:
diff changeset
121 match = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 for (int i = 1; i < sfile_len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
123 if (sfile[i] != foundp[i]) {
a61af66fc99e Initial load
duke
parents:
diff changeset
124 match = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
127 }
a61af66fc99e Initial load
duke
parents:
diff changeset
128 look = foundp + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 }
a61af66fc99e Initial load
duke
parents:
diff changeset
130 if (!match) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 }
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // got a match!
a61af66fc99e Initial load
duke
parents:
diff changeset
133 if (noisy) {
a61af66fc99e Initial load
duke
parents:
diff changeset
134 fdStream out(defaultStream::output_fd());
a61af66fc99e Initial load
duke
parents:
diff changeset
135 out.print_raw("[error suppressed at ");
a61af66fc99e Initial load
duke
parents:
diff changeset
136 out.print_raw(base_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
137 char buf[16];
a61af66fc99e Initial load
duke
parents:
diff changeset
138 jio_snprintf(buf, sizeof(buf), ":%d]", line_no);
a61af66fc99e Initial load
duke
parents:
diff changeset
139 out.print_raw_cr(buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
140 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
141 // update 1-element cache for fast silent matches
a61af66fc99e Initial load
duke
parents:
diff changeset
142 last_file_name = file_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
143 last_line_no = line_no;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
145 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 if (!is_error_reported()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // print a friendly hint:
a61af66fc99e Initial load
duke
parents:
diff changeset
150 fdStream out(defaultStream::output_fd());
a61af66fc99e Initial load
duke
parents:
diff changeset
151 out.print_raw_cr("# To suppress the following error report, specify this argument");
a61af66fc99e Initial load
duke
parents:
diff changeset
152 out.print_raw ("# after -XX: or in .hotspotrc: SuppressErrorAt=");
a61af66fc99e Initial load
duke
parents:
diff changeset
153 out.print_raw (base_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
154 char buf[16];
a61af66fc99e Initial load
duke
parents:
diff changeset
155 jio_snprintf(buf, sizeof(buf), ":%d", line_no);
a61af66fc99e Initial load
duke
parents:
diff changeset
156 out.print_raw_cr(buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
157 }
a61af66fc99e Initial load
duke
parents:
diff changeset
158 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
159 }
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 #undef is_token_break
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // Place-holder for non-existent suppression check:
a61af66fc99e Initial load
duke
parents:
diff changeset
166 #define assert_is_suppressed(file_name, line_no) (false)
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 #endif //PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
169
a61af66fc99e Initial load
duke
parents:
diff changeset
170 void report_assertion_failure(const char* file_name, int line_no, const char* message) {
a61af66fc99e Initial load
duke
parents:
diff changeset
171 if (Debugging || assert_is_suppressed(file_name, line_no)) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 VMError err(ThreadLocalStorage::get_thread_slow(), message, file_name, line_no);
a61af66fc99e Initial load
duke
parents:
diff changeset
173 err.report_and_die();
a61af66fc99e Initial load
duke
parents:
diff changeset
174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176 void report_fatal(const char* file_name, int line_no, const char* message) {
a61af66fc99e Initial load
duke
parents:
diff changeset
177 if (Debugging || assert_is_suppressed(file_name, line_no)) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
178 VMError err(ThreadLocalStorage::get_thread_slow(), message, file_name, line_no);
a61af66fc99e Initial load
duke
parents:
diff changeset
179 err.report_and_die();
a61af66fc99e Initial load
duke
parents:
diff changeset
180 }
a61af66fc99e Initial load
duke
parents:
diff changeset
181
a61af66fc99e Initial load
duke
parents:
diff changeset
182 void report_fatal_vararg(const char* file_name, int line_no, const char* format, ...) {
a61af66fc99e Initial load
duke
parents:
diff changeset
183 char buffer[256];
a61af66fc99e Initial load
duke
parents:
diff changeset
184 va_list ap;
a61af66fc99e Initial load
duke
parents:
diff changeset
185 va_start(ap, format);
a61af66fc99e Initial load
duke
parents:
diff changeset
186 jio_vsnprintf(buffer, sizeof(buffer), format, ap);
a61af66fc99e Initial load
duke
parents:
diff changeset
187 va_end(ap);
a61af66fc99e Initial load
duke
parents:
diff changeset
188 report_fatal(file_name, line_no, buffer);
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191
a61af66fc99e Initial load
duke
parents:
diff changeset
192 // Used by report_vm_out_of_memory to detect recursion.
a61af66fc99e Initial load
duke
parents:
diff changeset
193 static jint _exiting_out_of_mem = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 // Just passing the flow to VMError to handle error
a61af66fc99e Initial load
duke
parents:
diff changeset
196 void report_vm_out_of_memory(const char* file_name, int line_no, size_t size, const char* message) {
a61af66fc99e Initial load
duke
parents:
diff changeset
197 if (Debugging || assert_is_suppressed(file_name, line_no)) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
198
a61af66fc99e Initial load
duke
parents:
diff changeset
199 // We try to gather additional information for the first out of memory
a61af66fc99e Initial load
duke
parents:
diff changeset
200 // error only; gathering additional data might cause an allocation and a
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // recursive out_of_memory condition.
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 const jint exiting = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
204 // If we succeed in changing the value, we're the first one in.
a61af66fc99e Initial load
duke
parents:
diff changeset
205 bool first_time_here = Atomic::xchg(exiting, &_exiting_out_of_mem) != exiting;
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 if (first_time_here) {
a61af66fc99e Initial load
duke
parents:
diff changeset
208 Thread* thread = ThreadLocalStorage::get_thread_slow();
a61af66fc99e Initial load
duke
parents:
diff changeset
209 VMError(thread, size, message, file_name, line_no).report_and_die();
a61af66fc99e Initial load
duke
parents:
diff changeset
210 }
a61af66fc99e Initial load
duke
parents:
diff changeset
211 vm_abort();
a61af66fc99e Initial load
duke
parents:
diff changeset
212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
213
a61af66fc99e Initial load
duke
parents:
diff changeset
214 void report_vm_out_of_memory_vararg(const char* file_name, int line_no, size_t size, const char* format, ...) {
a61af66fc99e Initial load
duke
parents:
diff changeset
215 char buffer[256];
a61af66fc99e Initial load
duke
parents:
diff changeset
216 va_list ap;
a61af66fc99e Initial load
duke
parents:
diff changeset
217 va_start(ap, format);
a61af66fc99e Initial load
duke
parents:
diff changeset
218 jio_vsnprintf(buffer, sizeof(buffer), format, ap);
a61af66fc99e Initial load
duke
parents:
diff changeset
219 va_end(ap);
a61af66fc99e Initial load
duke
parents:
diff changeset
220 report_vm_out_of_memory(file_name, line_no, size, buffer);
a61af66fc99e Initial load
duke
parents:
diff changeset
221 }
a61af66fc99e Initial load
duke
parents:
diff changeset
222
a61af66fc99e Initial load
duke
parents:
diff changeset
223 void report_should_not_call(const char* file_name, int line_no) {
a61af66fc99e Initial load
duke
parents:
diff changeset
224 if (Debugging || assert_is_suppressed(file_name, line_no)) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
225 VMError err(ThreadLocalStorage::get_thread_slow(), "ShouldNotCall()", file_name, line_no);
a61af66fc99e Initial load
duke
parents:
diff changeset
226 err.report_and_die();
a61af66fc99e Initial load
duke
parents:
diff changeset
227 }
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230 void report_should_not_reach_here(const char* file_name, int line_no) {
a61af66fc99e Initial load
duke
parents:
diff changeset
231 if (Debugging || assert_is_suppressed(file_name, line_no)) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
232 VMError err(ThreadLocalStorage::get_thread_slow(), "ShouldNotReachHere()", file_name, line_no);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 err.report_and_die();
a61af66fc99e Initial load
duke
parents:
diff changeset
234 }
a61af66fc99e Initial load
duke
parents:
diff changeset
235
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237 void report_unimplemented(const char* file_name, int line_no) {
a61af66fc99e Initial load
duke
parents:
diff changeset
238 if (Debugging || assert_is_suppressed(file_name, line_no)) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
239 VMError err(ThreadLocalStorage::get_thread_slow(), "Unimplemented()", file_name, line_no);
a61af66fc99e Initial load
duke
parents:
diff changeset
240 err.report_and_die();
a61af66fc99e Initial load
duke
parents:
diff changeset
241 }
a61af66fc99e Initial load
duke
parents:
diff changeset
242
a61af66fc99e Initial load
duke
parents:
diff changeset
243
a61af66fc99e Initial load
duke
parents:
diff changeset
244 void report_untested(const char* file_name, int line_no, const char* msg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
245 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
246 warning("Untested: %s in %s: %d\n", msg, file_name, line_no);
a61af66fc99e Initial load
duke
parents:
diff changeset
247 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
248 }
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250 void report_java_out_of_memory(const char* message) {
a61af66fc99e Initial load
duke
parents:
diff changeset
251 static jint out_of_memory_reported = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
252
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // A number of threads may attempt to report OutOfMemoryError at around the
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // same time. To avoid dumping the heap or executing the data collection
a61af66fc99e Initial load
duke
parents:
diff changeset
255 // commands multiple times we just do it once when the first threads reports
a61af66fc99e Initial load
duke
parents:
diff changeset
256 // the error.
a61af66fc99e Initial load
duke
parents:
diff changeset
257 if (Atomic::cmpxchg(1, &out_of_memory_reported, 0) == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
258 // create heap dump before OnOutOfMemoryError commands are executed
a61af66fc99e Initial load
duke
parents:
diff changeset
259 if (HeapDumpOnOutOfMemoryError) {
a61af66fc99e Initial load
duke
parents:
diff changeset
260 tty->print_cr("java.lang.OutOfMemoryError: %s", message);
a61af66fc99e Initial load
duke
parents:
diff changeset
261 HeapDumper::dump_heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
262 }
a61af66fc99e Initial load
duke
parents:
diff changeset
263
a61af66fc99e Initial load
duke
parents:
diff changeset
264 if (OnOutOfMemoryError && OnOutOfMemoryError[0]) {
a61af66fc99e Initial load
duke
parents:
diff changeset
265 VMError err(message);
a61af66fc99e Initial load
duke
parents:
diff changeset
266 err.report_java_out_of_memory();
a61af66fc99e Initial load
duke
parents:
diff changeset
267 }
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269 }
a61af66fc99e Initial load
duke
parents:
diff changeset
270
a61af66fc99e Initial load
duke
parents:
diff changeset
271
a61af66fc99e Initial load
duke
parents:
diff changeset
272 extern "C" void ps();
a61af66fc99e Initial load
duke
parents:
diff changeset
273
a61af66fc99e Initial load
duke
parents:
diff changeset
274 static bool error_reported = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
275
a61af66fc99e Initial load
duke
parents:
diff changeset
276 // call this when the VM is dying--it might loosen some asserts
a61af66fc99e Initial load
duke
parents:
diff changeset
277 void set_error_reported() {
a61af66fc99e Initial load
duke
parents:
diff changeset
278 error_reported = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
279 }
a61af66fc99e Initial load
duke
parents:
diff changeset
280
a61af66fc99e Initial load
duke
parents:
diff changeset
281 bool is_error_reported() {
a61af66fc99e Initial load
duke
parents:
diff changeset
282 return error_reported;
a61af66fc99e Initial load
duke
parents:
diff changeset
283 }
a61af66fc99e Initial load
duke
parents:
diff changeset
284
a61af66fc99e Initial load
duke
parents:
diff changeset
285 // ------ helper functions for debugging go here ------------
a61af66fc99e Initial load
duke
parents:
diff changeset
286
a61af66fc99e Initial load
duke
parents:
diff changeset
287 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
288 // All debug entries should be wrapped with a stack allocated
a61af66fc99e Initial load
duke
parents:
diff changeset
289 // Command object. It makes sure a resource mark is set and
a61af66fc99e Initial load
duke
parents:
diff changeset
290 // flushes the logfile to prevent file sharing problems.
a61af66fc99e Initial load
duke
parents:
diff changeset
291
a61af66fc99e Initial load
duke
parents:
diff changeset
292 class Command : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
293 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
294 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
295 ResetNoHandleMark rnhm;
a61af66fc99e Initial load
duke
parents:
diff changeset
296 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
297 bool debug_save;
a61af66fc99e Initial load
duke
parents:
diff changeset
298 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
299 static int level;
a61af66fc99e Initial load
duke
parents:
diff changeset
300 Command(const char* str) {
a61af66fc99e Initial load
duke
parents:
diff changeset
301 debug_save = Debugging;
a61af66fc99e Initial load
duke
parents:
diff changeset
302 Debugging = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
303 if (level++ > 0) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
304 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
305 tty->print_cr("\"Executing %s\"", str);
a61af66fc99e Initial load
duke
parents:
diff changeset
306 }
a61af66fc99e Initial load
duke
parents:
diff changeset
307
a61af66fc99e Initial load
duke
parents:
diff changeset
308 ~Command() { tty->flush(); Debugging = debug_save; level--; }
a61af66fc99e Initial load
duke
parents:
diff changeset
309 };
a61af66fc99e Initial load
duke
parents:
diff changeset
310
a61af66fc99e Initial load
duke
parents:
diff changeset
311 int Command::level = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 extern "C" void blob(CodeBlob* cb) {
a61af66fc99e Initial load
duke
parents:
diff changeset
314 Command c("blob");
a61af66fc99e Initial load
duke
parents:
diff changeset
315 cb->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
316 }
a61af66fc99e Initial load
duke
parents:
diff changeset
317
a61af66fc99e Initial load
duke
parents:
diff changeset
318
a61af66fc99e Initial load
duke
parents:
diff changeset
319 extern "C" void dump_vtable(address p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
320 Command c("dump_vtable");
a61af66fc99e Initial load
duke
parents:
diff changeset
321 klassOop k = (klassOop)p;
a61af66fc99e Initial load
duke
parents:
diff changeset
322 instanceKlass::cast(k)->vtable()->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
323 }
a61af66fc99e Initial load
duke
parents:
diff changeset
324
a61af66fc99e Initial load
duke
parents:
diff changeset
325
a61af66fc99e Initial load
duke
parents:
diff changeset
326 extern "C" void nm(intptr_t p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
327 // Actually we look through all CodeBlobs (the nm name has been kept for backwards compatability)
a61af66fc99e Initial load
duke
parents:
diff changeset
328 Command c("nm");
a61af66fc99e Initial load
duke
parents:
diff changeset
329 CodeBlob* cb = CodeCache::find_blob((address)p);
a61af66fc99e Initial load
duke
parents:
diff changeset
330 if (cb == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
331 tty->print_cr("NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
332 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
333 cb->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
334 }
a61af66fc99e Initial load
duke
parents:
diff changeset
335 }
a61af66fc99e Initial load
duke
parents:
diff changeset
336
a61af66fc99e Initial load
duke
parents:
diff changeset
337
a61af66fc99e Initial load
duke
parents:
diff changeset
338 extern "C" void disnm(intptr_t p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
339 Command c("disnm");
a61af66fc99e Initial load
duke
parents:
diff changeset
340 CodeBlob* cb = CodeCache::find_blob((address) p);
a61af66fc99e Initial load
duke
parents:
diff changeset
341 cb->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
342 Disassembler::decode(cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
343 }
a61af66fc99e Initial load
duke
parents:
diff changeset
344
a61af66fc99e Initial load
duke
parents:
diff changeset
345
a61af66fc99e Initial load
duke
parents:
diff changeset
346 extern "C" void printnm(intptr_t p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
347 char buffer[256];
a61af66fc99e Initial load
duke
parents:
diff changeset
348 sprintf(buffer, "printnm: " INTPTR_FORMAT, p);
a61af66fc99e Initial load
duke
parents:
diff changeset
349 Command c(buffer);
a61af66fc99e Initial load
duke
parents:
diff changeset
350 CodeBlob* cb = CodeCache::find_blob((address) p);
a61af66fc99e Initial load
duke
parents:
diff changeset
351 if (cb->is_nmethod()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
352 nmethod* nm = (nmethod*)cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
353 nm->print_nmethod(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
354 }
a61af66fc99e Initial load
duke
parents:
diff changeset
355 }
a61af66fc99e Initial load
duke
parents:
diff changeset
356
a61af66fc99e Initial load
duke
parents:
diff changeset
357
a61af66fc99e Initial load
duke
parents:
diff changeset
358 extern "C" void universe() {
a61af66fc99e Initial load
duke
parents:
diff changeset
359 Command c("universe");
a61af66fc99e Initial load
duke
parents:
diff changeset
360 Universe::print();
a61af66fc99e Initial load
duke
parents:
diff changeset
361 }
a61af66fc99e Initial load
duke
parents:
diff changeset
362
a61af66fc99e Initial load
duke
parents:
diff changeset
363
a61af66fc99e Initial load
duke
parents:
diff changeset
364 extern "C" void verify() {
a61af66fc99e Initial load
duke
parents:
diff changeset
365 // try to run a verify on the entire system
a61af66fc99e Initial load
duke
parents:
diff changeset
366 // note: this may not be safe if we're not at a safepoint; for debugging,
a61af66fc99e Initial load
duke
parents:
diff changeset
367 // this manipulates the safepoint settings to avoid assertion failures
a61af66fc99e Initial load
duke
parents:
diff changeset
368 Command c("universe verify");
a61af66fc99e Initial load
duke
parents:
diff changeset
369 bool safe = SafepointSynchronize::is_at_safepoint();
a61af66fc99e Initial load
duke
parents:
diff changeset
370 if (!safe) {
a61af66fc99e Initial load
duke
parents:
diff changeset
371 tty->print_cr("warning: not at safepoint -- verify may fail");
a61af66fc99e Initial load
duke
parents:
diff changeset
372 SafepointSynchronize::set_is_at_safepoint();
a61af66fc99e Initial load
duke
parents:
diff changeset
373 }
a61af66fc99e Initial load
duke
parents:
diff changeset
374 // Ensure Eden top is correct before verification
a61af66fc99e Initial load
duke
parents:
diff changeset
375 Universe::heap()->prepare_for_verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
376 Universe::verify(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
377 if (!safe) SafepointSynchronize::set_is_not_at_safepoint();
a61af66fc99e Initial load
duke
parents:
diff changeset
378 }
a61af66fc99e Initial load
duke
parents:
diff changeset
379
a61af66fc99e Initial load
duke
parents:
diff changeset
380
a61af66fc99e Initial load
duke
parents:
diff changeset
381 extern "C" void pp(void* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
382 Command c("pp");
a61af66fc99e Initial load
duke
parents:
diff changeset
383 FlagSetting fl(PrintVMMessages, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
384 if (Universe::heap()->is_in(p)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
385 oop obj = oop(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
386 obj->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
387 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
388 tty->print("%#p", p);
a61af66fc99e Initial load
duke
parents:
diff changeset
389 }
a61af66fc99e Initial load
duke
parents:
diff changeset
390 }
a61af66fc99e Initial load
duke
parents:
diff changeset
391
a61af66fc99e Initial load
duke
parents:
diff changeset
392
a61af66fc99e Initial load
duke
parents:
diff changeset
393 // pv: print vm-printable object
a61af66fc99e Initial load
duke
parents:
diff changeset
394 extern "C" void pa(intptr_t p) { ((AllocatedObj*) p)->print(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
395 extern "C" void findpc(intptr_t x);
a61af66fc99e Initial load
duke
parents:
diff changeset
396
a61af66fc99e Initial load
duke
parents:
diff changeset
397 extern "C" void ps() { // print stack
a61af66fc99e Initial load
duke
parents:
diff changeset
398 Command c("ps");
a61af66fc99e Initial load
duke
parents:
diff changeset
399
a61af66fc99e Initial load
duke
parents:
diff changeset
400
a61af66fc99e Initial load
duke
parents:
diff changeset
401 // Prints the stack of the current Java thread
a61af66fc99e Initial load
duke
parents:
diff changeset
402 JavaThread* p = JavaThread::active();
a61af66fc99e Initial load
duke
parents:
diff changeset
403 tty->print(" for thread: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
404 p->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
405 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
406
a61af66fc99e Initial load
duke
parents:
diff changeset
407 if (p->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
408 // If the last_Java_fp is set we are in C land and
a61af66fc99e Initial load
duke
parents:
diff changeset
409 // can call the standard stack_trace function.
a61af66fc99e Initial load
duke
parents:
diff changeset
410 p->trace_stack();
a61af66fc99e Initial load
duke
parents:
diff changeset
411 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
412 frame f = os::current_frame();
a61af66fc99e Initial load
duke
parents:
diff changeset
413 RegisterMap reg_map(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
414 f = f.sender(&reg_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
415 tty->print("(guessing starting frame id=%#p based on current fp)\n", f.id());
a61af66fc99e Initial load
duke
parents:
diff changeset
416 p->trace_stack_from(vframe::new_vframe(&f, &reg_map, p));
a61af66fc99e Initial load
duke
parents:
diff changeset
417 pd_ps(f);
a61af66fc99e Initial load
duke
parents:
diff changeset
418 }
a61af66fc99e Initial load
duke
parents:
diff changeset
419
a61af66fc99e Initial load
duke
parents:
diff changeset
420 }
a61af66fc99e Initial load
duke
parents:
diff changeset
421
a61af66fc99e Initial load
duke
parents:
diff changeset
422
a61af66fc99e Initial load
duke
parents:
diff changeset
423 extern "C" void psf() { // print stack frames
a61af66fc99e Initial load
duke
parents:
diff changeset
424 {
a61af66fc99e Initial load
duke
parents:
diff changeset
425 Command c("psf");
a61af66fc99e Initial load
duke
parents:
diff changeset
426 JavaThread* p = JavaThread::active();
a61af66fc99e Initial load
duke
parents:
diff changeset
427 tty->print(" for thread: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
428 p->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
429 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
430 if (p->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
431 p->trace_frames();
a61af66fc99e Initial load
duke
parents:
diff changeset
432 }
a61af66fc99e Initial load
duke
parents:
diff changeset
433 }
a61af66fc99e Initial load
duke
parents:
diff changeset
434 }
a61af66fc99e Initial load
duke
parents:
diff changeset
435
a61af66fc99e Initial load
duke
parents:
diff changeset
436
a61af66fc99e Initial load
duke
parents:
diff changeset
437 extern "C" void threads() {
a61af66fc99e Initial load
duke
parents:
diff changeset
438 Command c("threads");
a61af66fc99e Initial load
duke
parents:
diff changeset
439 Threads::print(false, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
440 }
a61af66fc99e Initial load
duke
parents:
diff changeset
441
a61af66fc99e Initial load
duke
parents:
diff changeset
442
a61af66fc99e Initial load
duke
parents:
diff changeset
443 extern "C" void psd() {
a61af66fc99e Initial load
duke
parents:
diff changeset
444 Command c("psd");
a61af66fc99e Initial load
duke
parents:
diff changeset
445 SystemDictionary::print();
a61af66fc99e Initial load
duke
parents:
diff changeset
446 }
a61af66fc99e Initial load
duke
parents:
diff changeset
447
a61af66fc99e Initial load
duke
parents:
diff changeset
448
a61af66fc99e Initial load
duke
parents:
diff changeset
449 extern "C" void safepoints() {
a61af66fc99e Initial load
duke
parents:
diff changeset
450 Command c("safepoints");
a61af66fc99e Initial load
duke
parents:
diff changeset
451 SafepointSynchronize::print_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
452 }
a61af66fc99e Initial load
duke
parents:
diff changeset
453
a61af66fc99e Initial load
duke
parents:
diff changeset
454
a61af66fc99e Initial load
duke
parents:
diff changeset
455 extern "C" void pss() { // print all stacks
a61af66fc99e Initial load
duke
parents:
diff changeset
456 Command c("pss");
a61af66fc99e Initial load
duke
parents:
diff changeset
457 Threads::print(true, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
458 }
a61af66fc99e Initial load
duke
parents:
diff changeset
459
a61af66fc99e Initial load
duke
parents:
diff changeset
460
a61af66fc99e Initial load
duke
parents:
diff changeset
461 extern "C" void debug() { // to set things up for compiler debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
462 Command c("debug");
a61af66fc99e Initial load
duke
parents:
diff changeset
463 WizardMode = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
464 PrintVMMessages = PrintCompilation = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
465 PrintInlining = PrintAssembly = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
466 tty->flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
467 }
a61af66fc99e Initial load
duke
parents:
diff changeset
468
a61af66fc99e Initial load
duke
parents:
diff changeset
469
a61af66fc99e Initial load
duke
parents:
diff changeset
470 extern "C" void ndebug() { // undo debug()
a61af66fc99e Initial load
duke
parents:
diff changeset
471 Command c("ndebug");
a61af66fc99e Initial load
duke
parents:
diff changeset
472 PrintCompilation = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
473 PrintInlining = PrintAssembly = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
474 tty->flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
475 }
a61af66fc99e Initial load
duke
parents:
diff changeset
476
a61af66fc99e Initial load
duke
parents:
diff changeset
477
a61af66fc99e Initial load
duke
parents:
diff changeset
478 extern "C" void flush() {
a61af66fc99e Initial load
duke
parents:
diff changeset
479 Command c("flush");
a61af66fc99e Initial load
duke
parents:
diff changeset
480 tty->flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
481 }
a61af66fc99e Initial load
duke
parents:
diff changeset
482
a61af66fc99e Initial load
duke
parents:
diff changeset
483
a61af66fc99e Initial load
duke
parents:
diff changeset
484 extern "C" void events() {
a61af66fc99e Initial load
duke
parents:
diff changeset
485 Command c("events");
a61af66fc99e Initial load
duke
parents:
diff changeset
486 Events::print_last(tty, 50);
a61af66fc99e Initial load
duke
parents:
diff changeset
487 }
a61af66fc99e Initial load
duke
parents:
diff changeset
488
a61af66fc99e Initial load
duke
parents:
diff changeset
489
a61af66fc99e Initial load
duke
parents:
diff changeset
490 extern "C" void nevents(int n) {
a61af66fc99e Initial load
duke
parents:
diff changeset
491 Command c("events");
a61af66fc99e Initial load
duke
parents:
diff changeset
492 Events::print_last(tty, n);
a61af66fc99e Initial load
duke
parents:
diff changeset
493 }
a61af66fc99e Initial load
duke
parents:
diff changeset
494
a61af66fc99e Initial load
duke
parents:
diff changeset
495
a61af66fc99e Initial load
duke
parents:
diff changeset
496 // Given a heap address that was valid before the most recent GC, if
a61af66fc99e Initial load
duke
parents:
diff changeset
497 // the oop that used to contain it is still live, prints the new
a61af66fc99e Initial load
duke
parents:
diff changeset
498 // location of the oop and the address. Useful for tracking down
a61af66fc99e Initial load
duke
parents:
diff changeset
499 // certain kinds of naked oop and oop map bugs.
a61af66fc99e Initial load
duke
parents:
diff changeset
500 extern "C" void pnl(intptr_t old_heap_addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
501 // Print New Location of old heap address
a61af66fc99e Initial load
duke
parents:
diff changeset
502 Command c("pnl");
a61af66fc99e Initial load
duke
parents:
diff changeset
503 #ifndef VALIDATE_MARK_SWEEP
a61af66fc99e Initial load
duke
parents:
diff changeset
504 tty->print_cr("Requires build with VALIDATE_MARK_SWEEP defined (debug build) and RecordMarkSweepCompaction enabled");
a61af66fc99e Initial load
duke
parents:
diff changeset
505 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
506 MarkSweep::print_new_location_of_heap_address((HeapWord*) old_heap_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
507 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
508 }
a61af66fc99e Initial load
duke
parents:
diff changeset
509
a61af66fc99e Initial load
duke
parents:
diff changeset
510
a61af66fc99e Initial load
duke
parents:
diff changeset
511 extern "C" methodOop findm(intptr_t pc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
512 Command c("findm");
a61af66fc99e Initial load
duke
parents:
diff changeset
513 nmethod* nm = CodeCache::find_nmethod((address)pc);
a61af66fc99e Initial load
duke
parents:
diff changeset
514 return (nm == NULL) ? (methodOop)NULL : nm->method();
a61af66fc99e Initial load
duke
parents:
diff changeset
515 }
a61af66fc99e Initial load
duke
parents:
diff changeset
516
a61af66fc99e Initial load
duke
parents:
diff changeset
517
a61af66fc99e Initial load
duke
parents:
diff changeset
518 extern "C" nmethod* findnm(intptr_t addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
519 Command c("findnm");
a61af66fc99e Initial load
duke
parents:
diff changeset
520 return CodeCache::find_nmethod((address)addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
521 }
a61af66fc99e Initial load
duke
parents:
diff changeset
522
a61af66fc99e Initial load
duke
parents:
diff changeset
523 static address same_page(address x, address y) {
a61af66fc99e Initial load
duke
parents:
diff changeset
524 intptr_t page_bits = -os::vm_page_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
525 if ((intptr_t(x) & page_bits) == (intptr_t(y) & page_bits)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
526 return x;
a61af66fc99e Initial load
duke
parents:
diff changeset
527 } else if (x > y) {
a61af66fc99e Initial load
duke
parents:
diff changeset
528 return (address)(intptr_t(y) | ~page_bits) + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
529 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
530 return (address)(intptr_t(y) & page_bits);
a61af66fc99e Initial load
duke
parents:
diff changeset
531 }
a61af66fc99e Initial load
duke
parents:
diff changeset
532 }
a61af66fc99e Initial load
duke
parents:
diff changeset
533
a61af66fc99e Initial load
duke
parents:
diff changeset
534
a61af66fc99e Initial load
duke
parents:
diff changeset
535 static void find(intptr_t x, bool print_pc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
536 address addr = (address)x;
a61af66fc99e Initial load
duke
parents:
diff changeset
537
a61af66fc99e Initial load
duke
parents:
diff changeset
538 CodeBlob* b = CodeCache::find_blob_unsafe(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
539 if (b != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
540 if (b->is_buffer_blob()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
541 // the interpreter is generated into a buffer blob
a61af66fc99e Initial load
duke
parents:
diff changeset
542 InterpreterCodelet* i = Interpreter::codelet_containing(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
543 if (i != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
544 i->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
545 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
546 }
a61af66fc99e Initial load
duke
parents:
diff changeset
547 if (Interpreter::contains(addr)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
548 tty->print_cr(INTPTR_FORMAT " is pointing into interpreter code (not bytecode specific)", addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
549 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
550 }
a61af66fc99e Initial load
duke
parents:
diff changeset
551 //
a61af66fc99e Initial load
duke
parents:
diff changeset
552 if (AdapterHandlerLibrary::contains(b)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
553 AdapterHandlerLibrary::print_handler(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
554 }
a61af66fc99e Initial load
duke
parents:
diff changeset
555 // the stubroutines are generated into a buffer blob
a61af66fc99e Initial load
duke
parents:
diff changeset
556 StubCodeDesc* d = StubCodeDesc::desc_for(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
557 if (d != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
558 d->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
559 if (print_pc) tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
560 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
561 }
a61af66fc99e Initial load
duke
parents:
diff changeset
562 if (StubRoutines::contains(addr)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
563 tty->print_cr(INTPTR_FORMAT " is pointing to an (unnamed) stub routine", addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
564 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
565 }
a61af66fc99e Initial load
duke
parents:
diff changeset
566 // the InlineCacheBuffer is using stubs generated into a buffer blob
a61af66fc99e Initial load
duke
parents:
diff changeset
567 if (InlineCacheBuffer::contains(addr)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
568 tty->print_cr(INTPTR_FORMAT "is pointing into InlineCacheBuffer", addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
569 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
570 }
a61af66fc99e Initial load
duke
parents:
diff changeset
571 VtableStub* v = VtableStubs::stub_containing(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
572 if (v != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
573 v->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
574 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
575 }
a61af66fc99e Initial load
duke
parents:
diff changeset
576 }
a61af66fc99e Initial load
duke
parents:
diff changeset
577 if (print_pc && b->is_nmethod()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
578 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
579 tty->print("%#p: Compiled ", addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
580 ((nmethod*)b)->method()->print_value_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
581 tty->print(" = (CodeBlob*)" INTPTR_FORMAT, b);
a61af66fc99e Initial load
duke
parents:
diff changeset
582 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
583 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
584 }
a61af66fc99e Initial load
duke
parents:
diff changeset
585 if ( b->is_nmethod()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
586 if (b->is_zombie()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
587 tty->print_cr(INTPTR_FORMAT " is zombie nmethod", b);
a61af66fc99e Initial load
duke
parents:
diff changeset
588 } else if (b->is_not_entrant()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
589 tty->print_cr(INTPTR_FORMAT " is non-entrant nmethod", b);
a61af66fc99e Initial load
duke
parents:
diff changeset
590 }
a61af66fc99e Initial load
duke
parents:
diff changeset
591 }
a61af66fc99e Initial load
duke
parents:
diff changeset
592 b->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
593 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
594 }
a61af66fc99e Initial load
duke
parents:
diff changeset
595
a61af66fc99e Initial load
duke
parents:
diff changeset
596 if (Universe::heap()->is_in_reserved(addr)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
597 HeapWord* p = Universe::heap()->block_start(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
598 bool print = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
599 // If we couldn't find it it just may mean that heap wasn't parseable
a61af66fc99e Initial load
duke
parents:
diff changeset
600 // See if we were just given an oop directly
a61af66fc99e Initial load
duke
parents:
diff changeset
601 if (p != NULL && Universe::heap()->block_is_obj(p)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
602 print = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
603 } else if (p == NULL && ((oopDesc*)addr)->is_oop()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
604 p = (HeapWord*) addr;
a61af66fc99e Initial load
duke
parents:
diff changeset
605 print = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
606 }
a61af66fc99e Initial load
duke
parents:
diff changeset
607 if (print) {
a61af66fc99e Initial load
duke
parents:
diff changeset
608 oop(p)->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
609 if (p != (HeapWord*)x && oop(p)->is_constMethod() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
610 constMethodOop(p)->contains(addr)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
611 Thread *thread = Thread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
612 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
613 methodHandle mh (thread, constMethodOop(p)->method());
a61af66fc99e Initial load
duke
parents:
diff changeset
614 if (!mh->is_native()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
615 tty->print_cr("bci_from(%p) = %d; print_codes():",
a61af66fc99e Initial load
duke
parents:
diff changeset
616 addr, mh->bci_from(address(x)));
a61af66fc99e Initial load
duke
parents:
diff changeset
617 mh->print_codes();
a61af66fc99e Initial load
duke
parents:
diff changeset
618 }
a61af66fc99e Initial load
duke
parents:
diff changeset
619 }
a61af66fc99e Initial load
duke
parents:
diff changeset
620 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
621 }
a61af66fc99e Initial load
duke
parents:
diff changeset
622 }
a61af66fc99e Initial load
duke
parents:
diff changeset
623 if (JNIHandles::is_global_handle((jobject) addr)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
624 tty->print_cr(INTPTR_FORMAT "is a global jni handle", addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
625 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
626 }
a61af66fc99e Initial load
duke
parents:
diff changeset
627 if (JNIHandles::is_weak_global_handle((jobject) addr)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
628 tty->print_cr(INTPTR_FORMAT "is a weak global jni handle", addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
629 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
630 }
a61af66fc99e Initial load
duke
parents:
diff changeset
631 if (JNIHandleBlock::any_contains((jobject) addr)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
632 tty->print_cr(INTPTR_FORMAT "is a local jni handle", addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
633 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
634 }
a61af66fc99e Initial load
duke
parents:
diff changeset
635
a61af66fc99e Initial load
duke
parents:
diff changeset
636 for(JavaThread *thread = Threads::first(); thread; thread = thread->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
637 // Check for priviledge stack
a61af66fc99e Initial load
duke
parents:
diff changeset
638 if (thread->privileged_stack_top() != NULL && thread->privileged_stack_top()->contains(addr)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
639 tty->print_cr(INTPTR_FORMAT "is pointing into the priviledge stack for thread: " INTPTR_FORMAT, addr, thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
640 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
641 }
a61af66fc99e Initial load
duke
parents:
diff changeset
642 // If the addr is a java thread print information about that.
a61af66fc99e Initial load
duke
parents:
diff changeset
643 if (addr == (address)thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
644 thread->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
645 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
646 }
a61af66fc99e Initial load
duke
parents:
diff changeset
647 }
a61af66fc99e Initial load
duke
parents:
diff changeset
648
a61af66fc99e Initial load
duke
parents:
diff changeset
649 // Try an OS specific find
a61af66fc99e Initial load
duke
parents:
diff changeset
650 if (os::find(addr)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
651 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
652 }
a61af66fc99e Initial load
duke
parents:
diff changeset
653
a61af66fc99e Initial load
duke
parents:
diff changeset
654 if (print_pc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
655 tty->print_cr(INTPTR_FORMAT ": probably in C++ code; check debugger", addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
656 Disassembler::decode(same_page(addr-40,addr),same_page(addr+40,addr));
a61af66fc99e Initial load
duke
parents:
diff changeset
657 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
658 }
a61af66fc99e Initial load
duke
parents:
diff changeset
659
a61af66fc99e Initial load
duke
parents:
diff changeset
660 tty->print_cr(INTPTR_FORMAT "is pointing to unknown location", addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
661 }
a61af66fc99e Initial load
duke
parents:
diff changeset
662
a61af66fc99e Initial load
duke
parents:
diff changeset
663
a61af66fc99e Initial load
duke
parents:
diff changeset
664 class LookForRefInGenClosure : public OopsInGenClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
665 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
666 oop target;
a61af66fc99e Initial load
duke
parents:
diff changeset
667 void do_oop(oop* o) {
a61af66fc99e Initial load
duke
parents:
diff changeset
668 if (o != NULL && *o == target) {
a61af66fc99e Initial load
duke
parents:
diff changeset
669 tty->print_cr("0x%08x", o);
a61af66fc99e Initial load
duke
parents:
diff changeset
670 }
a61af66fc99e Initial load
duke
parents:
diff changeset
671 }
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
672 void do_oop(narrowOop* o) { ShouldNotReachHere(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
673 };
a61af66fc99e Initial load
duke
parents:
diff changeset
674
a61af66fc99e Initial load
duke
parents:
diff changeset
675
a61af66fc99e Initial load
duke
parents:
diff changeset
676 class LookForRefInObjectClosure : public ObjectClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
677 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
678 LookForRefInGenClosure look_in_object;
a61af66fc99e Initial load
duke
parents:
diff changeset
679 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
680 LookForRefInObjectClosure(oop target) { look_in_object.target = target; }
a61af66fc99e Initial load
duke
parents:
diff changeset
681 void do_object(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
682 obj->oop_iterate(&look_in_object);
a61af66fc99e Initial load
duke
parents:
diff changeset
683 }
a61af66fc99e Initial load
duke
parents:
diff changeset
684 };
a61af66fc99e Initial load
duke
parents:
diff changeset
685
a61af66fc99e Initial load
duke
parents:
diff changeset
686
a61af66fc99e Initial load
duke
parents:
diff changeset
687 static void findref(intptr_t x) {
a61af66fc99e Initial load
duke
parents:
diff changeset
688 GenCollectedHeap *gch = GenCollectedHeap::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
689 LookForRefInGenClosure lookFor;
a61af66fc99e Initial load
duke
parents:
diff changeset
690 lookFor.target = (oop) x;
a61af66fc99e Initial load
duke
parents:
diff changeset
691 LookForRefInObjectClosure look_in_object((oop) x);
a61af66fc99e Initial load
duke
parents:
diff changeset
692
a61af66fc99e Initial load
duke
parents:
diff changeset
693 tty->print_cr("Searching heap:");
a61af66fc99e Initial load
duke
parents:
diff changeset
694 gch->object_iterate(&look_in_object);
a61af66fc99e Initial load
duke
parents:
diff changeset
695
a61af66fc99e Initial load
duke
parents:
diff changeset
696 tty->print_cr("Searching strong roots:");
a61af66fc99e Initial load
duke
parents:
diff changeset
697 Universe::oops_do(&lookFor, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
698 JNIHandles::oops_do(&lookFor); // Global (strong) JNI handles
a61af66fc99e Initial load
duke
parents:
diff changeset
699 Threads::oops_do(&lookFor);
a61af66fc99e Initial load
duke
parents:
diff changeset
700 ObjectSynchronizer::oops_do(&lookFor);
a61af66fc99e Initial load
duke
parents:
diff changeset
701 //FlatProfiler::oops_do(&lookFor);
a61af66fc99e Initial load
duke
parents:
diff changeset
702 SystemDictionary::oops_do(&lookFor);
a61af66fc99e Initial load
duke
parents:
diff changeset
703
a61af66fc99e Initial load
duke
parents:
diff changeset
704 tty->print_cr("Done.");
a61af66fc99e Initial load
duke
parents:
diff changeset
705 }
a61af66fc99e Initial load
duke
parents:
diff changeset
706
a61af66fc99e Initial load
duke
parents:
diff changeset
707 class FindClassObjectClosure: public ObjectClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
708 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
709 const char* _target;
a61af66fc99e Initial load
duke
parents:
diff changeset
710 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
711 FindClassObjectClosure(const char name[]) { _target = name; }
a61af66fc99e Initial load
duke
parents:
diff changeset
712
a61af66fc99e Initial load
duke
parents:
diff changeset
713 virtual void do_object(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
714 if (obj->is_klass()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
715 Klass* k = klassOop(obj)->klass_part();
a61af66fc99e Initial load
duke
parents:
diff changeset
716 if (k->name() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
717 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
718 const char* ext = k->external_name();
a61af66fc99e Initial load
duke
parents:
diff changeset
719 if ( strcmp(_target, ext) == 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
720 tty->print_cr("Found " INTPTR_FORMAT, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
721 obj->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
722 }
a61af66fc99e Initial load
duke
parents:
diff changeset
723 }
a61af66fc99e Initial load
duke
parents:
diff changeset
724 }
a61af66fc99e Initial load
duke
parents:
diff changeset
725 }
a61af66fc99e Initial load
duke
parents:
diff changeset
726 };
a61af66fc99e Initial load
duke
parents:
diff changeset
727
a61af66fc99e Initial load
duke
parents:
diff changeset
728 //
a61af66fc99e Initial load
duke
parents:
diff changeset
729 extern "C" void findclass(const char name[]) {
a61af66fc99e Initial load
duke
parents:
diff changeset
730 Command c("findclass");
a61af66fc99e Initial load
duke
parents:
diff changeset
731 if (name != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
732 tty->print_cr("Finding class %s -> ", name);
a61af66fc99e Initial load
duke
parents:
diff changeset
733 FindClassObjectClosure srch(name);
a61af66fc99e Initial load
duke
parents:
diff changeset
734 Universe::heap()->permanent_object_iterate(&srch);
a61af66fc99e Initial load
duke
parents:
diff changeset
735 }
a61af66fc99e Initial load
duke
parents:
diff changeset
736 }
a61af66fc99e Initial load
duke
parents:
diff changeset
737
a61af66fc99e Initial load
duke
parents:
diff changeset
738 // Another interface that isn't ambiguous in dbx.
a61af66fc99e Initial load
duke
parents:
diff changeset
739 // Can we someday rename the other find to hsfind?
a61af66fc99e Initial load
duke
parents:
diff changeset
740 extern "C" void hsfind(intptr_t x) {
a61af66fc99e Initial load
duke
parents:
diff changeset
741 Command c("hsfind");
a61af66fc99e Initial load
duke
parents:
diff changeset
742 find(x, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
743 }
a61af66fc99e Initial load
duke
parents:
diff changeset
744
a61af66fc99e Initial load
duke
parents:
diff changeset
745
a61af66fc99e Initial load
duke
parents:
diff changeset
746 extern "C" void hsfindref(intptr_t x) {
a61af66fc99e Initial load
duke
parents:
diff changeset
747 Command c("hsfindref");
a61af66fc99e Initial load
duke
parents:
diff changeset
748 findref(x);
a61af66fc99e Initial load
duke
parents:
diff changeset
749 }
a61af66fc99e Initial load
duke
parents:
diff changeset
750
a61af66fc99e Initial load
duke
parents:
diff changeset
751 extern "C" void find(intptr_t x) {
a61af66fc99e Initial load
duke
parents:
diff changeset
752 Command c("find");
a61af66fc99e Initial load
duke
parents:
diff changeset
753 find(x, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
754 }
a61af66fc99e Initial load
duke
parents:
diff changeset
755
a61af66fc99e Initial load
duke
parents:
diff changeset
756
a61af66fc99e Initial load
duke
parents:
diff changeset
757 extern "C" void findpc(intptr_t x) {
a61af66fc99e Initial load
duke
parents:
diff changeset
758 Command c("findpc");
a61af66fc99e Initial load
duke
parents:
diff changeset
759 find(x, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
760 }
a61af66fc99e Initial load
duke
parents:
diff changeset
761
a61af66fc99e Initial load
duke
parents:
diff changeset
762
a61af66fc99e Initial load
duke
parents:
diff changeset
763 // int versions of all methods to avoid having to type type casts in the debugger
a61af66fc99e Initial load
duke
parents:
diff changeset
764
a61af66fc99e Initial load
duke
parents:
diff changeset
765 void pp(intptr_t p) { pp((void*)p); }
a61af66fc99e Initial load
duke
parents:
diff changeset
766 void pp(oop p) { pp((void*)p); }
a61af66fc99e Initial load
duke
parents:
diff changeset
767
a61af66fc99e Initial load
duke
parents:
diff changeset
768 void help() {
a61af66fc99e Initial load
duke
parents:
diff changeset
769 Command c("help");
a61af66fc99e Initial load
duke
parents:
diff changeset
770 tty->print_cr("basic");
a61af66fc99e Initial load
duke
parents:
diff changeset
771 tty->print_cr(" pp(void* p) - try to make sense of p");
a61af66fc99e Initial load
duke
parents:
diff changeset
772 tty->print_cr(" pv(intptr_t p)- ((PrintableResourceObj*) p)->print()");
a61af66fc99e Initial load
duke
parents:
diff changeset
773 tty->print_cr(" ps() - print current thread stack");
a61af66fc99e Initial load
duke
parents:
diff changeset
774 tty->print_cr(" pss() - print all thread stacks");
a61af66fc99e Initial load
duke
parents:
diff changeset
775 tty->print_cr(" pm(int pc) - print methodOop given compiled PC");
a61af66fc99e Initial load
duke
parents:
diff changeset
776 tty->print_cr(" findm(intptr_t pc) - finds methodOop");
a61af66fc99e Initial load
duke
parents:
diff changeset
777 tty->print_cr(" find(intptr_t x) - finds & prints nmethod/stub/bytecode/oop based on pointer into it");
a61af66fc99e Initial load
duke
parents:
diff changeset
778
a61af66fc99e Initial load
duke
parents:
diff changeset
779 tty->print_cr("misc.");
a61af66fc99e Initial load
duke
parents:
diff changeset
780 tty->print_cr(" flush() - flushes the log file");
a61af66fc99e Initial load
duke
parents:
diff changeset
781 tty->print_cr(" events() - dump last 50 events");
a61af66fc99e Initial load
duke
parents:
diff changeset
782
a61af66fc99e Initial load
duke
parents:
diff changeset
783
a61af66fc99e Initial load
duke
parents:
diff changeset
784 tty->print_cr("compiler debugging");
a61af66fc99e Initial load
duke
parents:
diff changeset
785 tty->print_cr(" debug() - to set things up for compiler debugging");
a61af66fc99e Initial load
duke
parents:
diff changeset
786 tty->print_cr(" ndebug() - undo debug");
a61af66fc99e Initial load
duke
parents:
diff changeset
787 }
a61af66fc99e Initial load
duke
parents:
diff changeset
788
a61af66fc99e Initial load
duke
parents:
diff changeset
789 #if 0
a61af66fc99e Initial load
duke
parents:
diff changeset
790
a61af66fc99e Initial load
duke
parents:
diff changeset
791 // BobV's command parser for debugging on windows when nothing else works.
a61af66fc99e Initial load
duke
parents:
diff changeset
792
a61af66fc99e Initial load
duke
parents:
diff changeset
793 enum CommandID {
a61af66fc99e Initial load
duke
parents:
diff changeset
794 CMDID_HELP,
a61af66fc99e Initial load
duke
parents:
diff changeset
795 CMDID_QUIT,
a61af66fc99e Initial load
duke
parents:
diff changeset
796 CMDID_HSFIND,
a61af66fc99e Initial load
duke
parents:
diff changeset
797 CMDID_PSS,
a61af66fc99e Initial load
duke
parents:
diff changeset
798 CMDID_PS,
a61af66fc99e Initial load
duke
parents:
diff changeset
799 CMDID_PSF,
a61af66fc99e Initial load
duke
parents:
diff changeset
800 CMDID_FINDM,
a61af66fc99e Initial load
duke
parents:
diff changeset
801 CMDID_FINDNM,
a61af66fc99e Initial load
duke
parents:
diff changeset
802 CMDID_PP,
a61af66fc99e Initial load
duke
parents:
diff changeset
803 CMDID_BPT,
a61af66fc99e Initial load
duke
parents:
diff changeset
804 CMDID_EXIT,
a61af66fc99e Initial load
duke
parents:
diff changeset
805 CMDID_VERIFY,
a61af66fc99e Initial load
duke
parents:
diff changeset
806 CMDID_THREADS,
a61af66fc99e Initial load
duke
parents:
diff changeset
807 CMDID_ILLEGAL = 99
a61af66fc99e Initial load
duke
parents:
diff changeset
808 };
a61af66fc99e Initial load
duke
parents:
diff changeset
809
a61af66fc99e Initial load
duke
parents:
diff changeset
810 struct CommandParser {
a61af66fc99e Initial load
duke
parents:
diff changeset
811 char *name;
a61af66fc99e Initial load
duke
parents:
diff changeset
812 CommandID code;
a61af66fc99e Initial load
duke
parents:
diff changeset
813 char *description;
a61af66fc99e Initial load
duke
parents:
diff changeset
814 };
a61af66fc99e Initial load
duke
parents:
diff changeset
815
a61af66fc99e Initial load
duke
parents:
diff changeset
816 struct CommandParser CommandList[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
817 (char *)"help", CMDID_HELP, " Dump this list",
a61af66fc99e Initial load
duke
parents:
diff changeset
818 (char *)"quit", CMDID_QUIT, " Return from this routine",
a61af66fc99e Initial load
duke
parents:
diff changeset
819 (char *)"hsfind", CMDID_HSFIND, "Perform an hsfind on an address",
a61af66fc99e Initial load
duke
parents:
diff changeset
820 (char *)"ps", CMDID_PS, " Print Current Thread Stack Trace",
a61af66fc99e Initial load
duke
parents:
diff changeset
821 (char *)"pss", CMDID_PSS, " Print All Thread Stack Trace",
a61af66fc99e Initial load
duke
parents:
diff changeset
822 (char *)"psf", CMDID_PSF, " Print All Stack Frames",
a61af66fc99e Initial load
duke
parents:
diff changeset
823 (char *)"findm", CMDID_FINDM, " Find a methodOop from a PC",
a61af66fc99e Initial load
duke
parents:
diff changeset
824 (char *)"findnm", CMDID_FINDNM, "Find an nmethod from a PC",
a61af66fc99e Initial load
duke
parents:
diff changeset
825 (char *)"pp", CMDID_PP, " Find out something about a pointer",
a61af66fc99e Initial load
duke
parents:
diff changeset
826 (char *)"break", CMDID_BPT, " Execute a breakpoint",
a61af66fc99e Initial load
duke
parents:
diff changeset
827 (char *)"exitvm", CMDID_EXIT, "Exit the VM",
a61af66fc99e Initial load
duke
parents:
diff changeset
828 (char *)"verify", CMDID_VERIFY, "Perform a Heap Verify",
a61af66fc99e Initial load
duke
parents:
diff changeset
829 (char *)"thread", CMDID_THREADS, "Dump Info on all Threads",
a61af66fc99e Initial load
duke
parents:
diff changeset
830 (char *)0, CMDID_ILLEGAL
a61af66fc99e Initial load
duke
parents:
diff changeset
831 };
a61af66fc99e Initial load
duke
parents:
diff changeset
832
a61af66fc99e Initial load
duke
parents:
diff changeset
833
a61af66fc99e Initial load
duke
parents:
diff changeset
834 // get_debug_command()
a61af66fc99e Initial load
duke
parents:
diff changeset
835 //
a61af66fc99e Initial load
duke
parents:
diff changeset
836 // Read a command from standard input.
a61af66fc99e Initial load
duke
parents:
diff changeset
837 // This is useful when you have a debugger
a61af66fc99e Initial load
duke
parents:
diff changeset
838 // which doesn't support calling into functions.
a61af66fc99e Initial load
duke
parents:
diff changeset
839 //
a61af66fc99e Initial load
duke
parents:
diff changeset
840 void get_debug_command()
a61af66fc99e Initial load
duke
parents:
diff changeset
841 {
a61af66fc99e Initial load
duke
parents:
diff changeset
842 ssize_t count;
a61af66fc99e Initial load
duke
parents:
diff changeset
843 int i,j;
a61af66fc99e Initial load
duke
parents:
diff changeset
844 bool gotcommand;
a61af66fc99e Initial load
duke
parents:
diff changeset
845 intptr_t addr;
a61af66fc99e Initial load
duke
parents:
diff changeset
846 char buffer[256];
a61af66fc99e Initial load
duke
parents:
diff changeset
847 nmethod *nm;
a61af66fc99e Initial load
duke
parents:
diff changeset
848 methodOop m;
a61af66fc99e Initial load
duke
parents:
diff changeset
849
a61af66fc99e Initial load
duke
parents:
diff changeset
850 tty->print_cr("You have entered the diagnostic command interpreter");
a61af66fc99e Initial load
duke
parents:
diff changeset
851 tty->print("The supported commands are:\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
852 for ( i=0; ; i++ ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
853 if ( CommandList[i].code == CMDID_ILLEGAL )
a61af66fc99e Initial load
duke
parents:
diff changeset
854 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
855 tty->print_cr(" %s \n", CommandList[i].name );
a61af66fc99e Initial load
duke
parents:
diff changeset
856 }
a61af66fc99e Initial load
duke
parents:
diff changeset
857
a61af66fc99e Initial load
duke
parents:
diff changeset
858 while ( 1 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
859 gotcommand = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
860 tty->print("Please enter a command: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
861 count = scanf("%s", buffer) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
862 if ( count >=0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
863 for ( i=0; ; i++ ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
864 if ( CommandList[i].code == CMDID_ILLEGAL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
865 if (!gotcommand) tty->print("Invalid command, please try again\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
866 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
867 }
a61af66fc99e Initial load
duke
parents:
diff changeset
868 if ( strcmp(buffer, CommandList[i].name) == 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
869 gotcommand = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
870 switch ( CommandList[i].code ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
871 case CMDID_PS:
a61af66fc99e Initial load
duke
parents:
diff changeset
872 ps();
a61af66fc99e Initial load
duke
parents:
diff changeset
873 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
874 case CMDID_PSS:
a61af66fc99e Initial load
duke
parents:
diff changeset
875 pss();
a61af66fc99e Initial load
duke
parents:
diff changeset
876 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
877 case CMDID_PSF:
a61af66fc99e Initial load
duke
parents:
diff changeset
878 psf();
a61af66fc99e Initial load
duke
parents:
diff changeset
879 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
880 case CMDID_FINDM:
a61af66fc99e Initial load
duke
parents:
diff changeset
881 tty->print("Please enter the hex addr to pass to findm: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
882 scanf("%I64X", &addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
883 m = (methodOop)findm(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
884 tty->print("findm(0x%I64X) returned 0x%I64X\n", addr, m);
a61af66fc99e Initial load
duke
parents:
diff changeset
885 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
886 case CMDID_FINDNM:
a61af66fc99e Initial load
duke
parents:
diff changeset
887 tty->print("Please enter the hex addr to pass to findnm: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
888 scanf("%I64X", &addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
889 nm = (nmethod*)findnm(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
890 tty->print("findnm(0x%I64X) returned 0x%I64X\n", addr, nm);
a61af66fc99e Initial load
duke
parents:
diff changeset
891 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
892 case CMDID_PP:
a61af66fc99e Initial load
duke
parents:
diff changeset
893 tty->print("Please enter the hex addr to pass to pp: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
894 scanf("%I64X", &addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
895 pp((void*)addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
896 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
897 case CMDID_EXIT:
a61af66fc99e Initial load
duke
parents:
diff changeset
898 exit(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
899 case CMDID_HELP:
a61af66fc99e Initial load
duke
parents:
diff changeset
900 tty->print("Here are the supported commands: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
901 for ( j=0; ; j++ ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
902 if ( CommandList[j].code == CMDID_ILLEGAL )
a61af66fc99e Initial load
duke
parents:
diff changeset
903 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
904 tty->print_cr(" %s -- %s\n", CommandList[j].name,
a61af66fc99e Initial load
duke
parents:
diff changeset
905 CommandList[j].description );
a61af66fc99e Initial load
duke
parents:
diff changeset
906 }
a61af66fc99e Initial load
duke
parents:
diff changeset
907 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
908 case CMDID_QUIT:
a61af66fc99e Initial load
duke
parents:
diff changeset
909 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
910 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
911 case CMDID_BPT:
a61af66fc99e Initial load
duke
parents:
diff changeset
912 BREAKPOINT;
a61af66fc99e Initial load
duke
parents:
diff changeset
913 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
914 case CMDID_VERIFY:
a61af66fc99e Initial load
duke
parents:
diff changeset
915 verify();;
a61af66fc99e Initial load
duke
parents:
diff changeset
916 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
917 case CMDID_THREADS:
a61af66fc99e Initial load
duke
parents:
diff changeset
918 threads();;
a61af66fc99e Initial load
duke
parents:
diff changeset
919 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
920 case CMDID_HSFIND:
a61af66fc99e Initial load
duke
parents:
diff changeset
921 tty->print("Please enter the hex addr to pass to hsfind: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
922 scanf("%I64X", &addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
923 tty->print("Calling hsfind(0x%I64X)\n", addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
924 hsfind(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
925 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
926 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
927 case CMDID_ILLEGAL:
a61af66fc99e Initial load
duke
parents:
diff changeset
928 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
929 }
a61af66fc99e Initial load
duke
parents:
diff changeset
930 }
a61af66fc99e Initial load
duke
parents:
diff changeset
931 }
a61af66fc99e Initial load
duke
parents:
diff changeset
932 }
a61af66fc99e Initial load
duke
parents:
diff changeset
933 }
a61af66fc99e Initial load
duke
parents:
diff changeset
934 }
a61af66fc99e Initial load
duke
parents:
diff changeset
935 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
936
a61af66fc99e Initial load
duke
parents:
diff changeset
937 #endif // PRODUCT