annotate src/share/vm/utilities/debug.cpp @ 4944:09d00c18e323

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