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