author | vlivanov |
Fri, 20 May 2016 18:05:09 +0300 | |
changeset 38697 | 110bb528423b |
parent 37248 | 11a660dbbb8e |
child 39274 | 940f0e8e9ec2 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
35914
aab83fe79386
8146616: VM exit path throws fatal error: Thread holding lock at safepoint that vm can block on: BeforeExit_lock
dholmes
parents:
35557
diff
changeset
|
2 |
* Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5542
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5542
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5542
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "classfile/classLoader.hpp" |
|
24426
0a69c8cdfca9
8038654: Separate SymbolTable and StringTable code
gziemski
parents:
24093
diff
changeset
|
27 |
#include "classfile/stringTable.hpp" |
7397 | 28 |
#include "classfile/systemDictionary.hpp" |
29 |
#include "code/codeCache.hpp" |
|
30 |
#include "compiler/compileBroker.hpp" |
|
31 |
#include "compiler/compilerOracle.hpp" |
|
30764 | 32 |
#include "gc/shared/genCollectedHeap.hpp" |
7397 | 33 |
#include "interpreter/bytecodeHistogram.hpp" |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
34 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
35 |
#include "jvmci/jvmciCompiler.hpp" |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
36 |
#include "jvmci/jvmciRuntime.hpp" |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
37 |
#endif |
35061 | 38 |
#include "logging/log.hpp" |
7397 | 39 |
#include "memory/oopFactory.hpp" |
37248 | 40 |
#include "memory/resourceArea.hpp" |
7397 | 41 |
#include "memory/universe.hpp" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13196
diff
changeset
|
42 |
#include "oops/constantPool.hpp" |
7397 | 43 |
#include "oops/generateOopMap.hpp" |
44 |
#include "oops/instanceKlass.hpp" |
|
45 |
#include "oops/instanceOop.hpp" |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13196
diff
changeset
|
46 |
#include "oops/method.hpp" |
7397 | 47 |
#include "oops/objArrayOop.hpp" |
48 |
#include "oops/oop.inline.hpp" |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7900
diff
changeset
|
49 |
#include "oops/symbol.hpp" |
7397 | 50 |
#include "prims/jvmtiExport.hpp" |
51 |
#include "runtime/arguments.hpp" |
|
52 |
#include "runtime/biasedLocking.hpp" |
|
53 |
#include "runtime/compilationPolicy.hpp" |
|
34230
b9c64b7c06c9
8141570: Fix Zero interpreter build for --disable-precompiled-headers
coleenp
parents:
33600
diff
changeset
|
54 |
#include "runtime/deoptimization.hpp" |
7397 | 55 |
#include "runtime/fprofiler.hpp" |
56 |
#include "runtime/init.hpp" |
|
57 |
#include "runtime/interfaceSupport.hpp" |
|
58 |
#include "runtime/java.hpp" |
|
59 |
#include "runtime/memprofiler.hpp" |
|
60 |
#include "runtime/sharedRuntime.hpp" |
|
61 |
#include "runtime/statSampler.hpp" |
|
22210
b0408ba029f6
8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents:
21095
diff
changeset
|
62 |
#include "runtime/sweeper.hpp" |
7397 | 63 |
#include "runtime/task.hpp" |
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
14289
diff
changeset
|
64 |
#include "runtime/thread.inline.hpp" |
7397 | 65 |
#include "runtime/timer.hpp" |
66 |
#include "runtime/vm_operations.hpp" |
|
13861
619cff4bfb8b
7188594: Print statistic collected by NMT with VM flag
zgu
parents:
13728
diff
changeset
|
67 |
#include "services/memTracker.hpp" |
36384 | 68 |
#include "trace/traceMacros.hpp" |
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
69 |
#include "trace/tracing.hpp" |
7397 | 70 |
#include "utilities/dtrace.hpp" |
71 |
#include "utilities/globalDefinitions.hpp" |
|
72 |
#include "utilities/histogram.hpp" |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
15202
diff
changeset
|
73 |
#include "utilities/macros.hpp" |
7397 | 74 |
#include "utilities/vmError.hpp" |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
15202
diff
changeset
|
75 |
#if INCLUDE_ALL_GCS |
30764 | 76 |
#include "gc/cms/concurrentMarkSweepThread.hpp" |
77 |
#include "gc/parallel/psScavenge.hpp" |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
15202
diff
changeset
|
78 |
#endif // INCLUDE_ALL_GCS |
7397 | 79 |
#ifdef COMPILER1 |
80 |
#include "c1/c1_Compiler.hpp" |
|
81 |
#include "c1/c1_Runtime1.hpp" |
|
82 |
#endif |
|
83 |
#ifdef COMPILER2 |
|
84 |
#include "code/compiledIC.hpp" |
|
85 |
#include "compiler/methodLiveness.hpp" |
|
86 |
#include "opto/compile.hpp" |
|
87 |
#include "opto/indexSet.hpp" |
|
88 |
#include "opto/runtime.hpp" |
|
89 |
#endif |
|
1 | 90 |
|
23526
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
91 |
GrowableArray<Method*>* collected_profiled_methods; |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
92 |
|
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
93 |
int compare_methods(Method** a, Method** b) { |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
94 |
// %%% there can be 32-bit overflow here |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
95 |
return ((*b)->invocation_count() + (*b)->compiled_invocation_count()) |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
96 |
- ((*a)->invocation_count() + (*a)->compiled_invocation_count()); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
97 |
} |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
98 |
|
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
99 |
void collect_profiled_methods(Method* m) { |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
100 |
Thread* thread = Thread::current(); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
101 |
// This HandleMark prevents a huge amount of handles from being added |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
102 |
// to the metadata_handles() array on the thread. |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
103 |
HandleMark hm(thread); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
104 |
methodHandle mh(thread, m); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
105 |
if ((m->method_data() != NULL) && |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
106 |
(PrintMethodData || CompilerOracle::should_print(mh))) { |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
107 |
collected_profiled_methods->push(m); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
108 |
} |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
109 |
} |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
110 |
|
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
111 |
void print_method_profiling_data() { |
24658
e41df2fc6e87
8042727: nsk/jdb/unwatch/unwatch001 crash in InstanceKlass::methods_do(void (*)(Method*))
coleenp
parents:
24429
diff
changeset
|
112 |
if (ProfileInterpreter COMPILER1_PRESENT(|| C1UpdateMethodData) && |
e41df2fc6e87
8042727: nsk/jdb/unwatch/unwatch001 crash in InstanceKlass::methods_do(void (*)(Method*))
coleenp
parents:
24429
diff
changeset
|
113 |
(PrintMethodData || CompilerOracle::should_print_methods())) { |
23526
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
114 |
ResourceMark rm; |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
115 |
HandleMark hm; |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
116 |
collected_profiled_methods = new GrowableArray<Method*>(1024); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
117 |
ClassLoaderDataGraph::methods_do(collect_profiled_methods); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
118 |
collected_profiled_methods->sort(&compare_methods); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
119 |
|
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
120 |
int count = collected_profiled_methods->length(); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
121 |
int total_size = 0; |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
122 |
if (count > 0) { |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
123 |
for (int index = 0; index < count; index++) { |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
124 |
Method* m = collected_profiled_methods->at(index); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
125 |
ttyLocker ttyl; |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
126 |
tty->print_cr("------------------------------------------------------------------------"); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
127 |
m->print_invocation_count(); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
128 |
tty->print_cr(" mdo size: %d bytes", m->method_data()->size_in_bytes()); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
129 |
tty->cr(); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
130 |
// Dump data on parameters if any |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
131 |
if (m->method_data() != NULL && m->method_data()->parameters_type_data() != NULL) { |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
132 |
tty->fill_to(2); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
133 |
m->method_data()->parameters_type_data()->print_data_on(tty); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
134 |
} |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
135 |
m->print_codes(); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
136 |
total_size += m->method_data()->size_in_bytes(); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
137 |
} |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
138 |
tty->print_cr("------------------------------------------------------------------------"); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
139 |
tty->print_cr("Total MDO size: %d bytes", total_size); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
140 |
} |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
141 |
} |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
142 |
} |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
143 |
|
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
144 |
|
1 | 145 |
#ifndef PRODUCT |
146 |
||
147 |
// Statistics printing (method invocation histogram) |
|
148 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13196
diff
changeset
|
149 |
GrowableArray<Method*>* collected_invoked_methods; |
1 | 150 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13196
diff
changeset
|
151 |
void collect_invoked_methods(Method* m) { |
1 | 152 |
if (m->invocation_count() + m->compiled_invocation_count() >= 1 ) { |
153 |
collected_invoked_methods->push(m); |
|
154 |
} |
|
155 |
} |
|
156 |
||
157 |
||
158 |
||
159 |
||
160 |
void print_method_invocation_histogram() { |
|
161 |
ResourceMark rm; |
|
162 |
HandleMark hm; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13196
diff
changeset
|
163 |
collected_invoked_methods = new GrowableArray<Method*>(1024); |
1 | 164 |
SystemDictionary::methods_do(collect_invoked_methods); |
165 |
collected_invoked_methods->sort(&compare_methods); |
|
166 |
// |
|
167 |
tty->cr(); |
|
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33063
diff
changeset
|
168 |
tty->print_cr("Histogram Over MethodOop Invocation Counters (cutoff = " INTX_FORMAT "):", MethodHistogramCutoff); |
1 | 169 |
tty->cr(); |
170 |
tty->print_cr("____Count_(I+C)____Method________________________Module_________________"); |
|
171 |
unsigned total = 0, int_total = 0, comp_total = 0, static_total = 0, final_total = 0, |
|
172 |
synch_total = 0, nativ_total = 0, acces_total = 0; |
|
173 |
for (int index = 0; index < collected_invoked_methods->length(); index++) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13196
diff
changeset
|
174 |
Method* m = collected_invoked_methods->at(index); |
1 | 175 |
int c = m->invocation_count() + m->compiled_invocation_count(); |
176 |
if (c >= MethodHistogramCutoff) m->print_invocation_count(); |
|
177 |
int_total += m->invocation_count(); |
|
178 |
comp_total += m->compiled_invocation_count(); |
|
179 |
if (m->is_final()) final_total += c; |
|
180 |
if (m->is_static()) static_total += c; |
|
181 |
if (m->is_synchronized()) synch_total += c; |
|
182 |
if (m->is_native()) nativ_total += c; |
|
183 |
if (m->is_accessor()) acces_total += c; |
|
184 |
} |
|
185 |
tty->cr(); |
|
186 |
total = int_total + comp_total; |
|
187 |
tty->print_cr("Invocations summary:"); |
|
188 |
tty->print_cr("\t%9d (%4.1f%%) interpreted", int_total, 100.0 * int_total / total); |
|
189 |
tty->print_cr("\t%9d (%4.1f%%) compiled", comp_total, 100.0 * comp_total / total); |
|
190 |
tty->print_cr("\t%9d (100%%) total", total); |
|
191 |
tty->print_cr("\t%9d (%4.1f%%) synchronized", synch_total, 100.0 * synch_total / total); |
|
192 |
tty->print_cr("\t%9d (%4.1f%%) final", final_total, 100.0 * final_total / total); |
|
193 |
tty->print_cr("\t%9d (%4.1f%%) static", static_total, 100.0 * static_total / total); |
|
194 |
tty->print_cr("\t%9d (%4.1f%%) native", nativ_total, 100.0 * nativ_total / total); |
|
195 |
tty->print_cr("\t%9d (%4.1f%%) accessor", acces_total, 100.0 * acces_total / total); |
|
196 |
tty->cr(); |
|
197 |
SharedRuntime::print_call_statistics(comp_total); |
|
198 |
} |
|
199 |
||
200 |
void print_bytecode_count() { |
|
201 |
if (CountBytecodes || TraceBytecodes || StopInterpreterAt) { |
|
202 |
tty->print_cr("[BytecodeCounter::counter_value = %d]", BytecodeCounter::counter_value()); |
|
203 |
} |
|
204 |
} |
|
205 |
||
206 |
AllocStats alloc_stats; |
|
207 |
||
208 |
||
209 |
||
210 |
// General statistics printing (profiling ...) |
|
211 |
void print_statistics() { |
|
212 |
#ifdef ASSERT |
|
213 |
||
214 |
if (CountRuntimeCalls) { |
|
215 |
extern Histogram *RuntimeHistogram; |
|
216 |
RuntimeHistogram->print(); |
|
217 |
} |
|
218 |
||
219 |
if (CountJNICalls) { |
|
220 |
extern Histogram *JNIHistogram; |
|
221 |
JNIHistogram->print(); |
|
222 |
} |
|
223 |
||
224 |
if (CountJVMCalls) { |
|
225 |
extern Histogram *JVMHistogram; |
|
226 |
JVMHistogram->print(); |
|
227 |
} |
|
228 |
||
229 |
#endif |
|
230 |
||
231 |
if (MemProfiling) { |
|
232 |
MemProfiler::disengage(); |
|
233 |
} |
|
234 |
||
235 |
if (CITime) { |
|
236 |
CompileBroker::print_times(); |
|
237 |
} |
|
238 |
||
239 |
#ifdef COMPILER1 |
|
240 |
if ((PrintC1Statistics || LogVMOutput || LogCompilation) && UseCompiler) { |
|
241 |
FlagSetting fs(DisplayVMOutput, DisplayVMOutput && PrintC1Statistics); |
|
242 |
Runtime1::print_statistics(); |
|
243 |
Deoptimization::print_statistics(); |
|
10254
406448a00c51
7071427: AdapterFingerPrint can hold 8 entries per int
never
parents:
9992
diff
changeset
|
244 |
SharedRuntime::print_statistics(); |
1 | 245 |
} |
246 |
#endif /* COMPILER1 */ |
|
247 |
||
248 |
#ifdef COMPILER2 |
|
249 |
if ((PrintOptoStatistics || LogVMOutput || LogCompilation) && UseCompiler) { |
|
250 |
FlagSetting fs(DisplayVMOutput, DisplayVMOutput && PrintOptoStatistics); |
|
251 |
Compile::print_statistics(); |
|
252 |
#ifndef COMPILER1 |
|
253 |
Deoptimization::print_statistics(); |
|
10254
406448a00c51
7071427: AdapterFingerPrint can hold 8 entries per int
never
parents:
9992
diff
changeset
|
254 |
SharedRuntime::print_statistics(); |
1 | 255 |
#endif //COMPILER1 |
256 |
os::print_statistics(); |
|
257 |
} |
|
258 |
||
23491 | 259 |
if (PrintLockStatistics || PrintPreciseBiasedLockingStatistics || PrintPreciseRTMLockingStatistics) { |
1 | 260 |
OptoRuntime::print_named_counters(); |
261 |
} |
|
262 |
||
263 |
if (TimeLivenessAnalysis) { |
|
264 |
MethodLiveness::print_times(); |
|
265 |
} |
|
266 |
#ifdef ASSERT |
|
267 |
if (CollectIndexSetStatistics) { |
|
268 |
IndexSet::print_statistics(); |
|
269 |
} |
|
270 |
#endif // ASSERT |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
271 |
#else |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
272 |
#ifdef INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
273 |
#ifndef COMPILER1 |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
274 |
if ((TraceDeoptimization || LogVMOutput || LogCompilation) && UseCompiler) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
275 |
FlagSetting fs(DisplayVMOutput, DisplayVMOutput && TraceDeoptimization); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
276 |
Deoptimization::print_statistics(); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
277 |
SharedRuntime::print_statistics(); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
278 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
279 |
#endif |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
280 |
#endif |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
281 |
#endif |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
282 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
283 |
if (PrintNMethodStatistics) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
284 |
nmethod::print_statistics(); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
285 |
} |
1 | 286 |
if (CountCompiledCalls) { |
287 |
print_method_invocation_histogram(); |
|
288 |
} |
|
23526
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
289 |
|
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
290 |
print_method_profiling_data(); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
291 |
|
1 | 292 |
if (TimeCompilationPolicy) { |
293 |
CompilationPolicy::policy()->print_time(); |
|
294 |
} |
|
295 |
if (TimeOopMap) { |
|
296 |
GenerateOopMap::print_time(); |
|
297 |
} |
|
298 |
if (ProfilerCheckIntervals) { |
|
299 |
PeriodicTask::print_intervals(); |
|
300 |
} |
|
301 |
if (PrintSymbolTableSizeHistogram) { |
|
302 |
SymbolTable::print_histogram(); |
|
303 |
} |
|
304 |
if (CountBytecodes || TraceBytecodes || StopInterpreterAt) { |
|
305 |
BytecodeCounter::print(); |
|
306 |
} |
|
307 |
if (PrintBytecodePairHistogram) { |
|
308 |
BytecodePairHistogram::print(); |
|
309 |
} |
|
310 |
||
311 |
if (PrintCodeCache) { |
|
312 |
MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
|
313 |
CodeCache::print(); |
|
314 |
} |
|
315 |
||
22210
b0408ba029f6
8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents:
21095
diff
changeset
|
316 |
if (PrintMethodFlushingStatistics) { |
b0408ba029f6
8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents:
21095
diff
changeset
|
317 |
NMethodSweeper::print(); |
b0408ba029f6
8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents:
21095
diff
changeset
|
318 |
} |
b0408ba029f6
8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents:
21095
diff
changeset
|
319 |
|
1 | 320 |
if (PrintCodeCache2) { |
321 |
MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
|
322 |
CodeCache::print_internals(); |
|
323 |
} |
|
324 |
||
325 |
if (PrintVtableStats) { |
|
326 |
klassVtable::print_statistics(); |
|
327 |
klassItable::print_statistics(); |
|
328 |
} |
|
329 |
if (VerifyOops) { |
|
330 |
tty->print_cr("+VerifyOops count: %d", StubRoutines::verify_oop_count()); |
|
331 |
} |
|
332 |
||
333 |
print_bytecode_count(); |
|
8320 | 334 |
if (PrintMallocStatistics) { |
1 | 335 |
tty->print("allocation stats: "); |
336 |
alloc_stats.print(); |
|
337 |
tty->cr(); |
|
338 |
} |
|
339 |
||
340 |
if (PrintSystemDictionaryAtExit) { |
|
341 |
SystemDictionary::print(); |
|
342 |
} |
|
343 |
||
31790 | 344 |
if (LogTouchedMethods && PrintTouchedMethodsAtExit) { |
345 |
Method::print_touched_methods(tty); |
|
346 |
} |
|
347 |
||
1 | 348 |
if (PrintBiasedLockingStatistics) { |
349 |
BiasedLocking::print_counters(); |
|
350 |
} |
|
351 |
||
13861
619cff4bfb8b
7188594: Print statistic collected by NMT with VM flag
zgu
parents:
13728
diff
changeset
|
352 |
// Native memory tracking data |
619cff4bfb8b
7188594: Print statistic collected by NMT with VM flag
zgu
parents:
13728
diff
changeset
|
353 |
if (PrintNMTStatistics) { |
25946 | 354 |
MemTracker::final_report(tty); |
13861
619cff4bfb8b
7188594: Print statistic collected by NMT with VM flag
zgu
parents:
13728
diff
changeset
|
355 |
} |
1 | 356 |
} |
357 |
||
358 |
#else // PRODUCT MODE STATISTICS |
|
359 |
||
360 |
void print_statistics() { |
|
361 |
||
23526
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
362 |
if (PrintMethodData) { |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
363 |
print_method_profiling_data(); |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
364 |
} |
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23491
diff
changeset
|
365 |
|
1 | 366 |
if (CITime) { |
367 |
CompileBroker::print_times(); |
|
368 |
} |
|
15201
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14583
diff
changeset
|
369 |
|
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14583
diff
changeset
|
370 |
if (PrintCodeCache) { |
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14583
diff
changeset
|
371 |
MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14583
diff
changeset
|
372 |
CodeCache::print(); |
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14583
diff
changeset
|
373 |
} |
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14583
diff
changeset
|
374 |
|
22210
b0408ba029f6
8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents:
21095
diff
changeset
|
375 |
if (PrintMethodFlushingStatistics) { |
b0408ba029f6
8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents:
21095
diff
changeset
|
376 |
NMethodSweeper::print(); |
b0408ba029f6
8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents:
21095
diff
changeset
|
377 |
} |
b0408ba029f6
8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents:
21095
diff
changeset
|
378 |
|
1 | 379 |
#ifdef COMPILER2 |
23491 | 380 |
if (PrintPreciseBiasedLockingStatistics || PrintPreciseRTMLockingStatistics) { |
1 | 381 |
OptoRuntime::print_named_counters(); |
382 |
} |
|
383 |
#endif |
|
384 |
if (PrintBiasedLockingStatistics) { |
|
385 |
BiasedLocking::print_counters(); |
|
386 |
} |
|
13861
619cff4bfb8b
7188594: Print statistic collected by NMT with VM flag
zgu
parents:
13728
diff
changeset
|
387 |
|
619cff4bfb8b
7188594: Print statistic collected by NMT with VM flag
zgu
parents:
13728
diff
changeset
|
388 |
// Native memory tracking data |
619cff4bfb8b
7188594: Print statistic collected by NMT with VM flag
zgu
parents:
13728
diff
changeset
|
389 |
if (PrintNMTStatistics) { |
25946 | 390 |
MemTracker::final_report(tty); |
13861
619cff4bfb8b
7188594: Print statistic collected by NMT with VM flag
zgu
parents:
13728
diff
changeset
|
391 |
} |
31790 | 392 |
|
393 |
if (LogTouchedMethods && PrintTouchedMethodsAtExit) { |
|
394 |
Method::print_touched_methods(tty); |
|
395 |
} |
|
1 | 396 |
} |
397 |
||
398 |
#endif |
|
399 |
||
400 |
// Note: before_exit() can be executed only once, if more than one threads |
|
401 |
// are trying to shutdown the VM at the same time, only one thread |
|
402 |
// can run before_exit() and all other threads must wait. |
|
35143
33daaea9d5c2
8145435: [JVMCI] some tests on Windows fail with: assert(!thread->is_Java_thread()) failed: must not be java thread
twisti
parents:
35061
diff
changeset
|
403 |
void before_exit(JavaThread* thread) { |
1 | 404 |
#define BEFORE_EXIT_NOT_RUN 0 |
405 |
#define BEFORE_EXIT_RUNNING 1 |
|
406 |
#define BEFORE_EXIT_DONE 2 |
|
407 |
static jint volatile _before_exit_status = BEFORE_EXIT_NOT_RUN; |
|
408 |
||
409 |
// Note: don't use a Mutex to guard the entire before_exit(), as |
|
410 |
// JVMTI post_thread_end_event and post_vm_death_event will run native code. |
|
411 |
// A CAS or OSMutex would work just fine but then we need to manipulate |
|
412 |
// thread state for Safepoint. Here we use Monitor wait() and notify_all() |
|
413 |
// for synchronization. |
|
414 |
{ MutexLocker ml(BeforeExit_lock); |
|
415 |
switch (_before_exit_status) { |
|
416 |
case BEFORE_EXIT_NOT_RUN: |
|
417 |
_before_exit_status = BEFORE_EXIT_RUNNING; |
|
418 |
break; |
|
419 |
case BEFORE_EXIT_RUNNING: |
|
420 |
while (_before_exit_status == BEFORE_EXIT_RUNNING) { |
|
421 |
BeforeExit_lock->wait(); |
|
422 |
} |
|
423 |
assert(_before_exit_status == BEFORE_EXIT_DONE, "invalid state"); |
|
424 |
return; |
|
425 |
case BEFORE_EXIT_DONE: |
|
35914
aab83fe79386
8146616: VM exit path throws fatal error: Thread holding lock at safepoint that vm can block on: BeforeExit_lock
dholmes
parents:
35557
diff
changeset
|
426 |
// need block to avoid SS compiler bug |
aab83fe79386
8146616: VM exit path throws fatal error: Thread holding lock at safepoint that vm can block on: BeforeExit_lock
dholmes
parents:
35557
diff
changeset
|
427 |
{ |
aab83fe79386
8146616: VM exit path throws fatal error: Thread holding lock at safepoint that vm can block on: BeforeExit_lock
dholmes
parents:
35557
diff
changeset
|
428 |
return; |
aab83fe79386
8146616: VM exit path throws fatal error: Thread holding lock at safepoint that vm can block on: BeforeExit_lock
dholmes
parents:
35557
diff
changeset
|
429 |
} |
1 | 430 |
} |
431 |
} |
|
432 |
||
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
433 |
#if INCLUDE_JVMCI |
35143
33daaea9d5c2
8145435: [JVMCI] some tests on Windows fail with: assert(!thread->is_Java_thread()) failed: must not be java thread
twisti
parents:
35061
diff
changeset
|
434 |
// We are not using CATCH here because we want the exit to continue normally. |
33daaea9d5c2
8145435: [JVMCI] some tests on Windows fail with: assert(!thread->is_Java_thread()) failed: must not be java thread
twisti
parents:
35061
diff
changeset
|
435 |
Thread* THREAD = thread; |
33daaea9d5c2
8145435: [JVMCI] some tests on Windows fail with: assert(!thread->is_Java_thread()) failed: must not be java thread
twisti
parents:
35061
diff
changeset
|
436 |
JVMCIRuntime::shutdown(THREAD); |
33daaea9d5c2
8145435: [JVMCI] some tests on Windows fail with: assert(!thread->is_Java_thread()) failed: must not be java thread
twisti
parents:
35061
diff
changeset
|
437 |
if (HAS_PENDING_EXCEPTION) { |
33daaea9d5c2
8145435: [JVMCI] some tests on Windows fail with: assert(!thread->is_Java_thread()) failed: must not be java thread
twisti
parents:
35061
diff
changeset
|
438 |
Handle exception(THREAD, PENDING_EXCEPTION); |
33daaea9d5c2
8145435: [JVMCI] some tests on Windows fail with: assert(!thread->is_Java_thread()) failed: must not be java thread
twisti
parents:
35061
diff
changeset
|
439 |
CLEAR_PENDING_EXCEPTION; |
35557
029dcb9bfa8b
8146246: JVMCICompiler::abort_on_pending_exception: assert(!thread->owns_locks()) failed: must release all locks when leaving VM
twisti
parents:
35143
diff
changeset
|
440 |
java_lang_Throwable::java_printStackTrace(exception, THREAD); |
35143
33daaea9d5c2
8145435: [JVMCI] some tests on Windows fail with: assert(!thread->is_Java_thread()) failed: must not be java thread
twisti
parents:
35061
diff
changeset
|
441 |
} |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
442 |
#endif |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
33063
diff
changeset
|
443 |
|
1 | 444 |
// Hang forever on exit if we're reporting an error. |
445 |
if (ShowMessageBoxOnError && is_error_reported()) { |
|
446 |
os::infinite_sleep(); |
|
447 |
} |
|
448 |
||
29321 | 449 |
// Stop the WatcherThread. We do this before disenrolling various |
450 |
// PeriodicTasks to reduce the likelihood of races. |
|
451 |
if (PeriodicTask::num_tasks() > 0) { |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5924
diff
changeset
|
452 |
WatcherThread::stop(); |
29321 | 453 |
} |
1 | 454 |
|
455 |
// Print statistics gathered (profiling ...) |
|
456 |
if (Arguments::has_profile()) { |
|
457 |
FlatProfiler::disengage(); |
|
458 |
FlatProfiler::print(10); |
|
459 |
} |
|
460 |
||
461 |
// shut down the StatSampler task |
|
462 |
StatSampler::disengage(); |
|
463 |
StatSampler::destroy(); |
|
464 |
||
25070 | 465 |
// Stop concurrent GC threads |
466 |
Universe::heap()->stop(); |
|
1 | 467 |
|
468 |
// Print GC/heap related information. |
|
37242 | 469 |
Log(gc, heap, exit) log; |
35061 | 470 |
if (log.is_info()) { |
471 |
ResourceMark rm; |
|
472 |
Universe::print_on(log.info_stream()); |
|
473 |
if (log.is_trace()) { |
|
474 |
ClassLoaderDataGraph::dump_on(log.trace_stream()); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13196
diff
changeset
|
475 |
} |
1 | 476 |
} |
35061 | 477 |
AdaptiveSizePolicyOutput::print(); |
1 | 478 |
|
479 |
if (PrintBytecodeHistogram) { |
|
480 |
BytecodeHistogram::print(); |
|
481 |
} |
|
482 |
||
483 |
if (JvmtiExport::should_post_thread_life()) { |
|
484 |
JvmtiExport::post_thread_end(thread); |
|
485 |
} |
|
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
486 |
|
18025 | 487 |
|
488 |
EventThreadEnd event; |
|
489 |
if (event.should_commit()) { |
|
36384 | 490 |
event.set_thread(THREAD_TRACE_ID(thread)); |
18025 | 491 |
event.commit(); |
492 |
} |
|
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
493 |
|
1 | 494 |
// Always call even when there are not JVMTI environments yet, since environments |
495 |
// may be attached late and JVMTI must track phases of VM execution |
|
496 |
JvmtiExport::post_vm_death(); |
|
497 |
Threads::shutdown_vm_agents(); |
|
498 |
||
499 |
// Terminate the signal thread |
|
500 |
// Note: we don't wait until it actually dies. |
|
501 |
os::terminate_signal_thread(); |
|
502 |
||
503 |
print_statistics(); |
|
504 |
Universe::heap()->print_tracing_info(); |
|
505 |
||
506 |
{ MutexLocker ml(BeforeExit_lock); |
|
507 |
_before_exit_status = BEFORE_EXIT_DONE; |
|
508 |
BeforeExit_lock->notify_all(); |
|
509 |
} |
|
510 |
||
20053
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18687
diff
changeset
|
511 |
if (VerifyStringTableAtExit) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18687
diff
changeset
|
512 |
int fail_cnt = 0; |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18687
diff
changeset
|
513 |
{ |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18687
diff
changeset
|
514 |
MutexLocker ml(StringTable_lock); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18687
diff
changeset
|
515 |
fail_cnt = StringTable::verify_and_compare_entries(); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18687
diff
changeset
|
516 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18687
diff
changeset
|
517 |
|
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18687
diff
changeset
|
518 |
if (fail_cnt != 0) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18687
diff
changeset
|
519 |
tty->print_cr("ERROR: fail_cnt=%d", fail_cnt); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18687
diff
changeset
|
520 |
guarantee(fail_cnt == 0, "unexpected StringTable verification failures"); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18687
diff
changeset
|
521 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18687
diff
changeset
|
522 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18687
diff
changeset
|
523 |
|
1 | 524 |
#undef BEFORE_EXIT_NOT_RUN |
525 |
#undef BEFORE_EXIT_RUNNING |
|
526 |
#undef BEFORE_EXIT_DONE |
|
527 |
} |
|
528 |
||
529 |
void vm_exit(int code) { |
|
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
34230
diff
changeset
|
530 |
Thread* thread = |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
34230
diff
changeset
|
531 |
ThreadLocalStorage::is_initialized() ? Thread::current_or_null() : NULL; |
1 | 532 |
if (thread == NULL) { |
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
34230
diff
changeset
|
533 |
// very early initialization failure -- just exit |
1 | 534 |
vm_direct_exit(code); |
535 |
} |
|
536 |
||
537 |
if (VMThread::vm_thread() != NULL) { |
|
538 |
// Fire off a VM_Exit operation to bring VM to a safepoint and exit |
|
539 |
VM_Exit op(code); |
|
540 |
if (thread->is_Java_thread()) |
|
541 |
((JavaThread*)thread)->set_thread_state(_thread_in_vm); |
|
542 |
VMThread::execute(&op); |
|
543 |
// should never reach here; but in case something wrong with VM Thread. |
|
544 |
vm_direct_exit(code); |
|
545 |
} else { |
|
546 |
// VM thread is gone, just exit |
|
547 |
vm_direct_exit(code); |
|
548 |
} |
|
549 |
ShouldNotReachHere(); |
|
550 |
} |
|
551 |
||
552 |
void notify_vm_shutdown() { |
|
553 |
// For now, just a dtrace probe. |
|
10739 | 554 |
HOTSPOT_VM_SHUTDOWN(); |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22210
diff
changeset
|
555 |
HS_DTRACE_WORKAROUND_TAIL_CALL_BUG(); |
1 | 556 |
} |
557 |
||
558 |
void vm_direct_exit(int code) { |
|
559 |
notify_vm_shutdown(); |
|
8476
7e34c2d4cf9b
7022037: Pause when exiting if debugger is attached on windows
sla
parents:
8107
diff
changeset
|
560 |
os::wait_for_keypress_at_exit(); |
26682
f339669ba825
8057744: (process) Synchronize exiting of threads and process [win]
igerasim
parents:
26295
diff
changeset
|
561 |
os::exit(code); |
1 | 562 |
} |
563 |
||
564 |
void vm_perform_shutdown_actions() { |
|
565 |
// Warning: do not call 'exit_globals()' here. All threads are still running. |
|
566 |
// Calling 'exit_globals()' will disable thread-local-storage and cause all |
|
567 |
// kinds of assertions to trigger in debug mode. |
|
568 |
if (is_init_completed()) { |
|
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
34230
diff
changeset
|
569 |
Thread* thread = Thread::current_or_null(); |
7720
8283870fc280
6583275: Hotspot crash in vm_perform_shutdown_actions due to uninitialized TLS during out of memory handling
coleenp
parents:
7397
diff
changeset
|
570 |
if (thread != NULL && thread->is_Java_thread()) { |
1 | 571 |
// We are leaving the VM, set state to native (in case any OS exit |
572 |
// handlers call back to the VM) |
|
573 |
JavaThread* jt = (JavaThread*)thread; |
|
574 |
// Must always be walkable or have no last_Java_frame when in |
|
575 |
// thread_in_native |
|
576 |
jt->frame_anchor()->make_walkable(jt); |
|
577 |
jt->set_thread_state(_thread_in_native); |
|
578 |
} |
|
579 |
} |
|
580 |
notify_vm_shutdown(); |
|
581 |
} |
|
582 |
||
583 |
void vm_shutdown() |
|
584 |
{ |
|
585 |
vm_perform_shutdown_actions(); |
|
8476
7e34c2d4cf9b
7022037: Pause when exiting if debugger is attached on windows
sla
parents:
8107
diff
changeset
|
586 |
os::wait_for_keypress_at_exit(); |
1 | 587 |
os::shutdown(); |
588 |
} |
|
589 |
||
773
01daf7c809b1
6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents:
234
diff
changeset
|
590 |
void vm_abort(bool dump_core) { |
1 | 591 |
vm_perform_shutdown_actions(); |
8476
7e34c2d4cf9b
7022037: Pause when exiting if debugger is attached on windows
sla
parents:
8107
diff
changeset
|
592 |
os::wait_for_keypress_at_exit(); |
33600
922600753f71
8139801: Error message from validation check has wrong order on Windows
sangheki
parents:
33198
diff
changeset
|
593 |
|
922600753f71
8139801: Error message from validation check has wrong order on Windows
sangheki
parents:
33198
diff
changeset
|
594 |
// Flush stdout and stderr before abort. |
922600753f71
8139801: Error message from validation check has wrong order on Windows
sangheki
parents:
33198
diff
changeset
|
595 |
fflush(stdout); |
922600753f71
8139801: Error message from validation check has wrong order on Windows
sangheki
parents:
33198
diff
changeset
|
596 |
fflush(stderr); |
922600753f71
8139801: Error message from validation check has wrong order on Windows
sangheki
parents:
33198
diff
changeset
|
597 |
|
773
01daf7c809b1
6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents:
234
diff
changeset
|
598 |
os::abort(dump_core); |
1 | 599 |
ShouldNotReachHere(); |
600 |
} |
|
601 |
||
602 |
void vm_notify_during_shutdown(const char* error, const char* message) { |
|
603 |
if (error != NULL) { |
|
604 |
tty->print_cr("Error occurred during initialization of VM"); |
|
605 |
tty->print("%s", error); |
|
606 |
if (message != NULL) { |
|
607 |
tty->print_cr(": %s", message); |
|
608 |
} |
|
609 |
else { |
|
610 |
tty->cr(); |
|
611 |
} |
|
612 |
} |
|
613 |
if (ShowMessageBoxOnError && WizardMode) { |
|
614 |
fatal("Error occurred during initialization of VM"); |
|
615 |
} |
|
616 |
} |
|
617 |
||
618 |
void vm_exit_during_initialization(Handle exception) { |
|
619 |
tty->print_cr("Error occurred during initialization of VM"); |
|
620 |
// If there are exceptions on this thread it must be cleared |
|
621 |
// first and here. Any future calls to EXCEPTION_MARK requires |
|
622 |
// that no pending exceptions exist. |
|
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
34230
diff
changeset
|
623 |
Thread *THREAD = Thread::current(); // can't be NULL |
1 | 624 |
if (HAS_PENDING_EXCEPTION) { |
625 |
CLEAR_PENDING_EXCEPTION; |
|
626 |
} |
|
35143
33daaea9d5c2
8145435: [JVMCI] some tests on Windows fail with: assert(!thread->is_Java_thread()) failed: must not be java thread
twisti
parents:
35061
diff
changeset
|
627 |
java_lang_Throwable::print_stack_trace(exception, tty); |
1 | 628 |
tty->cr(); |
629 |
vm_notify_during_shutdown(NULL, NULL); |
|
773
01daf7c809b1
6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents:
234
diff
changeset
|
630 |
|
01daf7c809b1
6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents:
234
diff
changeset
|
631 |
// Failure during initialization, we don't want to dump core |
01daf7c809b1
6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents:
234
diff
changeset
|
632 |
vm_abort(false); |
1 | 633 |
} |
634 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7900
diff
changeset
|
635 |
void vm_exit_during_initialization(Symbol* ex, const char* message) { |
1 | 636 |
ResourceMark rm; |
637 |
vm_notify_during_shutdown(ex->as_C_string(), message); |
|
773
01daf7c809b1
6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents:
234
diff
changeset
|
638 |
|
01daf7c809b1
6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents:
234
diff
changeset
|
639 |
// Failure during initialization, we don't want to dump core |
01daf7c809b1
6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents:
234
diff
changeset
|
640 |
vm_abort(false); |
1 | 641 |
} |
642 |
||
643 |
void vm_exit_during_initialization(const char* error, const char* message) { |
|
644 |
vm_notify_during_shutdown(error, message); |
|
773
01daf7c809b1
6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents:
234
diff
changeset
|
645 |
|
01daf7c809b1
6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents:
234
diff
changeset
|
646 |
// Failure during initialization, we don't want to dump core |
01daf7c809b1
6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents:
234
diff
changeset
|
647 |
vm_abort(false); |
1 | 648 |
} |
649 |
||
650 |
void vm_shutdown_during_initialization(const char* error, const char* message) { |
|
651 |
vm_notify_during_shutdown(error, message); |
|
652 |
vm_shutdown(); |
|
653 |
} |
|
654 |
||
950 | 655 |
JDK_Version JDK_Version::_current; |
13106 | 656 |
const char* JDK_Version::_runtime_name; |
14289
aec758622b4b
8002078: hs_err_pid file should report full JDK version string
sla
parents:
13861
diff
changeset
|
657 |
const char* JDK_Version::_runtime_version; |
1 | 658 |
|
659 |
void JDK_Version::initialize() { |
|
950 | 660 |
jdk_version_info info; |
661 |
assert(!_current.is_valid(), "Don't initialize twice"); |
|
662 |
||
1 | 663 |
void *lib_handle = os::native_java_library(); |
950 | 664 |
jdk_version_info_fn_t func = CAST_TO_FN_PTR(jdk_version_info_fn_t, |
665 |
os::dll_lookup(lib_handle, "JDK_GetVersionInfo0")); |
|
1 | 666 |
|
33959
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
667 |
assert(func != NULL, "Support for JDK 1.5 or older has been removed after JEP-223"); |
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
668 |
|
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
669 |
(*func)(&info, sizeof(info)); |
1 | 670 |
|
33959
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
671 |
int major = JDK_VERSION_MAJOR(info.jdk_version); |
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
672 |
int minor = JDK_VERSION_MINOR(info.jdk_version); |
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
673 |
int security = JDK_VERSION_SECURITY(info.jdk_version); |
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
674 |
int build = JDK_VERSION_BUILD(info.jdk_version); |
1 | 675 |
|
33959
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
676 |
// Incompatible with pre-4243978 JDK. |
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
677 |
if (info.pending_list_uses_discovered_field == 0) { |
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
678 |
vm_exit_during_initialization( |
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
679 |
"Incompatible JDK is not using Reference.discovered field for pending list"); |
1 | 680 |
} |
33959
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
681 |
_current = JDK_Version(major, minor, security, info.patch_version, build, |
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
682 |
info.thread_park_blocker == 1, |
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
683 |
info.post_vm_init_hook_enabled == 1); |
1 | 684 |
} |
685 |
||
686 |
void JDK_Version_init() { |
|
687 |
JDK_Version::initialize(); |
|
688 |
} |
|
950 | 689 |
|
690 |
static int64_t encode_jdk_version(const JDK_Version& v) { |
|
691 |
return |
|
33959
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
692 |
((int64_t)v.major_version() << (BitsPerByte * 4)) | |
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
693 |
((int64_t)v.minor_version() << (BitsPerByte * 3)) | |
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
694 |
((int64_t)v.security_version() << (BitsPerByte * 2)) | |
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
695 |
((int64_t)v.patch_version() << (BitsPerByte * 1)) | |
950 | 696 |
((int64_t)v.build_number() << (BitsPerByte * 0)); |
697 |
} |
|
698 |
||
699 |
int JDK_Version::compare(const JDK_Version& other) const { |
|
700 |
assert(is_valid() && other.is_valid(), "Invalid version (uninitialized?)"); |
|
33959
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
701 |
uint64_t e = encode_jdk_version(*this); |
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
702 |
uint64_t o = encode_jdk_version(other); |
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
703 |
return (e > o) ? 1 : ((e == o) ? 0 : -1); |
950 | 704 |
} |
705 |
||
706 |
void JDK_Version::to_string(char* buffer, size_t buflen) const { |
|
27471 | 707 |
assert(buffer && buflen > 0, "call with useful buffer"); |
950 | 708 |
size_t index = 0; |
27471 | 709 |
|
950 | 710 |
if (!is_valid()) { |
711 |
jio_snprintf(buffer, buflen, "%s", "(uninitialized)"); |
|
712 |
} else { |
|
27471 | 713 |
int rc = jio_snprintf( |
950 | 714 |
&buffer[index], buflen - index, "%d.%d", _major, _minor); |
27471 | 715 |
if (rc == -1) return; |
716 |
index += rc; |
|
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30764
diff
changeset
|
717 |
if (_security > 0) { |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30764
diff
changeset
|
718 |
rc = jio_snprintf(&buffer[index], buflen - index, ".%d", _security); |
950 | 719 |
} |
33959
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
720 |
if (_patch > 0) { |
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
721 |
rc = jio_snprintf(&buffer[index], buflen - index, ".%d", _patch); |
27471 | 722 |
if (rc == -1) return; |
723 |
index += rc; |
|
950 | 724 |
} |
725 |
if (_build > 0) { |
|
33959
36f534ca18c0
8087202: Add support for PATCH field and remove unused fields of new version string
amurillo
parents:
33957
diff
changeset
|
726 |
rc = jio_snprintf(&buffer[index], buflen - index, "+%d", _build); |
27471 | 727 |
if (rc == -1) return; |
728 |
index += rc; |
|
950 | 729 |
} |
730 |
} |
|
731 |
} |