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