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