src/share/vm/utilities/debug.cpp

Mon, 02 May 2011 18:53:37 -0700

author
never
date
Mon, 02 May 2011 18:53:37 -0700
changeset 2868
2e038ad0c1d0
parent 2708
1d1603768966
child 3156
f08d439fab8c
permissions
-rw-r--r--

7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
Reviewed-by: kvn, twisti

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

mercurial