annotate src/share/vm/utilities/debug.cpp @ 24234:ea6f94ab283b default tip

Added tag jvmci-0.36 for changeset 8128b98d4736
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Mon, 18 Sep 2017 18:49:45 +0200
parents b5f3a471e646
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
23487
8641949eb21f 8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents: 22803
diff changeset
2 * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1490
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1490
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1490
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
26 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
27 #include "code/codeCache.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
28 #include "code/icBuffer.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
29 #include "code/nmethod.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
30 #include "code/vtableStubs.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
31 #include "compiler/compileBroker.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
32 #include "compiler/disassembler.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
33 #include "gc_implementation/shared/markSweep.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
34 #include "gc_interface/collectedHeap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
35 #include "interpreter/bytecodeHistogram.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
36 #include "interpreter/interpreter.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
37 #include "memory/resourceArea.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
38 #include "memory/universe.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
39 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
40 #include "prims/privilegedStack.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
41 #include "runtime/arguments.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
42 #include "runtime/frame.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
43 #include "runtime/java.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
44 #include "runtime/sharedRuntime.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
45 #include "runtime/stubCodeGenerator.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
46 #include "runtime/stubRoutines.hpp"
7180
f34d701e952e 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 6865
diff changeset
47 #include "runtime/thread.inline.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
48 #include "runtime/vframe.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
49 #include "services/heapDumper.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
50 #include "utilities/defaultStream.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
51 #include "utilities/events.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
52 #include "utilities/top.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
53 #include "utilities/vmError.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
54 #ifdef TARGET_OS_FAMILY_linux
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
55 # include "os_linux.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
56 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
57 #ifdef TARGET_OS_FAMILY_solaris
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
58 # include "os_solaris.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
59 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
60 #ifdef TARGET_OS_FAMILY_windows
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
61 # include "os_windows.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1870
diff changeset
62 #endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3336
diff changeset
63 #ifdef TARGET_OS_FAMILY_bsd
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3336
diff changeset
64 # include "os_bsd.inline.hpp"
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3336
diff changeset
65 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 #ifndef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
68 # ifdef _DEBUG
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // NOTE: don't turn the lines below into a comment -- if you're getting
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // a compile error here, change the settings to define ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
71 ASSERT should be defined when _DEBUG is defined. It is not intended to be used for debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
72 functions that do not slow down the system too much and thus can be left in optimized code.
a61af66fc99e Initial load
duke
parents:
diff changeset
73 On the other hand, the code should not be included in a production version.
a61af66fc99e Initial load
duke
parents:
diff changeset
74 # endif // _DEBUG
a61af66fc99e Initial load
duke
parents:
diff changeset
75 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 #ifdef _DEBUG
a61af66fc99e Initial load
duke
parents:
diff changeset
79 # ifndef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
80 configuration error: ASSERT must be defined in debug version
a61af66fc99e Initial load
duke
parents:
diff changeset
81 # endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
82 #endif // _DEBUG
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 #ifdef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
86 # if -defined _DEBUG || -defined ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
87 configuration error: ASSERT et al. must not be defined in PRODUCT version
a61af66fc99e Initial load
duke
parents:
diff changeset
88 # endif
a61af66fc99e Initial load
duke
parents:
diff changeset
89 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
90
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 11092
diff changeset
91 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 11092
diff changeset
92
6268
6c5b7a6becc8 7187454: stack overflow in C2 compiler thread on Solaris x86
kvn
parents: 4944
diff changeset
93 FormatBufferResource::FormatBufferResource(const char * format, ...)
6c5b7a6becc8 7187454: stack overflow in C2 compiler thread on Solaris x86
kvn
parents: 4944
diff changeset
94 : FormatBufferBase((char*)resource_allocate_bytes(RES_BUFSZ)) {
6c5b7a6becc8 7187454: stack overflow in C2 compiler thread on Solaris x86
kvn
parents: 4944
diff changeset
95 va_list argp;
6c5b7a6becc8 7187454: stack overflow in C2 compiler thread on Solaris x86
kvn
parents: 4944
diff changeset
96 va_start(argp, format);
6c5b7a6becc8 7187454: stack overflow in C2 compiler thread on Solaris x86
kvn
parents: 4944
diff changeset
97 jio_vsnprintf(_buf, RES_BUFSZ, format, argp);
6c5b7a6becc8 7187454: stack overflow in C2 compiler thread on Solaris x86
kvn
parents: 4944
diff changeset
98 va_end(argp);
6c5b7a6becc8 7187454: stack overflow in C2 compiler thread on Solaris x86
kvn
parents: 4944
diff changeset
99 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
100
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 11092
diff changeset
101 ATTRIBUTE_PRINTF(1, 2)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
102 void warning(const char* format, ...) {
1870
c77b5c592eab 6392697: Additional flag needed to supress Hotspot warning messages
kamg
parents: 1775
diff changeset
103 if (PrintWarnings) {
6759
145ffab733e7 7199082: write warning messages to stderr
jcoomes
parents: 6725
diff changeset
104 FILE* const err = defaultStream::error_stream();
145ffab733e7 7199082: write warning messages to stderr
jcoomes
parents: 6725
diff changeset
105 jio_fprintf(err, "%s warning: ", VM_Version::vm_name());
1870
c77b5c592eab 6392697: Additional flag needed to supress Hotspot warning messages
kamg
parents: 1775
diff changeset
106 va_list ap;
c77b5c592eab 6392697: Additional flag needed to supress Hotspot warning messages
kamg
parents: 1775
diff changeset
107 va_start(ap, format);
6759
145ffab733e7 7199082: write warning messages to stderr
jcoomes
parents: 6725
diff changeset
108 vfprintf(err, format, ap);
1870
c77b5c592eab 6392697: Additional flag needed to supress Hotspot warning messages
kamg
parents: 1775
diff changeset
109 va_end(ap);
6759
145ffab733e7 7199082: write warning messages to stderr
jcoomes
parents: 6725
diff changeset
110 fputc('\n', err);
1870
c77b5c592eab 6392697: Additional flag needed to supress Hotspot warning messages
kamg
parents: 1775
diff changeset
111 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
112 if (BreakAtWarning) BREAKPOINT;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 #define is_token_break(ch) (isspace(ch) || (ch) == ',')
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 static const char* last_file_name = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
120 static int last_line_no = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // assert/guarantee/... may happen very early during VM initialization.
a61af66fc99e Initial load
duke
parents:
diff changeset
123 // Don't rely on anything that is initialized by Threads::create_vm(). For
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // example, don't use tty.
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
125 bool error_is_suppressed(const char* file_name, int line_no) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // The following 1-element cache requires that passed-in
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // file names are always only constant literals.
a61af66fc99e Initial load
duke
parents:
diff changeset
128 if (file_name == last_file_name && line_no == last_line_no) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 int file_name_len = (int)strlen(file_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
131 char separator = os::file_separator()[0];
a61af66fc99e Initial load
duke
parents:
diff changeset
132 const char* base_name = strrchr(file_name, separator);
a61af66fc99e Initial load
duke
parents:
diff changeset
133 if (base_name == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
134 base_name = file_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // scan the SuppressErrorAt option
a61af66fc99e Initial load
duke
parents:
diff changeset
137 const char* cp = SuppressErrorAt;
a61af66fc99e Initial load
duke
parents:
diff changeset
138 for (;;) {
a61af66fc99e Initial load
duke
parents:
diff changeset
139 const char* sfile;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 int sfile_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
141 int sline;
a61af66fc99e Initial load
duke
parents:
diff changeset
142 bool noisy;
a61af66fc99e Initial load
duke
parents:
diff changeset
143 while ((*cp) != '\0' && is_token_break(*cp)) cp++;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 if ((*cp) == '\0') break;
a61af66fc99e Initial load
duke
parents:
diff changeset
145 sfile = cp;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 while ((*cp) != '\0' && !is_token_break(*cp) && (*cp) != ':') cp++;
a61af66fc99e Initial load
duke
parents:
diff changeset
147 sfile_len = cp - sfile;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 if ((*cp) == ':') cp++;
a61af66fc99e Initial load
duke
parents:
diff changeset
149 sline = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
150 while ((*cp) != '\0' && isdigit(*cp)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 sline *= 10;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 sline += (*cp) - '0';
a61af66fc99e Initial load
duke
parents:
diff changeset
153 cp++;
a61af66fc99e Initial load
duke
parents:
diff changeset
154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // "file:line!" means the assert suppression is not silent
a61af66fc99e Initial load
duke
parents:
diff changeset
156 noisy = ((*cp) == '!');
a61af66fc99e Initial load
duke
parents:
diff changeset
157 while ((*cp) != '\0' && !is_token_break(*cp)) cp++;
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // match the line
a61af66fc99e Initial load
duke
parents:
diff changeset
159 if (sline != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
160 if (sline != line_no) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
161 }
a61af66fc99e Initial load
duke
parents:
diff changeset
162 // match the file
a61af66fc99e Initial load
duke
parents:
diff changeset
163 if (sfile_len > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
164 const char* look = file_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
165 const char* look_max = file_name + file_name_len - sfile_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
166 const char* foundp;
a61af66fc99e Initial load
duke
parents:
diff changeset
167 bool match = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
168 while (!match
a61af66fc99e Initial load
duke
parents:
diff changeset
169 && (foundp = strchr(look, sfile[0])) != NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
170 && foundp <= look_max) {
a61af66fc99e Initial load
duke
parents:
diff changeset
171 match = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 for (int i = 1; i < sfile_len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
173 if (sfile[i] != foundp[i]) {
a61af66fc99e Initial load
duke
parents:
diff changeset
174 match = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
175 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177 }
a61af66fc99e Initial load
duke
parents:
diff changeset
178 look = foundp + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
180 if (!match) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
181 }
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // got a match!
a61af66fc99e Initial load
duke
parents:
diff changeset
183 if (noisy) {
a61af66fc99e Initial load
duke
parents:
diff changeset
184 fdStream out(defaultStream::output_fd());
a61af66fc99e Initial load
duke
parents:
diff changeset
185 out.print_raw("[error suppressed at ");
a61af66fc99e Initial load
duke
parents:
diff changeset
186 out.print_raw(base_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
187 char buf[16];
a61af66fc99e Initial load
duke
parents:
diff changeset
188 jio_snprintf(buf, sizeof(buf), ":%d]", line_no);
a61af66fc99e Initial load
duke
parents:
diff changeset
189 out.print_raw_cr(buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
190 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
191 // update 1-element cache for fast silent matches
a61af66fc99e Initial load
duke
parents:
diff changeset
192 last_file_name = file_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
193 last_line_no = line_no;
a61af66fc99e Initial load
duke
parents:
diff changeset
194 }
a61af66fc99e Initial load
duke
parents:
diff changeset
195 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 if (!is_error_reported()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
199 // print a friendly hint:
a61af66fc99e Initial load
duke
parents:
diff changeset
200 fdStream out(defaultStream::output_fd());
a61af66fc99e Initial load
duke
parents:
diff changeset
201 out.print_raw_cr("# To suppress the following error report, specify this argument");
a61af66fc99e Initial load
duke
parents:
diff changeset
202 out.print_raw ("# after -XX: or in .hotspotrc: SuppressErrorAt=");
a61af66fc99e Initial load
duke
parents:
diff changeset
203 out.print_raw (base_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
204 char buf[16];
a61af66fc99e Initial load
duke
parents:
diff changeset
205 jio_snprintf(buf, sizeof(buf), ":%d", line_no);
a61af66fc99e Initial load
duke
parents:
diff changeset
206 out.print_raw_cr(buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
207 }
a61af66fc99e Initial load
duke
parents:
diff changeset
208 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 #undef is_token_break
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215 // Place-holder for non-existent suppression check:
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
216 #define error_is_suppressed(file_name, line_no) (false)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
217
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
218 #endif // !PRODUCT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
219
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
220 void report_vm_error(const char* file, int line, const char* error_msg,
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
221 const char* detail_msg)
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
222 {
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
223 if (Debugging || error_is_suppressed(file, line)) return;
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
224 Thread* const thread = ThreadLocalStorage::get_thread_slow();
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
225 VMError err(thread, file, line, error_msg, detail_msg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
226 err.report_and_die();
a61af66fc99e Initial load
duke
parents:
diff changeset
227 }
a61af66fc99e Initial load
duke
parents:
diff changeset
228
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
229 void report_fatal(const char* file, int line, const char* message)
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
230 {
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
231 report_vm_error(file, line, "fatal error", message);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
232 }
a61af66fc99e Initial load
duke
parents:
diff changeset
233
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
234 void report_vm_out_of_memory(const char* file, int line, size_t size,
10161
746b070f5022 8011661: Insufficient memory message says "malloc" when sometimes it should say "mmap"
ccheung
parents: 9060
diff changeset
235 VMErrorType vm_err_type, const char* message) {
2095
36c186bcc085 6302804: Hotspot VM dies ungraceful death when C heap is exhausted in various places.
coleenp
parents: 2008
diff changeset
236 if (Debugging) return;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
237
8101
b6d5b3e50379 6799919: Recursive calls to report_vm_out_of_memory are handled incorrectly
dcubed
parents: 7448
diff changeset
238 Thread* thread = ThreadLocalStorage::get_thread_slow();
10161
746b070f5022 8011661: Insufficient memory message says "malloc" when sometimes it should say "mmap"
ccheung
parents: 9060
diff changeset
239 VMError(thread, file, line, size, vm_err_type, message).report_and_die();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
240
8101
b6d5b3e50379 6799919: Recursive calls to report_vm_out_of_memory are handled incorrectly
dcubed
parents: 7448
diff changeset
241 // The UseOSErrorReporting option in report_and_die() may allow a return
b6d5b3e50379 6799919: Recursive calls to report_vm_out_of_memory are handled incorrectly
dcubed
parents: 7448
diff changeset
242 // to here. If so then we'll have to figure out how to handle it.
b6d5b3e50379 6799919: Recursive calls to report_vm_out_of_memory are handled incorrectly
dcubed
parents: 7448
diff changeset
243 guarantee(false, "report_and_die() should not return here");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
244 }
a61af66fc99e Initial load
duke
parents:
diff changeset
245
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
246 void report_should_not_call(const char* file, int line) {
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
247 report_vm_error(file, line, "ShouldNotCall()");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
248 }
a61af66fc99e Initial load
duke
parents:
diff changeset
249
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
250 void report_should_not_reach_here(const char* file, int line) {
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
251 report_vm_error(file, line, "ShouldNotReachHere()");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
252 }
a61af66fc99e Initial load
duke
parents:
diff changeset
253
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
254 void report_unimplemented(const char* file, int line) {
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
255 report_vm_error(file, line, "Unimplemented()");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
257
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
258 void report_untested(const char* file, int line, const char* message) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
259 #ifndef PRODUCT
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
260 warning("Untested: %s in %s: %d\n", message, file, line);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
261 #endif // !PRODUCT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
262 }
a61af66fc99e Initial load
duke
parents:
diff changeset
263
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2095
diff changeset
264 void report_out_of_shared_space(SharedSpaceType shared_space) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2095
diff changeset
265 static const char* name[] = {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6268
diff changeset
266 "native memory for metadata",
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2095
diff changeset
267 "shared read only space",
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2095
diff changeset
268 "shared read write space",
20586
03e6d34be1f5 8038268: VM Crashes in MetaspaceShared::generate_vtable_methods while creating CDS archive with limiting SharedMiscCodeSize
ccheung
parents: 17937
diff changeset
269 "shared miscellaneous data space",
03e6d34be1f5 8038268: VM Crashes in MetaspaceShared::generate_vtable_methods while creating CDS archive with limiting SharedMiscCodeSize
ccheung
parents: 17937
diff changeset
270 "shared miscellaneous code space"
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2095
diff changeset
271 };
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2095
diff changeset
272 static const char* flag[] = {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6268
diff changeset
273 "Metaspace",
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2095
diff changeset
274 "SharedReadOnlySize",
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2095
diff changeset
275 "SharedReadWriteSize",
20586
03e6d34be1f5 8038268: VM Crashes in MetaspaceShared::generate_vtable_methods while creating CDS archive with limiting SharedMiscCodeSize
ccheung
parents: 17937
diff changeset
276 "SharedMiscDataSize",
03e6d34be1f5 8038268: VM Crashes in MetaspaceShared::generate_vtable_methods while creating CDS archive with limiting SharedMiscCodeSize
ccheung
parents: 17937
diff changeset
277 "SharedMiscCodeSize"
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2095
diff changeset
278 };
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2095
diff changeset
279
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2095
diff changeset
280 warning("\nThe %s is not large enough\n"
20586
03e6d34be1f5 8038268: VM Crashes in MetaspaceShared::generate_vtable_methods while creating CDS archive with limiting SharedMiscCodeSize
ccheung
parents: 17937
diff changeset
281 "to preload requested classes. Use -XX:%s=<size>\n"
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2095
diff changeset
282 "to increase the initial size of %s.\n",
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2095
diff changeset
283 name[shared_space], flag[shared_space], name[shared_space]);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2095
diff changeset
284 exit(2);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2095
diff changeset
285 }
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2095
diff changeset
286
0
a61af66fc99e Initial load
duke
parents:
diff changeset
287 void report_java_out_of_memory(const char* message) {
a61af66fc99e Initial load
duke
parents:
diff changeset
288 static jint out_of_memory_reported = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
289
a61af66fc99e Initial load
duke
parents:
diff changeset
290 // A number of threads may attempt to report OutOfMemoryError at around the
a61af66fc99e Initial load
duke
parents:
diff changeset
291 // same time. To avoid dumping the heap or executing the data collection
a61af66fc99e Initial load
duke
parents:
diff changeset
292 // commands multiple times we just do it once when the first threads reports
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // the error.
a61af66fc99e Initial load
duke
parents:
diff changeset
294 if (Atomic::cmpxchg(1, &out_of_memory_reported, 0) == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
295 // create heap dump before OnOutOfMemoryError commands are executed
a61af66fc99e Initial load
duke
parents:
diff changeset
296 if (HeapDumpOnOutOfMemoryError) {
a61af66fc99e Initial load
duke
parents:
diff changeset
297 tty->print_cr("java.lang.OutOfMemoryError: %s", message);
1775
30f67acf635d 6765718: Indicate which thread throwing OOME when generating the heap dump at OOME
thurka
parents: 1681
diff changeset
298 HeapDumper::dump_heap_from_oome();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
299 }
a61af66fc99e Initial load
duke
parents:
diff changeset
300
a61af66fc99e Initial load
duke
parents:
diff changeset
301 if (OnOutOfMemoryError && OnOutOfMemoryError[0]) {
a61af66fc99e Initial load
duke
parents:
diff changeset
302 VMError err(message);
a61af66fc99e Initial load
duke
parents:
diff changeset
303 err.report_java_out_of_memory();
a61af66fc99e Initial load
duke
parents:
diff changeset
304 }
23487
8641949eb21f 8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents: 22803
diff changeset
305
8641949eb21f 8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents: 22803
diff changeset
306 if (CrashOnOutOfMemoryError) {
8641949eb21f 8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents: 22803
diff changeset
307 tty->print_cr("Aborting due to java.lang.OutOfMemoryError: %s", message);
8641949eb21f 8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents: 22803
diff changeset
308 fatal(err_msg("OutOfMemory encountered: %s", message));
8641949eb21f 8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents: 22803
diff changeset
309 }
8641949eb21f 8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents: 22803
diff changeset
310
8641949eb21f 8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents: 22803
diff changeset
311 if (ExitOnOutOfMemoryError) {
8641949eb21f 8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents: 22803
diff changeset
312 tty->print_cr("Terminating due to java.lang.OutOfMemoryError: %s", message);
8641949eb21f 8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents: 22803
diff changeset
313 exit(3);
8641949eb21f 8138745: Implement ExitOnOutOfMemory and CrashOnOutOfMemory in HotSpot
kevinw
parents: 22803
diff changeset
314 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
315 }
a61af66fc99e Initial load
duke
parents:
diff changeset
316 }
a61af66fc99e Initial load
duke
parents:
diff changeset
317
a61af66fc99e Initial load
duke
parents:
diff changeset
318 static bool error_reported = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
319
a61af66fc99e Initial load
duke
parents:
diff changeset
320 // call this when the VM is dying--it might loosen some asserts
a61af66fc99e Initial load
duke
parents:
diff changeset
321 void set_error_reported() {
a61af66fc99e Initial load
duke
parents:
diff changeset
322 error_reported = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
323 }
a61af66fc99e Initial load
duke
parents:
diff changeset
324
a61af66fc99e Initial load
duke
parents:
diff changeset
325 bool is_error_reported() {
a61af66fc99e Initial load
duke
parents:
diff changeset
326 return error_reported;
a61af66fc99e Initial load
duke
parents:
diff changeset
327 }
a61af66fc99e Initial load
duke
parents:
diff changeset
328
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
329 #ifndef PRODUCT
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
330 #include <signal.h>
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
331
11092
59b052799158 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 10308
diff changeset
332 void test_error_handler() {
59b052799158 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 10308
diff changeset
333 uintx test_num = ErrorHandlerTest;
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
334 if (test_num == 0) return;
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
335
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
336 // If asserts are disabled, use the corresponding guarantee instead.
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
337 size_t n = test_num;
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
338 NOT_DEBUG(if (n <= 2) n += 2);
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
339
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
340 const char* const str = "hello";
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
341 const size_t num = (size_t)os::vm_page_size();
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
342
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
343 const char* const eol = os::line_separator();
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
344 const char* const msg = "this message should be truncated during formatting";
11092
59b052799158 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 10308
diff changeset
345 char * const dataPtr = NULL; // bad data pointer
59b052799158 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 10308
diff changeset
346 const void (*funcPtr)(void) = (const void(*)()) 0xF; // bad function pointer
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
347
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
348 // Keep this in sync with test/runtime/6888954/vmerrors.sh.
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
349 switch (n) {
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
350 case 1: assert(str == NULL, "expected null");
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
351 case 2: assert(num == 1023 && *str == 'X',
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
352 err_msg("num=" SIZE_FORMAT " str=\"%s\"", num, str));
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
353 case 3: guarantee(str == NULL, "expected null");
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
354 case 4: guarantee(num == 1023 && *str == 'X',
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
355 err_msg("num=" SIZE_FORMAT " str=\"%s\"", num, str));
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
356 case 5: fatal("expected null");
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
357 case 6: fatal(err_msg("num=" SIZE_FORMAT " str=\"%s\"", num, str));
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
358 case 7: fatal(err_msg("%s%s# %s%s# %s%s# %s%s# %s%s# "
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
359 "%s%s# %s%s# %s%s# %s%s# %s%s# "
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
360 "%s%s# %s%s# %s%s# %s%s# %s",
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
361 msg, eol, msg, eol, msg, eol, msg, eol, msg, eol,
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
362 msg, eol, msg, eol, msg, eol, msg, eol, msg, eol,
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
363 msg, eol, msg, eol, msg, eol, msg, eol, msg));
10161
746b070f5022 8011661: Insufficient memory message says "malloc" when sometimes it should say "mmap"
ccheung
parents: 9060
diff changeset
364 case 8: vm_exit_out_of_memory(num, OOM_MALLOC_ERROR, "ChunkPool::allocate");
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
365 case 9: ShouldNotCallThis();
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
366 case 10: ShouldNotReachHere();
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
367 case 11: Unimplemented();
11092
59b052799158 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 10308
diff changeset
368 // There's no guarantee the bad data pointer will crash us
59b052799158 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 10308
diff changeset
369 // so "break" out to the ShouldNotReachHere().
59b052799158 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 10308
diff changeset
370 case 12: *dataPtr = '\0'; break;
59b052799158 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 10308
diff changeset
371 // There's no guarantee the bad function pointer will crash us
59b052799158 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 10308
diff changeset
372 // so "break" out to the ShouldNotReachHere().
59b052799158 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 10308
diff changeset
373 case 13: (*funcPtr)(); break;
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
374
11092
59b052799158 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 10308
diff changeset
375 default: tty->print_cr("ERROR: %d: unexpected test_num value.", n);
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
376 }
11092
59b052799158 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 10308
diff changeset
377 ShouldNotReachHere();
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
378 }
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
379 #endif // !PRODUCT
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 989
diff changeset
380
0
a61af66fc99e Initial load
duke
parents:
diff changeset
381 // ------ helper functions for debugging go here ------------
a61af66fc99e Initial load
duke
parents:
diff changeset
382
a61af66fc99e Initial load
duke
parents:
diff changeset
383 // All debug entries should be wrapped with a stack allocated
a61af66fc99e Initial load
duke
parents:
diff changeset
384 // Command object. It makes sure a resource mark is set and
a61af66fc99e Initial load
duke
parents:
diff changeset
385 // flushes the logfile to prevent file sharing problems.
a61af66fc99e Initial load
duke
parents:
diff changeset
386
a61af66fc99e Initial load
duke
parents:
diff changeset
387 class Command : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
388 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
389 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
390 ResetNoHandleMark rnhm;
a61af66fc99e Initial load
duke
parents:
diff changeset
391 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
392 bool debug_save;
a61af66fc99e Initial load
duke
parents:
diff changeset
393 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
394 static int level;
a61af66fc99e Initial load
duke
parents:
diff changeset
395 Command(const char* str) {
a61af66fc99e Initial load
duke
parents:
diff changeset
396 debug_save = Debugging;
a61af66fc99e Initial load
duke
parents:
diff changeset
397 Debugging = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
398 if (level++ > 0) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
399 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
400 tty->print_cr("\"Executing %s\"", str);
a61af66fc99e Initial load
duke
parents:
diff changeset
401 }
a61af66fc99e Initial load
duke
parents:
diff changeset
402
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
403 ~Command() {
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
404 tty->flush();
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
405 Debugging = debug_save;
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
406 level--;
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
407 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
408 };
a61af66fc99e Initial load
duke
parents:
diff changeset
409
a61af66fc99e Initial load
duke
parents:
diff changeset
410 int Command::level = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
411
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
412 #ifndef PRODUCT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
413
0
a61af66fc99e Initial load
duke
parents:
diff changeset
414 extern "C" void blob(CodeBlob* cb) {
a61af66fc99e Initial load
duke
parents:
diff changeset
415 Command c("blob");
a61af66fc99e Initial load
duke
parents:
diff changeset
416 cb->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
417 }
a61af66fc99e Initial load
duke
parents:
diff changeset
418
a61af66fc99e Initial load
duke
parents:
diff changeset
419
a61af66fc99e Initial load
duke
parents:
diff changeset
420 extern "C" void dump_vtable(address p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
421 Command c("dump_vtable");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6268
diff changeset
422 Klass* k = (Klass*)p;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6268
diff changeset
423 InstanceKlass::cast(k)->vtable()->print();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
424 }
a61af66fc99e Initial load
duke
parents:
diff changeset
425
a61af66fc99e Initial load
duke
parents:
diff changeset
426
a61af66fc99e Initial load
duke
parents:
diff changeset
427 extern "C" void nm(intptr_t p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
428 // Actually we look through all CodeBlobs (the nm name has been kept for backwards compatability)
a61af66fc99e Initial load
duke
parents:
diff changeset
429 Command c("nm");
a61af66fc99e Initial load
duke
parents:
diff changeset
430 CodeBlob* cb = CodeCache::find_blob((address)p);
a61af66fc99e Initial load
duke
parents:
diff changeset
431 if (cb == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
432 tty->print_cr("NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
433 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
434 cb->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
435 }
a61af66fc99e Initial load
duke
parents:
diff changeset
436 }
a61af66fc99e Initial load
duke
parents:
diff changeset
437
a61af66fc99e Initial load
duke
parents:
diff changeset
438
a61af66fc99e Initial load
duke
parents:
diff changeset
439 extern "C" void disnm(intptr_t p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
440 Command c("disnm");
a61af66fc99e Initial load
duke
parents:
diff changeset
441 CodeBlob* cb = CodeCache::find_blob((address) p);
2008
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1972
diff changeset
442 nmethod* nm = cb->as_nmethod_or_null();
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1972
diff changeset
443 if (nm) {
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1972
diff changeset
444 nm->print();
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1972
diff changeset
445 Disassembler::decode(nm);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1972
diff changeset
446 } else {
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1972
diff changeset
447 cb->print();
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1972
diff changeset
448 Disassembler::decode(cb);
2f644f85485d 6961690: load oops from constant table on SPARC
twisti
parents: 1972
diff changeset
449 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
450 }
a61af66fc99e Initial load
duke
parents:
diff changeset
451
a61af66fc99e Initial load
duke
parents:
diff changeset
452
a61af66fc99e Initial load
duke
parents:
diff changeset
453 extern "C" void printnm(intptr_t p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
454 char buffer[256];
a61af66fc99e Initial load
duke
parents:
diff changeset
455 sprintf(buffer, "printnm: " INTPTR_FORMAT, p);
a61af66fc99e Initial load
duke
parents:
diff changeset
456 Command c(buffer);
a61af66fc99e Initial load
duke
parents:
diff changeset
457 CodeBlob* cb = CodeCache::find_blob((address) p);
a61af66fc99e Initial load
duke
parents:
diff changeset
458 if (cb->is_nmethod()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
459 nmethod* nm = (nmethod*)cb;
a61af66fc99e Initial load
duke
parents:
diff changeset
460 nm->print_nmethod(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
461 }
a61af66fc99e Initial load
duke
parents:
diff changeset
462 }
a61af66fc99e Initial load
duke
parents:
diff changeset
463
a61af66fc99e Initial load
duke
parents:
diff changeset
464
a61af66fc99e Initial load
duke
parents:
diff changeset
465 extern "C" void universe() {
a61af66fc99e Initial load
duke
parents:
diff changeset
466 Command c("universe");
a61af66fc99e Initial load
duke
parents:
diff changeset
467 Universe::print();
a61af66fc99e Initial load
duke
parents:
diff changeset
468 }
a61af66fc99e Initial load
duke
parents:
diff changeset
469
a61af66fc99e Initial load
duke
parents:
diff changeset
470
a61af66fc99e Initial load
duke
parents:
diff changeset
471 extern "C" void verify() {
a61af66fc99e Initial load
duke
parents:
diff changeset
472 // try to run a verify on the entire system
a61af66fc99e Initial load
duke
parents:
diff changeset
473 // note: this may not be safe if we're not at a safepoint; for debugging,
a61af66fc99e Initial load
duke
parents:
diff changeset
474 // this manipulates the safepoint settings to avoid assertion failures
a61af66fc99e Initial load
duke
parents:
diff changeset
475 Command c("universe verify");
a61af66fc99e Initial load
duke
parents:
diff changeset
476 bool safe = SafepointSynchronize::is_at_safepoint();
a61af66fc99e Initial load
duke
parents:
diff changeset
477 if (!safe) {
a61af66fc99e Initial load
duke
parents:
diff changeset
478 tty->print_cr("warning: not at safepoint -- verify may fail");
a61af66fc99e Initial load
duke
parents:
diff changeset
479 SafepointSynchronize::set_is_at_safepoint();
a61af66fc99e Initial load
duke
parents:
diff changeset
480 }
a61af66fc99e Initial load
duke
parents:
diff changeset
481 // Ensure Eden top is correct before verification
a61af66fc99e Initial load
duke
parents:
diff changeset
482 Universe::heap()->prepare_for_verify();
6865
4202510ee0fe 8000831: Heap verification output incorrect/incomplete
johnc
parents: 6759
diff changeset
483 Universe::verify();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
484 if (!safe) SafepointSynchronize::set_is_not_at_safepoint();
a61af66fc99e Initial load
duke
parents:
diff changeset
485 }
a61af66fc99e Initial load
duke
parents:
diff changeset
486
a61af66fc99e Initial load
duke
parents:
diff changeset
487
a61af66fc99e Initial load
duke
parents:
diff changeset
488 extern "C" void pp(void* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
489 Command c("pp");
a61af66fc99e Initial load
duke
parents:
diff changeset
490 FlagSetting fl(PrintVMMessages, true);
3336
2e038ad0c1d0 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 2426
diff changeset
491 FlagSetting f2(DisplayVMOutput, true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
492 if (Universe::heap()->is_in(p)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
493 oop obj = oop(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
494 obj->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
495 } else {
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
496 tty->print(PTR_FORMAT, p);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
497 }
a61af66fc99e Initial load
duke
parents:
diff changeset
498 }
a61af66fc99e Initial load
duke
parents:
diff changeset
499
a61af66fc99e Initial load
duke
parents:
diff changeset
500
a61af66fc99e Initial load
duke
parents:
diff changeset
501 // pv: print vm-printable object
a61af66fc99e Initial load
duke
parents:
diff changeset
502 extern "C" void pa(intptr_t p) { ((AllocatedObj*) p)->print(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
503 extern "C" void findpc(intptr_t x);
a61af66fc99e Initial load
duke
parents:
diff changeset
504
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
505 #endif // !PRODUCT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
506
0
a61af66fc99e Initial load
duke
parents:
diff changeset
507 extern "C" void ps() { // print stack
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
508 if (Thread::current() == NULL) return;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
509 Command c("ps");
a61af66fc99e Initial load
duke
parents:
diff changeset
510
a61af66fc99e Initial load
duke
parents:
diff changeset
511
a61af66fc99e Initial load
duke
parents:
diff changeset
512 // Prints the stack of the current Java thread
a61af66fc99e Initial load
duke
parents:
diff changeset
513 JavaThread* p = JavaThread::active();
a61af66fc99e Initial load
duke
parents:
diff changeset
514 tty->print(" for thread: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
515 p->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
516 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
517
a61af66fc99e Initial load
duke
parents:
diff changeset
518 if (p->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
519 // If the last_Java_fp is set we are in C land and
a61af66fc99e Initial load
duke
parents:
diff changeset
520 // can call the standard stack_trace function.
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
521 #ifdef PRODUCT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
522 p->print_stack();
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
523 } else {
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
524 tty->print_cr("Cannot find the last Java frame, printing stack disabled.");
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
525 #else // !PRODUCT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
526 p->trace_stack();
a61af66fc99e Initial load
duke
parents:
diff changeset
527 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
528 frame f = os::current_frame();
a61af66fc99e Initial load
duke
parents:
diff changeset
529 RegisterMap reg_map(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
530 f = f.sender(&reg_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
531 tty->print("(guessing starting frame id=%#p based on current fp)\n", f.id());
a61af66fc99e Initial load
duke
parents:
diff changeset
532 p->trace_stack_from(vframe::new_vframe(&f, &reg_map, p));
a61af66fc99e Initial load
duke
parents:
diff changeset
533 pd_ps(f);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
534 #endif // PRODUCT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
535 }
a61af66fc99e Initial load
duke
parents:
diff changeset
536
a61af66fc99e Initial load
duke
parents:
diff changeset
537 }
a61af66fc99e Initial load
duke
parents:
diff changeset
538
3336
2e038ad0c1d0 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 2426
diff changeset
539 extern "C" void pfl() {
2e038ad0c1d0 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 2426
diff changeset
540 // print frame layout
2e038ad0c1d0 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 2426
diff changeset
541 Command c("pfl");
2e038ad0c1d0 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 2426
diff changeset
542 JavaThread* p = JavaThread::active();
2e038ad0c1d0 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 2426
diff changeset
543 tty->print(" for thread: ");
2e038ad0c1d0 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 2426
diff changeset
544 p->print();
2e038ad0c1d0 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 2426
diff changeset
545 tty->cr();
2e038ad0c1d0 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 2426
diff changeset
546 if (p->has_last_Java_frame()) {
2e038ad0c1d0 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 2426
diff changeset
547 p->print_frame_layout();
2e038ad0c1d0 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 2426
diff changeset
548 }
2e038ad0c1d0 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 2426
diff changeset
549 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
550
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
551 #ifndef PRODUCT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
552
0
a61af66fc99e Initial load
duke
parents:
diff changeset
553 extern "C" void psf() { // print stack frames
a61af66fc99e Initial load
duke
parents:
diff changeset
554 {
a61af66fc99e Initial load
duke
parents:
diff changeset
555 Command c("psf");
a61af66fc99e Initial load
duke
parents:
diff changeset
556 JavaThread* p = JavaThread::active();
a61af66fc99e Initial load
duke
parents:
diff changeset
557 tty->print(" for thread: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
558 p->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
559 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
560 if (p->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
561 p->trace_frames();
a61af66fc99e Initial load
duke
parents:
diff changeset
562 }
a61af66fc99e Initial load
duke
parents:
diff changeset
563 }
a61af66fc99e Initial load
duke
parents:
diff changeset
564 }
a61af66fc99e Initial load
duke
parents:
diff changeset
565
a61af66fc99e Initial load
duke
parents:
diff changeset
566
a61af66fc99e Initial load
duke
parents:
diff changeset
567 extern "C" void threads() {
a61af66fc99e Initial load
duke
parents:
diff changeset
568 Command c("threads");
a61af66fc99e Initial load
duke
parents:
diff changeset
569 Threads::print(false, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
570 }
a61af66fc99e Initial load
duke
parents:
diff changeset
571
a61af66fc99e Initial load
duke
parents:
diff changeset
572
a61af66fc99e Initial load
duke
parents:
diff changeset
573 extern "C" void psd() {
a61af66fc99e Initial load
duke
parents:
diff changeset
574 Command c("psd");
a61af66fc99e Initial load
duke
parents:
diff changeset
575 SystemDictionary::print();
a61af66fc99e Initial load
duke
parents:
diff changeset
576 }
a61af66fc99e Initial load
duke
parents:
diff changeset
577
a61af66fc99e Initial load
duke
parents:
diff changeset
578
a61af66fc99e Initial load
duke
parents:
diff changeset
579 extern "C" void safepoints() {
a61af66fc99e Initial load
duke
parents:
diff changeset
580 Command c("safepoints");
a61af66fc99e Initial load
duke
parents:
diff changeset
581 SafepointSynchronize::print_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
582 }
a61af66fc99e Initial load
duke
parents:
diff changeset
583
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
584 #endif // !PRODUCT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
585
a61af66fc99e Initial load
duke
parents:
diff changeset
586 extern "C" void pss() { // print all stacks
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
587 if (Thread::current() == NULL) return;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
588 Command c("pss");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
589 Threads::print(true, PRODUCT_ONLY(false) NOT_PRODUCT(true));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
590 }
a61af66fc99e Initial load
duke
parents:
diff changeset
591
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
592 #ifndef PRODUCT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
593
a61af66fc99e Initial load
duke
parents:
diff changeset
594 extern "C" void debug() { // to set things up for compiler debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
595 Command c("debug");
a61af66fc99e Initial load
duke
parents:
diff changeset
596 WizardMode = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
597 PrintVMMessages = PrintCompilation = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
598 PrintInlining = PrintAssembly = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
599 tty->flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
600 }
a61af66fc99e Initial load
duke
parents:
diff changeset
601
a61af66fc99e Initial load
duke
parents:
diff changeset
602
a61af66fc99e Initial load
duke
parents:
diff changeset
603 extern "C" void ndebug() { // undo debug()
a61af66fc99e Initial load
duke
parents:
diff changeset
604 Command c("ndebug");
a61af66fc99e Initial load
duke
parents:
diff changeset
605 PrintCompilation = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
606 PrintInlining = PrintAssembly = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
607 tty->flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
608 }
a61af66fc99e Initial load
duke
parents:
diff changeset
609
a61af66fc99e Initial load
duke
parents:
diff changeset
610
a61af66fc99e Initial load
duke
parents:
diff changeset
611 extern "C" void flush() {
a61af66fc99e Initial load
duke
parents:
diff changeset
612 Command c("flush");
a61af66fc99e Initial load
duke
parents:
diff changeset
613 tty->flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
614 }
a61af66fc99e Initial load
duke
parents:
diff changeset
615
4944
09d00c18e323 7145537: minor tweaks to LogEvents
never
parents: 4872
diff changeset
616 extern "C" void events() {
09d00c18e323 7145537: minor tweaks to LogEvents
never
parents: 4872
diff changeset
617 Command c("events");
09d00c18e323 7145537: minor tweaks to LogEvents
never
parents: 4872
diff changeset
618 Events::print();
09d00c18e323 7145537: minor tweaks to LogEvents
never
parents: 4872
diff changeset
619 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
620
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6268
diff changeset
621 extern "C" Method* findm(intptr_t pc) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
622 Command c("findm");
a61af66fc99e Initial load
duke
parents:
diff changeset
623 nmethod* nm = CodeCache::find_nmethod((address)pc);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6268
diff changeset
624 return (nm == NULL) ? (Method*)NULL : nm->method();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
625 }
a61af66fc99e Initial load
duke
parents:
diff changeset
626
a61af66fc99e Initial load
duke
parents:
diff changeset
627
a61af66fc99e Initial load
duke
parents:
diff changeset
628 extern "C" nmethod* findnm(intptr_t addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
629 Command c("findnm");
a61af66fc99e Initial load
duke
parents:
diff changeset
630 return CodeCache::find_nmethod((address)addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
631 }
a61af66fc99e Initial load
duke
parents:
diff changeset
632
a61af66fc99e Initial load
duke
parents:
diff changeset
633 // Another interface that isn't ambiguous in dbx.
a61af66fc99e Initial load
duke
parents:
diff changeset
634 // Can we someday rename the other find to hsfind?
a61af66fc99e Initial load
duke
parents:
diff changeset
635 extern "C" void hsfind(intptr_t x) {
a61af66fc99e Initial load
duke
parents:
diff changeset
636 Command c("hsfind");
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
637 os::print_location(tty, x, false);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
638 }
a61af66fc99e Initial load
duke
parents:
diff changeset
639
a61af66fc99e Initial load
duke
parents:
diff changeset
640
a61af66fc99e Initial load
duke
parents:
diff changeset
641 extern "C" void find(intptr_t x) {
a61af66fc99e Initial load
duke
parents:
diff changeset
642 Command c("find");
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
643 os::print_location(tty, x, false);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
644 }
a61af66fc99e Initial load
duke
parents:
diff changeset
645
a61af66fc99e Initial load
duke
parents:
diff changeset
646
a61af66fc99e Initial load
duke
parents:
diff changeset
647 extern "C" void findpc(intptr_t x) {
a61af66fc99e Initial load
duke
parents:
diff changeset
648 Command c("findpc");
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
649 os::print_location(tty, x, true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
650 }
a61af66fc99e Initial load
duke
parents:
diff changeset
651
a61af66fc99e Initial load
duke
parents:
diff changeset
652
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6268
diff changeset
653 // Need method pointer to find bcp, when not in permgen.
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6268
diff changeset
654 extern "C" void findbcp(intptr_t method, intptr_t bcp) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6268
diff changeset
655 Command c("findbcp");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6268
diff changeset
656 Method* mh = (Method*)method;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6268
diff changeset
657 if (!mh->is_native()) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6268
diff changeset
658 tty->print_cr("bci_from(%p) = %d; print_codes():",
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6268
diff changeset
659 mh, mh->bci_from(address(bcp)));
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6268
diff changeset
660 mh->print_codes_on(tty);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6268
diff changeset
661 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6268
diff changeset
662 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6268
diff changeset
663
0
a61af66fc99e Initial load
duke
parents:
diff changeset
664 // int versions of all methods to avoid having to type type casts in the debugger
a61af66fc99e Initial load
duke
parents:
diff changeset
665
a61af66fc99e Initial load
duke
parents:
diff changeset
666 void pp(intptr_t p) { pp((void*)p); }
a61af66fc99e Initial load
duke
parents:
diff changeset
667 void pp(oop p) { pp((void*)p); }
a61af66fc99e Initial load
duke
parents:
diff changeset
668
a61af66fc99e Initial load
duke
parents:
diff changeset
669 void help() {
a61af66fc99e Initial load
duke
parents:
diff changeset
670 Command c("help");
a61af66fc99e Initial load
duke
parents:
diff changeset
671 tty->print_cr("basic");
a61af66fc99e Initial load
duke
parents:
diff changeset
672 tty->print_cr(" pp(void* p) - try to make sense of p");
a61af66fc99e Initial load
duke
parents:
diff changeset
673 tty->print_cr(" pv(intptr_t p)- ((PrintableResourceObj*) p)->print()");
a61af66fc99e Initial load
duke
parents:
diff changeset
674 tty->print_cr(" ps() - print current thread stack");
a61af66fc99e Initial load
duke
parents:
diff changeset
675 tty->print_cr(" pss() - print all thread stacks");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6268
diff changeset
676 tty->print_cr(" pm(int pc) - print Method* given compiled PC");
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6268
diff changeset
677 tty->print_cr(" findm(intptr_t pc) - finds Method*");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
678 tty->print_cr(" find(intptr_t x) - finds & prints nmethod/stub/bytecode/oop based on pointer into it");
22803
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
679 tty->print_cr(" pns(void* sp, void* fp, void* pc) - print native (i.e. mixed) stack trace. E.g.");
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
680 tty->print_cr(" pns($sp, $rbp, $pc) on Linux/amd64 and Solaris/amd64 or");
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
681 tty->print_cr(" pns($sp, $ebp, $pc) on Linux/x86 or");
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
682 tty->print_cr(" pns($sp, 0, $pc) on Linux/ppc64 or");
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
683 tty->print_cr(" pns($sp + 0x7ff, 0, $pc) on Solaris/SPARC");
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
684 tty->print_cr(" - in gdb do 'set overload-resolution off' before calling pns()");
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
685 tty->print_cr(" - in dbx do 'frame 1' before calling pns()");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
686
a61af66fc99e Initial load
duke
parents:
diff changeset
687 tty->print_cr("misc.");
a61af66fc99e Initial load
duke
parents:
diff changeset
688 tty->print_cr(" flush() - flushes the log file");
4944
09d00c18e323 7145537: minor tweaks to LogEvents
never
parents: 4872
diff changeset
689 tty->print_cr(" events() - dump events from ring buffers");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
690
a61af66fc99e Initial load
duke
parents:
diff changeset
691
a61af66fc99e Initial load
duke
parents:
diff changeset
692 tty->print_cr("compiler debugging");
a61af66fc99e Initial load
duke
parents:
diff changeset
693 tty->print_cr(" debug() - to set things up for compiler debugging");
a61af66fc99e Initial load
duke
parents:
diff changeset
694 tty->print_cr(" ndebug() - undo debug");
a61af66fc99e Initial load
duke
parents:
diff changeset
695 }
a61af66fc99e Initial load
duke
parents:
diff changeset
696
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
697 #endif // !PRODUCT
22803
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
698
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
699 void print_native_stack(outputStream* st, frame fr, Thread* t, char* buf, int buf_size) {
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
700
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
701 // see if it's a valid frame
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
702 if (fr.pc()) {
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
703 st->print_cr("Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)");
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
704
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
705 int count = 0;
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
706 while (count++ < StackPrintLimit) {
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
707 fr.print_on_error(st, buf, buf_size);
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
708 st->cr();
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
709 // Compiled code may use EBP register on x86 so it looks like
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
710 // non-walkable C frame. Use frame.sender() for java frames.
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
711 if (t && t->is_Java_thread()) {
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
712 // Catch very first native frame by using stack address.
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
713 // For JavaThread stack_base and stack_size should be set.
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
714 if (!t->on_local_stack((address)(fr.real_fp() + 1))) {
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
715 break;
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
716 }
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
717 if (fr.is_java_frame() || fr.is_native_frame() || fr.is_runtime_frame()) {
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
718 RegisterMap map((JavaThread*)t, false); // No update
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
719 fr = fr.sender(&map);
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
720 } else {
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
721 fr = os::get_sender_for_C_frame(&fr);
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
722 }
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
723 } else {
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
724 // is_first_C_frame() does only simple checks for frame pointer,
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
725 // it will pass if java compiled code has a pointer in EBP.
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
726 if (os::is_first_C_frame(&fr)) break;
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
727 fr = os::get_sender_for_C_frame(&fr);
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
728 }
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
729 }
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
730
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
731 if (count > StackPrintLimit) {
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
732 st->print_cr("...<more frames>...");
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
733 }
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
734
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
735 st->cr();
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
736 }
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
737 }
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
738
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
739 #ifndef PRODUCT
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
740
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
741 extern "C" void pns(void* sp, void* fp, void* pc) { // print native stack
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
742 Command c("pns");
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
743 static char buf[O_BUFLEN];
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
744 Thread* t = ThreadLocalStorage::get_thread_slow();
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
745 // Call generic frame constructor (certain arguments may be ignored)
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
746 frame fr(sp, fp, pc);
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
747 print_native_stack(tty, fr, t, buf, sizeof(buf));
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
748 }
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
749
f43fad8786fc 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 20586
diff changeset
750 #endif // !PRODUCT