annotate src/share/vm/runtime/java.cpp @ 235:9c2ecc2ffb12 jdk7-b31

Merge
author trims
date Fri, 11 Jul 2008 01:14:44 -0700
parents d1605aabd0a1 8d852b81e775
children d95b224e9f17
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 61
diff changeset
2 * Copyright 1997-2008 Sun Microsystems, Inc. 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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 #include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #include "incls/_java.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 HS_DTRACE_PROBE_DECL(hotspot, vm__shutdown);
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // Statistics printing (method invocation histogram)
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 GrowableArray<methodOop>* collected_invoked_methods;
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 void collect_invoked_methods(methodOop m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
37 if (m->invocation_count() + m->compiled_invocation_count() >= 1 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
38 collected_invoked_methods->push(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
39 }
a61af66fc99e Initial load
duke
parents:
diff changeset
40 }
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 GrowableArray<methodOop>* collected_profiled_methods;
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 void collect_profiled_methods(methodOop m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
46 methodHandle mh(Thread::current(), m);
a61af66fc99e Initial load
duke
parents:
diff changeset
47 if ((m->method_data() != NULL) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
48 (PrintMethodData || CompilerOracle::should_print(mh))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 collected_profiled_methods->push(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
50 }
a61af66fc99e Initial load
duke
parents:
diff changeset
51 }
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 int compare_methods(methodOop* a, methodOop* b) {
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // %%% there can be 32-bit overflow here
a61af66fc99e Initial load
duke
parents:
diff changeset
56 return ((*b)->invocation_count() + (*b)->compiled_invocation_count())
a61af66fc99e Initial load
duke
parents:
diff changeset
57 - ((*a)->invocation_count() + (*a)->compiled_invocation_count());
a61af66fc99e Initial load
duke
parents:
diff changeset
58 }
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 void print_method_invocation_histogram() {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 collected_invoked_methods = new GrowableArray<methodOop>(1024);
a61af66fc99e Initial load
duke
parents:
diff changeset
65 SystemDictionary::methods_do(collect_invoked_methods);
a61af66fc99e Initial load
duke
parents:
diff changeset
66 collected_invoked_methods->sort(&compare_methods);
a61af66fc99e Initial load
duke
parents:
diff changeset
67 //
a61af66fc99e Initial load
duke
parents:
diff changeset
68 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
69 tty->print_cr("Histogram Over MethodOop Invocation Counters (cutoff = %d):", MethodHistogramCutoff);
a61af66fc99e Initial load
duke
parents:
diff changeset
70 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
71 tty->print_cr("____Count_(I+C)____Method________________________Module_________________");
a61af66fc99e Initial load
duke
parents:
diff changeset
72 unsigned total = 0, int_total = 0, comp_total = 0, static_total = 0, final_total = 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
73 synch_total = 0, nativ_total = 0, acces_total = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 for (int index = 0; index < collected_invoked_methods->length(); index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
75 methodOop m = collected_invoked_methods->at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
76 int c = m->invocation_count() + m->compiled_invocation_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
77 if (c >= MethodHistogramCutoff) m->print_invocation_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
78 int_total += m->invocation_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
79 comp_total += m->compiled_invocation_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
80 if (m->is_final()) final_total += c;
a61af66fc99e Initial load
duke
parents:
diff changeset
81 if (m->is_static()) static_total += c;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 if (m->is_synchronized()) synch_total += c;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 if (m->is_native()) nativ_total += c;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 if (m->is_accessor()) acces_total += c;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 }
a61af66fc99e Initial load
duke
parents:
diff changeset
86 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
87 total = int_total + comp_total;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 tty->print_cr("Invocations summary:");
a61af66fc99e Initial load
duke
parents:
diff changeset
89 tty->print_cr("\t%9d (%4.1f%%) interpreted", int_total, 100.0 * int_total / total);
a61af66fc99e Initial load
duke
parents:
diff changeset
90 tty->print_cr("\t%9d (%4.1f%%) compiled", comp_total, 100.0 * comp_total / total);
a61af66fc99e Initial load
duke
parents:
diff changeset
91 tty->print_cr("\t%9d (100%%) total", total);
a61af66fc99e Initial load
duke
parents:
diff changeset
92 tty->print_cr("\t%9d (%4.1f%%) synchronized", synch_total, 100.0 * synch_total / total);
a61af66fc99e Initial load
duke
parents:
diff changeset
93 tty->print_cr("\t%9d (%4.1f%%) final", final_total, 100.0 * final_total / total);
a61af66fc99e Initial load
duke
parents:
diff changeset
94 tty->print_cr("\t%9d (%4.1f%%) static", static_total, 100.0 * static_total / total);
a61af66fc99e Initial load
duke
parents:
diff changeset
95 tty->print_cr("\t%9d (%4.1f%%) native", nativ_total, 100.0 * nativ_total / total);
a61af66fc99e Initial load
duke
parents:
diff changeset
96 tty->print_cr("\t%9d (%4.1f%%) accessor", acces_total, 100.0 * acces_total / total);
a61af66fc99e Initial load
duke
parents:
diff changeset
97 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
98 SharedRuntime::print_call_statistics(comp_total);
a61af66fc99e Initial load
duke
parents:
diff changeset
99 }
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 void print_method_profiling_data() {
a61af66fc99e Initial load
duke
parents:
diff changeset
102 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
103 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
104 collected_profiled_methods = new GrowableArray<methodOop>(1024);
a61af66fc99e Initial load
duke
parents:
diff changeset
105 SystemDictionary::methods_do(collect_profiled_methods);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 collected_profiled_methods->sort(&compare_methods);
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 int count = collected_profiled_methods->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
109 if (count > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
110 for (int index = 0; index < count; index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
111 methodOop m = collected_profiled_methods->at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
112 ttyLocker ttyl;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 tty->print_cr("------------------------------------------------------------------------");
a61af66fc99e Initial load
duke
parents:
diff changeset
114 //m->print_name(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
115 m->print_invocation_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
116 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
117 m->print_codes();
a61af66fc99e Initial load
duke
parents:
diff changeset
118 }
a61af66fc99e Initial load
duke
parents:
diff changeset
119 tty->print_cr("------------------------------------------------------------------------");
a61af66fc99e Initial load
duke
parents:
diff changeset
120 }
a61af66fc99e Initial load
duke
parents:
diff changeset
121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 void print_bytecode_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
124 if (CountBytecodes || TraceBytecodes || StopInterpreterAt) {
a61af66fc99e Initial load
duke
parents:
diff changeset
125 tty->print_cr("[BytecodeCounter::counter_value = %d]", BytecodeCounter::counter_value());
a61af66fc99e Initial load
duke
parents:
diff changeset
126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
127 }
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 AllocStats alloc_stats;
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // General statistics printing (profiling ...)
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 void print_statistics() {
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 if (CountRuntimeCalls) {
a61af66fc99e Initial load
duke
parents:
diff changeset
140 extern Histogram *RuntimeHistogram;
a61af66fc99e Initial load
duke
parents:
diff changeset
141 RuntimeHistogram->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
142 }
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 if (CountJNICalls) {
a61af66fc99e Initial load
duke
parents:
diff changeset
145 extern Histogram *JNIHistogram;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 JNIHistogram->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
147 }
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 if (CountJVMCalls) {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 extern Histogram *JVMHistogram;
a61af66fc99e Initial load
duke
parents:
diff changeset
151 JVMHistogram->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 if (MemProfiling) {
a61af66fc99e Initial load
duke
parents:
diff changeset
157 MemProfiler::disengage();
a61af66fc99e Initial load
duke
parents:
diff changeset
158 }
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 if (CITime) {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 CompileBroker::print_times();
a61af66fc99e Initial load
duke
parents:
diff changeset
162 }
a61af66fc99e Initial load
duke
parents:
diff changeset
163
a61af66fc99e Initial load
duke
parents:
diff changeset
164 #ifdef COMPILER1
a61af66fc99e Initial load
duke
parents:
diff changeset
165 if ((PrintC1Statistics || LogVMOutput || LogCompilation) && UseCompiler) {
a61af66fc99e Initial load
duke
parents:
diff changeset
166 FlagSetting fs(DisplayVMOutput, DisplayVMOutput && PrintC1Statistics);
a61af66fc99e Initial load
duke
parents:
diff changeset
167 Runtime1::print_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
168 Deoptimization::print_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
169 nmethod::print_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
170 }
a61af66fc99e Initial load
duke
parents:
diff changeset
171 #endif /* COMPILER1 */
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
174 if ((PrintOptoStatistics || LogVMOutput || LogCompilation) && UseCompiler) {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 FlagSetting fs(DisplayVMOutput, DisplayVMOutput && PrintOptoStatistics);
a61af66fc99e Initial load
duke
parents:
diff changeset
176 Compile::print_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
177 #ifndef COMPILER1
a61af66fc99e Initial load
duke
parents:
diff changeset
178 Deoptimization::print_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
179 nmethod::print_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
180 #endif //COMPILER1
a61af66fc99e Initial load
duke
parents:
diff changeset
181 SharedRuntime::print_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
182 os::print_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
183 }
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 if (PrintLockStatistics || PrintPreciseBiasedLockingStatistics) {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 OptoRuntime::print_named_counters();
a61af66fc99e Initial load
duke
parents:
diff changeset
187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 if (TimeLivenessAnalysis) {
a61af66fc99e Initial load
duke
parents:
diff changeset
190 MethodLiveness::print_times();
a61af66fc99e Initial load
duke
parents:
diff changeset
191 }
a61af66fc99e Initial load
duke
parents:
diff changeset
192 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
193 if (CollectIndexSetStatistics) {
a61af66fc99e Initial load
duke
parents:
diff changeset
194 IndexSet::print_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
195 }
a61af66fc99e Initial load
duke
parents:
diff changeset
196 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
197 #endif // COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
198 if (CountCompiledCalls) {
a61af66fc99e Initial load
duke
parents:
diff changeset
199 print_method_invocation_histogram();
a61af66fc99e Initial load
duke
parents:
diff changeset
200 }
a61af66fc99e Initial load
duke
parents:
diff changeset
201 if (ProfileInterpreter || Tier1UpdateMethodData) {
a61af66fc99e Initial load
duke
parents:
diff changeset
202 print_method_profiling_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
203 }
a61af66fc99e Initial load
duke
parents:
diff changeset
204 if (TimeCompiler) {
a61af66fc99e Initial load
duke
parents:
diff changeset
205 COMPILER2_PRESENT(Compile::print_timers();)
a61af66fc99e Initial load
duke
parents:
diff changeset
206 }
a61af66fc99e Initial load
duke
parents:
diff changeset
207 if (TimeCompilationPolicy) {
a61af66fc99e Initial load
duke
parents:
diff changeset
208 CompilationPolicy::policy()->print_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
210 if (TimeOopMap) {
a61af66fc99e Initial load
duke
parents:
diff changeset
211 GenerateOopMap::print_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
213 if (ProfilerCheckIntervals) {
a61af66fc99e Initial load
duke
parents:
diff changeset
214 PeriodicTask::print_intervals();
a61af66fc99e Initial load
duke
parents:
diff changeset
215 }
a61af66fc99e Initial load
duke
parents:
diff changeset
216 if (PrintSymbolTableSizeHistogram) {
a61af66fc99e Initial load
duke
parents:
diff changeset
217 SymbolTable::print_histogram();
a61af66fc99e Initial load
duke
parents:
diff changeset
218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
219 if (CountBytecodes || TraceBytecodes || StopInterpreterAt) {
a61af66fc99e Initial load
duke
parents:
diff changeset
220 BytecodeCounter::print();
a61af66fc99e Initial load
duke
parents:
diff changeset
221 }
a61af66fc99e Initial load
duke
parents:
diff changeset
222 if (PrintBytecodePairHistogram) {
a61af66fc99e Initial load
duke
parents:
diff changeset
223 BytecodePairHistogram::print();
a61af66fc99e Initial load
duke
parents:
diff changeset
224 }
a61af66fc99e Initial load
duke
parents:
diff changeset
225
a61af66fc99e Initial load
duke
parents:
diff changeset
226 if (PrintCodeCache) {
a61af66fc99e Initial load
duke
parents:
diff changeset
227 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
228 CodeCache::print();
a61af66fc99e Initial load
duke
parents:
diff changeset
229 }
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231 if (PrintCodeCache2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
232 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 CodeCache::print_internals();
a61af66fc99e Initial load
duke
parents:
diff changeset
234 }
a61af66fc99e Initial load
duke
parents:
diff changeset
235
a61af66fc99e Initial load
duke
parents:
diff changeset
236 if (PrintClassStatistics) {
a61af66fc99e Initial load
duke
parents:
diff changeset
237 SystemDictionary::print_class_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
238 }
a61af66fc99e Initial load
duke
parents:
diff changeset
239 if (PrintMethodStatistics) {
a61af66fc99e Initial load
duke
parents:
diff changeset
240 SystemDictionary::print_method_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
241 }
a61af66fc99e Initial load
duke
parents:
diff changeset
242
a61af66fc99e Initial load
duke
parents:
diff changeset
243 if (PrintVtableStats) {
a61af66fc99e Initial load
duke
parents:
diff changeset
244 klassVtable::print_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
245 klassItable::print_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
246 }
a61af66fc99e Initial load
duke
parents:
diff changeset
247 if (VerifyOops) {
a61af66fc99e Initial load
duke
parents:
diff changeset
248 tty->print_cr("+VerifyOops count: %d", StubRoutines::verify_oop_count());
a61af66fc99e Initial load
duke
parents:
diff changeset
249 }
a61af66fc99e Initial load
duke
parents:
diff changeset
250
a61af66fc99e Initial load
duke
parents:
diff changeset
251 print_bytecode_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
252 if (WizardMode) {
a61af66fc99e Initial load
duke
parents:
diff changeset
253 tty->print("allocation stats: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
254 alloc_stats.print();
a61af66fc99e Initial load
duke
parents:
diff changeset
255 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
257
a61af66fc99e Initial load
duke
parents:
diff changeset
258 if (PrintSystemDictionaryAtExit) {
a61af66fc99e Initial load
duke
parents:
diff changeset
259 SystemDictionary::print();
a61af66fc99e Initial load
duke
parents:
diff changeset
260 }
a61af66fc99e Initial load
duke
parents:
diff changeset
261
a61af66fc99e Initial load
duke
parents:
diff changeset
262 if (PrintBiasedLockingStatistics) {
a61af66fc99e Initial load
duke
parents:
diff changeset
263 BiasedLocking::print_counters();
a61af66fc99e Initial load
duke
parents:
diff changeset
264 }
a61af66fc99e Initial load
duke
parents:
diff changeset
265
a61af66fc99e Initial load
duke
parents:
diff changeset
266 #ifdef ENABLE_ZAP_DEAD_LOCALS
a61af66fc99e Initial load
duke
parents:
diff changeset
267 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
268 if (ZapDeadCompiledLocals) {
a61af66fc99e Initial load
duke
parents:
diff changeset
269 tty->print_cr("Compile::CompiledZap_count = %d", Compile::CompiledZap_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
270 tty->print_cr("OptoRuntime::ZapDeadCompiledLocals_count = %d", OptoRuntime::ZapDeadCompiledLocals_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
271 }
a61af66fc99e Initial load
duke
parents:
diff changeset
272 #endif // COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
273 #endif // ENABLE_ZAP_DEAD_LOCALS
a61af66fc99e Initial load
duke
parents:
diff changeset
274 }
a61af66fc99e Initial load
duke
parents:
diff changeset
275
a61af66fc99e Initial load
duke
parents:
diff changeset
276 #else // PRODUCT MODE STATISTICS
a61af66fc99e Initial load
duke
parents:
diff changeset
277
a61af66fc99e Initial load
duke
parents:
diff changeset
278 void print_statistics() {
a61af66fc99e Initial load
duke
parents:
diff changeset
279
a61af66fc99e Initial load
duke
parents:
diff changeset
280 if (CITime) {
a61af66fc99e Initial load
duke
parents:
diff changeset
281 CompileBroker::print_times();
a61af66fc99e Initial load
duke
parents:
diff changeset
282 }
a61af66fc99e Initial load
duke
parents:
diff changeset
283 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
284 if (PrintPreciseBiasedLockingStatistics) {
a61af66fc99e Initial load
duke
parents:
diff changeset
285 OptoRuntime::print_named_counters();
a61af66fc99e Initial load
duke
parents:
diff changeset
286 }
a61af66fc99e Initial load
duke
parents:
diff changeset
287 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
288 if (PrintBiasedLockingStatistics) {
a61af66fc99e Initial load
duke
parents:
diff changeset
289 BiasedLocking::print_counters();
a61af66fc99e Initial load
duke
parents:
diff changeset
290 }
a61af66fc99e Initial load
duke
parents:
diff changeset
291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
292
a61af66fc99e Initial load
duke
parents:
diff changeset
293 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
294
a61af66fc99e Initial load
duke
parents:
diff changeset
295
a61af66fc99e Initial load
duke
parents:
diff changeset
296 // Helper class for registering on_exit calls through JVM_OnExit
a61af66fc99e Initial load
duke
parents:
diff changeset
297
a61af66fc99e Initial load
duke
parents:
diff changeset
298 extern "C" {
a61af66fc99e Initial load
duke
parents:
diff changeset
299 typedef void (*__exit_proc)(void);
a61af66fc99e Initial load
duke
parents:
diff changeset
300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
301
a61af66fc99e Initial load
duke
parents:
diff changeset
302 class ExitProc : public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
303 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
304 __exit_proc _proc;
a61af66fc99e Initial load
duke
parents:
diff changeset
305 // void (*_proc)(void);
a61af66fc99e Initial load
duke
parents:
diff changeset
306 ExitProc* _next;
a61af66fc99e Initial load
duke
parents:
diff changeset
307 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
308 // ExitProc(void (*proc)(void)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
309 ExitProc(__exit_proc proc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
310 _proc = proc;
a61af66fc99e Initial load
duke
parents:
diff changeset
311 _next = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
312 }
a61af66fc99e Initial load
duke
parents:
diff changeset
313 void evaluate() { _proc(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
314 ExitProc* next() const { return _next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
315 void set_next(ExitProc* next) { _next = next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
316 };
a61af66fc99e Initial load
duke
parents:
diff changeset
317
a61af66fc99e Initial load
duke
parents:
diff changeset
318
a61af66fc99e Initial load
duke
parents:
diff changeset
319 // Linked list of registered on_exit procedures
a61af66fc99e Initial load
duke
parents:
diff changeset
320
a61af66fc99e Initial load
duke
parents:
diff changeset
321 static ExitProc* exit_procs = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
322
a61af66fc99e Initial load
duke
parents:
diff changeset
323
a61af66fc99e Initial load
duke
parents:
diff changeset
324 extern "C" {
a61af66fc99e Initial load
duke
parents:
diff changeset
325 void register_on_exit_function(void (*func)(void)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
326 ExitProc *entry = new ExitProc(func);
a61af66fc99e Initial load
duke
parents:
diff changeset
327 // Classic vm does not throw an exception in case the allocation failed,
a61af66fc99e Initial load
duke
parents:
diff changeset
328 if (entry != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
329 entry->set_next(exit_procs);
a61af66fc99e Initial load
duke
parents:
diff changeset
330 exit_procs = entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
331 }
a61af66fc99e Initial load
duke
parents:
diff changeset
332 }
a61af66fc99e Initial load
duke
parents:
diff changeset
333 }
a61af66fc99e Initial load
duke
parents:
diff changeset
334
a61af66fc99e Initial load
duke
parents:
diff changeset
335 // Note: before_exit() can be executed only once, if more than one threads
a61af66fc99e Initial load
duke
parents:
diff changeset
336 // are trying to shutdown the VM at the same time, only one thread
a61af66fc99e Initial load
duke
parents:
diff changeset
337 // can run before_exit() and all other threads must wait.
a61af66fc99e Initial load
duke
parents:
diff changeset
338 void before_exit(JavaThread * thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
339 #define BEFORE_EXIT_NOT_RUN 0
a61af66fc99e Initial load
duke
parents:
diff changeset
340 #define BEFORE_EXIT_RUNNING 1
a61af66fc99e Initial load
duke
parents:
diff changeset
341 #define BEFORE_EXIT_DONE 2
a61af66fc99e Initial load
duke
parents:
diff changeset
342 static jint volatile _before_exit_status = BEFORE_EXIT_NOT_RUN;
a61af66fc99e Initial load
duke
parents:
diff changeset
343
a61af66fc99e Initial load
duke
parents:
diff changeset
344 // Note: don't use a Mutex to guard the entire before_exit(), as
a61af66fc99e Initial load
duke
parents:
diff changeset
345 // JVMTI post_thread_end_event and post_vm_death_event will run native code.
a61af66fc99e Initial load
duke
parents:
diff changeset
346 // A CAS or OSMutex would work just fine but then we need to manipulate
a61af66fc99e Initial load
duke
parents:
diff changeset
347 // thread state for Safepoint. Here we use Monitor wait() and notify_all()
a61af66fc99e Initial load
duke
parents:
diff changeset
348 // for synchronization.
a61af66fc99e Initial load
duke
parents:
diff changeset
349 { MutexLocker ml(BeforeExit_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
350 switch (_before_exit_status) {
a61af66fc99e Initial load
duke
parents:
diff changeset
351 case BEFORE_EXIT_NOT_RUN:
a61af66fc99e Initial load
duke
parents:
diff changeset
352 _before_exit_status = BEFORE_EXIT_RUNNING;
a61af66fc99e Initial load
duke
parents:
diff changeset
353 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
354 case BEFORE_EXIT_RUNNING:
a61af66fc99e Initial load
duke
parents:
diff changeset
355 while (_before_exit_status == BEFORE_EXIT_RUNNING) {
a61af66fc99e Initial load
duke
parents:
diff changeset
356 BeforeExit_lock->wait();
a61af66fc99e Initial load
duke
parents:
diff changeset
357 }
a61af66fc99e Initial load
duke
parents:
diff changeset
358 assert(_before_exit_status == BEFORE_EXIT_DONE, "invalid state");
a61af66fc99e Initial load
duke
parents:
diff changeset
359 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
360 case BEFORE_EXIT_DONE:
a61af66fc99e Initial load
duke
parents:
diff changeset
361 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
362 }
a61af66fc99e Initial load
duke
parents:
diff changeset
363 }
a61af66fc99e Initial load
duke
parents:
diff changeset
364
a61af66fc99e Initial load
duke
parents:
diff changeset
365 // The only difference between this and Win32's _onexit procs is that
a61af66fc99e Initial load
duke
parents:
diff changeset
366 // this version is invoked before any threads get killed.
a61af66fc99e Initial load
duke
parents:
diff changeset
367 ExitProc* current = exit_procs;
a61af66fc99e Initial load
duke
parents:
diff changeset
368 while (current != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
369 ExitProc* next = current->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
370 current->evaluate();
a61af66fc99e Initial load
duke
parents:
diff changeset
371 delete current;
a61af66fc99e Initial load
duke
parents:
diff changeset
372 current = next;
a61af66fc99e Initial load
duke
parents:
diff changeset
373 }
a61af66fc99e Initial load
duke
parents:
diff changeset
374
a61af66fc99e Initial load
duke
parents:
diff changeset
375 // Hang forever on exit if we're reporting an error.
a61af66fc99e Initial load
duke
parents:
diff changeset
376 if (ShowMessageBoxOnError && is_error_reported()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
377 os::infinite_sleep();
a61af66fc99e Initial load
duke
parents:
diff changeset
378 }
a61af66fc99e Initial load
duke
parents:
diff changeset
379
a61af66fc99e Initial load
duke
parents:
diff changeset
380 // Terminate watcher thread - must before disenrolling any periodic task
a61af66fc99e Initial load
duke
parents:
diff changeset
381 WatcherThread::stop();
a61af66fc99e Initial load
duke
parents:
diff changeset
382
a61af66fc99e Initial load
duke
parents:
diff changeset
383 // Print statistics gathered (profiling ...)
a61af66fc99e Initial load
duke
parents:
diff changeset
384 if (Arguments::has_profile()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
385 FlatProfiler::disengage();
a61af66fc99e Initial load
duke
parents:
diff changeset
386 FlatProfiler::print(10);
a61af66fc99e Initial load
duke
parents:
diff changeset
387 }
a61af66fc99e Initial load
duke
parents:
diff changeset
388
a61af66fc99e Initial load
duke
parents:
diff changeset
389 // shut down the StatSampler task
a61af66fc99e Initial load
duke
parents:
diff changeset
390 StatSampler::disengage();
a61af66fc99e Initial load
duke
parents:
diff changeset
391 StatSampler::destroy();
a61af66fc99e Initial load
duke
parents:
diff changeset
392
a61af66fc99e Initial load
duke
parents:
diff changeset
393 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
394 // stop CMS threads
a61af66fc99e Initial load
duke
parents:
diff changeset
395 if (UseConcMarkSweepGC) {
a61af66fc99e Initial load
duke
parents:
diff changeset
396 ConcurrentMarkSweepThread::stop();
a61af66fc99e Initial load
duke
parents:
diff changeset
397 }
a61af66fc99e Initial load
duke
parents:
diff changeset
398 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
399
a61af66fc99e Initial load
duke
parents:
diff changeset
400 // Print GC/heap related information.
a61af66fc99e Initial load
duke
parents:
diff changeset
401 if (PrintGCDetails) {
a61af66fc99e Initial load
duke
parents:
diff changeset
402 Universe::print();
a61af66fc99e Initial load
duke
parents:
diff changeset
403 AdaptiveSizePolicyOutput(0);
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 if (Arguments::has_alloc_profile()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
408 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
409 // Do one last collection to enumerate all the objects
a61af66fc99e Initial load
duke
parents:
diff changeset
410 // allocated since the last one.
a61af66fc99e Initial load
duke
parents:
diff changeset
411 Universe::heap()->collect(GCCause::_allocation_profiler);
a61af66fc99e Initial load
duke
parents:
diff changeset
412 AllocationProfiler::disengage();
a61af66fc99e Initial load
duke
parents:
diff changeset
413 AllocationProfiler::print(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
414 }
a61af66fc99e Initial load
duke
parents:
diff changeset
415
a61af66fc99e Initial load
duke
parents:
diff changeset
416 if (PrintBytecodeHistogram) {
a61af66fc99e Initial load
duke
parents:
diff changeset
417 BytecodeHistogram::print();
a61af66fc99e Initial load
duke
parents:
diff changeset
418 }
a61af66fc99e Initial load
duke
parents:
diff changeset
419
a61af66fc99e Initial load
duke
parents:
diff changeset
420 if (JvmtiExport::should_post_thread_life()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
421 JvmtiExport::post_thread_end(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
422 }
a61af66fc99e Initial load
duke
parents:
diff changeset
423 // Always call even when there are not JVMTI environments yet, since environments
a61af66fc99e Initial load
duke
parents:
diff changeset
424 // may be attached late and JVMTI must track phases of VM execution
a61af66fc99e Initial load
duke
parents:
diff changeset
425 JvmtiExport::post_vm_death();
a61af66fc99e Initial load
duke
parents:
diff changeset
426 Threads::shutdown_vm_agents();
a61af66fc99e Initial load
duke
parents:
diff changeset
427
a61af66fc99e Initial load
duke
parents:
diff changeset
428 // Terminate the signal thread
a61af66fc99e Initial load
duke
parents:
diff changeset
429 // Note: we don't wait until it actually dies.
a61af66fc99e Initial load
duke
parents:
diff changeset
430 os::terminate_signal_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
431
a61af66fc99e Initial load
duke
parents:
diff changeset
432 print_statistics();
a61af66fc99e Initial load
duke
parents:
diff changeset
433 Universe::heap()->print_tracing_info();
a61af66fc99e Initial load
duke
parents:
diff changeset
434
a61af66fc99e Initial load
duke
parents:
diff changeset
435 VTune::exit();
a61af66fc99e Initial load
duke
parents:
diff changeset
436
a61af66fc99e Initial load
duke
parents:
diff changeset
437 { MutexLocker ml(BeforeExit_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
438 _before_exit_status = BEFORE_EXIT_DONE;
a61af66fc99e Initial load
duke
parents:
diff changeset
439 BeforeExit_lock->notify_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
440 }
a61af66fc99e Initial load
duke
parents:
diff changeset
441
a61af66fc99e Initial load
duke
parents:
diff changeset
442 #undef BEFORE_EXIT_NOT_RUN
a61af66fc99e Initial load
duke
parents:
diff changeset
443 #undef BEFORE_EXIT_RUNNING
a61af66fc99e Initial load
duke
parents:
diff changeset
444 #undef BEFORE_EXIT_DONE
a61af66fc99e Initial load
duke
parents:
diff changeset
445 }
a61af66fc99e Initial load
duke
parents:
diff changeset
446
a61af66fc99e Initial load
duke
parents:
diff changeset
447 void vm_exit(int code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
448 Thread* thread = ThreadLocalStorage::thread_index() == -1 ? NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
449 : ThreadLocalStorage::get_thread_slow();
a61af66fc99e Initial load
duke
parents:
diff changeset
450 if (thread == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
451 // we have serious problems -- just exit
a61af66fc99e Initial load
duke
parents:
diff changeset
452 vm_direct_exit(code);
a61af66fc99e Initial load
duke
parents:
diff changeset
453 }
a61af66fc99e Initial load
duke
parents:
diff changeset
454
a61af66fc99e Initial load
duke
parents:
diff changeset
455 if (VMThread::vm_thread() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
456 // Fire off a VM_Exit operation to bring VM to a safepoint and exit
a61af66fc99e Initial load
duke
parents:
diff changeset
457 VM_Exit op(code);
a61af66fc99e Initial load
duke
parents:
diff changeset
458 if (thread->is_Java_thread())
a61af66fc99e Initial load
duke
parents:
diff changeset
459 ((JavaThread*)thread)->set_thread_state(_thread_in_vm);
a61af66fc99e Initial load
duke
parents:
diff changeset
460 VMThread::execute(&op);
a61af66fc99e Initial load
duke
parents:
diff changeset
461 // should never reach here; but in case something wrong with VM Thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
462 vm_direct_exit(code);
a61af66fc99e Initial load
duke
parents:
diff changeset
463 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
464 // VM thread is gone, just exit
a61af66fc99e Initial load
duke
parents:
diff changeset
465 vm_direct_exit(code);
a61af66fc99e Initial load
duke
parents:
diff changeset
466 }
a61af66fc99e Initial load
duke
parents:
diff changeset
467 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
468 }
a61af66fc99e Initial load
duke
parents:
diff changeset
469
a61af66fc99e Initial load
duke
parents:
diff changeset
470 void notify_vm_shutdown() {
a61af66fc99e Initial load
duke
parents:
diff changeset
471 // For now, just a dtrace probe.
a61af66fc99e Initial load
duke
parents:
diff changeset
472 HS_DTRACE_PROBE(hotspot, vm__shutdown);
a61af66fc99e Initial load
duke
parents:
diff changeset
473 }
a61af66fc99e Initial load
duke
parents:
diff changeset
474
a61af66fc99e Initial load
duke
parents:
diff changeset
475 void vm_direct_exit(int code) {
a61af66fc99e Initial load
duke
parents:
diff changeset
476 notify_vm_shutdown();
a61af66fc99e Initial load
duke
parents:
diff changeset
477 ::exit(code);
a61af66fc99e Initial load
duke
parents:
diff changeset
478 }
a61af66fc99e Initial load
duke
parents:
diff changeset
479
a61af66fc99e Initial load
duke
parents:
diff changeset
480 void vm_perform_shutdown_actions() {
a61af66fc99e Initial load
duke
parents:
diff changeset
481 // Warning: do not call 'exit_globals()' here. All threads are still running.
a61af66fc99e Initial load
duke
parents:
diff changeset
482 // Calling 'exit_globals()' will disable thread-local-storage and cause all
a61af66fc99e Initial load
duke
parents:
diff changeset
483 // kinds of assertions to trigger in debug mode.
a61af66fc99e Initial load
duke
parents:
diff changeset
484 if (is_init_completed()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
485 Thread* thread = Thread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
486 if (thread->is_Java_thread()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
487 // We are leaving the VM, set state to native (in case any OS exit
a61af66fc99e Initial load
duke
parents:
diff changeset
488 // handlers call back to the VM)
a61af66fc99e Initial load
duke
parents:
diff changeset
489 JavaThread* jt = (JavaThread*)thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
490 // Must always be walkable or have no last_Java_frame when in
a61af66fc99e Initial load
duke
parents:
diff changeset
491 // thread_in_native
a61af66fc99e Initial load
duke
parents:
diff changeset
492 jt->frame_anchor()->make_walkable(jt);
a61af66fc99e Initial load
duke
parents:
diff changeset
493 jt->set_thread_state(_thread_in_native);
a61af66fc99e Initial load
duke
parents:
diff changeset
494 }
a61af66fc99e Initial load
duke
parents:
diff changeset
495 }
a61af66fc99e Initial load
duke
parents:
diff changeset
496 notify_vm_shutdown();
a61af66fc99e Initial load
duke
parents:
diff changeset
497 }
a61af66fc99e Initial load
duke
parents:
diff changeset
498
a61af66fc99e Initial load
duke
parents:
diff changeset
499 void vm_shutdown()
a61af66fc99e Initial load
duke
parents:
diff changeset
500 {
a61af66fc99e Initial load
duke
parents:
diff changeset
501 vm_perform_shutdown_actions();
a61af66fc99e Initial load
duke
parents:
diff changeset
502 os::shutdown();
a61af66fc99e Initial load
duke
parents:
diff changeset
503 }
a61af66fc99e Initial load
duke
parents:
diff changeset
504
227
8d852b81e775 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 61
diff changeset
505 void vm_abort(bool dump_core) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
506 vm_perform_shutdown_actions();
227
8d852b81e775 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 61
diff changeset
507 os::abort(dump_core);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
508 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
509 }
a61af66fc99e Initial load
duke
parents:
diff changeset
510
a61af66fc99e Initial load
duke
parents:
diff changeset
511 void vm_notify_during_shutdown(const char* error, const char* message) {
a61af66fc99e Initial load
duke
parents:
diff changeset
512 if (error != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
513 tty->print_cr("Error occurred during initialization of VM");
a61af66fc99e Initial load
duke
parents:
diff changeset
514 tty->print("%s", error);
a61af66fc99e Initial load
duke
parents:
diff changeset
515 if (message != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
516 tty->print_cr(": %s", message);
a61af66fc99e Initial load
duke
parents:
diff changeset
517 }
a61af66fc99e Initial load
duke
parents:
diff changeset
518 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
519 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
520 }
a61af66fc99e Initial load
duke
parents:
diff changeset
521 }
a61af66fc99e Initial load
duke
parents:
diff changeset
522 if (ShowMessageBoxOnError && WizardMode) {
a61af66fc99e Initial load
duke
parents:
diff changeset
523 fatal("Error occurred during initialization of VM");
a61af66fc99e Initial load
duke
parents:
diff changeset
524 }
a61af66fc99e Initial load
duke
parents:
diff changeset
525 }
a61af66fc99e Initial load
duke
parents:
diff changeset
526
a61af66fc99e Initial load
duke
parents:
diff changeset
527 void vm_exit_during_initialization(Handle exception) {
a61af66fc99e Initial load
duke
parents:
diff changeset
528 tty->print_cr("Error occurred during initialization of VM");
a61af66fc99e Initial load
duke
parents:
diff changeset
529 // If there are exceptions on this thread it must be cleared
a61af66fc99e Initial load
duke
parents:
diff changeset
530 // first and here. Any future calls to EXCEPTION_MARK requires
a61af66fc99e Initial load
duke
parents:
diff changeset
531 // that no pending exceptions exist.
a61af66fc99e Initial load
duke
parents:
diff changeset
532 Thread *THREAD = Thread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
533 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
534 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
535 }
a61af66fc99e Initial load
duke
parents:
diff changeset
536 java_lang_Throwable::print(exception, tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
537 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
538 java_lang_Throwable::print_stack_trace(exception(), tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
539 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
540 vm_notify_during_shutdown(NULL, NULL);
227
8d852b81e775 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 61
diff changeset
541
8d852b81e775 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 61
diff changeset
542 // Failure during initialization, we don't want to dump core
8d852b81e775 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 61
diff changeset
543 vm_abort(false);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
544 }
a61af66fc99e Initial load
duke
parents:
diff changeset
545
a61af66fc99e Initial load
duke
parents:
diff changeset
546 void vm_exit_during_initialization(symbolHandle ex, const char* message) {
a61af66fc99e Initial load
duke
parents:
diff changeset
547 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
548 vm_notify_during_shutdown(ex->as_C_string(), message);
227
8d852b81e775 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 61
diff changeset
549
8d852b81e775 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 61
diff changeset
550 // Failure during initialization, we don't want to dump core
8d852b81e775 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 61
diff changeset
551 vm_abort(false);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
552 }
a61af66fc99e Initial load
duke
parents:
diff changeset
553
a61af66fc99e Initial load
duke
parents:
diff changeset
554 void vm_exit_during_initialization(const char* error, const char* message) {
a61af66fc99e Initial load
duke
parents:
diff changeset
555 vm_notify_during_shutdown(error, message);
227
8d852b81e775 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 61
diff changeset
556
8d852b81e775 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 61
diff changeset
557 // Failure during initialization, we don't want to dump core
8d852b81e775 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 61
diff changeset
558 vm_abort(false);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
559 }
a61af66fc99e Initial load
duke
parents:
diff changeset
560
a61af66fc99e Initial load
duke
parents:
diff changeset
561 void vm_shutdown_during_initialization(const char* error, const char* message) {
a61af66fc99e Initial load
duke
parents:
diff changeset
562 vm_notify_during_shutdown(error, message);
a61af66fc99e Initial load
duke
parents:
diff changeset
563 vm_shutdown();
a61af66fc99e Initial load
duke
parents:
diff changeset
564 }
a61af66fc99e Initial load
duke
parents:
diff changeset
565
a61af66fc99e Initial load
duke
parents:
diff changeset
566 jdk_version_info JDK_Version::_version_info = {0};
a61af66fc99e Initial load
duke
parents:
diff changeset
567 bool JDK_Version::_pre_jdk16_version = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
568 int JDK_Version::_jdk_version = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
569
a61af66fc99e Initial load
duke
parents:
diff changeset
570 void JDK_Version::initialize() {
a61af66fc99e Initial load
duke
parents:
diff changeset
571 void *lib_handle = os::native_java_library();
a61af66fc99e Initial load
duke
parents:
diff changeset
572 jdk_version_info_fn_t func =
a61af66fc99e Initial load
duke
parents:
diff changeset
573 CAST_TO_FN_PTR(jdk_version_info_fn_t, hpi::dll_lookup(lib_handle, "JDK_GetVersionInfo0"));
a61af66fc99e Initial load
duke
parents:
diff changeset
574
a61af66fc99e Initial load
duke
parents:
diff changeset
575 if (func == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
576 // JDK older than 1.6
a61af66fc99e Initial load
duke
parents:
diff changeset
577 _pre_jdk16_version = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
578 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
579 }
a61af66fc99e Initial load
duke
parents:
diff changeset
580
a61af66fc99e Initial load
duke
parents:
diff changeset
581 if (func != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
582 (*func)(&_version_info, sizeof(_version_info));
a61af66fc99e Initial load
duke
parents:
diff changeset
583 }
a61af66fc99e Initial load
duke
parents:
diff changeset
584 if (jdk_major_version() == 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
585 _jdk_version = jdk_minor_version();
a61af66fc99e Initial load
duke
parents:
diff changeset
586 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
587 // If the release version string is changed to n.x.x (e.g. 7.0.0) in a future release
a61af66fc99e Initial load
duke
parents:
diff changeset
588 _jdk_version = jdk_major_version();
a61af66fc99e Initial load
duke
parents:
diff changeset
589 }
a61af66fc99e Initial load
duke
parents:
diff changeset
590 }
a61af66fc99e Initial load
duke
parents:
diff changeset
591
a61af66fc99e Initial load
duke
parents:
diff changeset
592 void JDK_Version_init() {
a61af66fc99e Initial load
duke
parents:
diff changeset
593 JDK_Version::initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
594 }