src/share/vm/runtime/java.cpp

Thu, 24 Nov 2016 11:27:57 +0100

author
tschatzl
date
Thu, 24 Nov 2016 11:27:57 +0100
changeset 9982
72053ed6f8d4
parent 9896
1b8c45b8216a
child 9931
fd44df5e3bc3
permissions
-rw-r--r--

8057003: Large reference arrays cause extremely long synchronization times
Summary: Slice large object arrays into parts so that the synchronization of marking threads with an STW pause request does not take long.
Reviewed-by: ehelin, pliden
Contributed-by: maoliang.ml@alibaba-inc.com

duke@435 1 /*
shshahma@8584 2 * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "classfile/classLoader.hpp"
stefank@2314 27 #include "classfile/symbolTable.hpp"
stefank@2314 28 #include "classfile/systemDictionary.hpp"
stefank@2314 29 #include "code/codeCache.hpp"
stefank@2314 30 #include "compiler/compileBroker.hpp"
stefank@2314 31 #include "compiler/compilerOracle.hpp"
stefank@2314 32 #include "interpreter/bytecodeHistogram.hpp"
apetushkov@9858 33 #include "jfr/jfrEvents.hpp"
apetushkov@9858 34 #include "jfr/support/jfrThreadId.hpp"
stefank@2314 35 #include "memory/genCollectedHeap.hpp"
stefank@2314 36 #include "memory/oopFactory.hpp"
stefank@2314 37 #include "memory/universe.hpp"
coleenp@4037 38 #include "oops/constantPool.hpp"
stefank@2314 39 #include "oops/generateOopMap.hpp"
stefank@2314 40 #include "oops/instanceKlass.hpp"
stefank@2314 41 #include "oops/instanceOop.hpp"
coleenp@4037 42 #include "oops/method.hpp"
stefank@2314 43 #include "oops/objArrayOop.hpp"
stefank@2314 44 #include "oops/oop.inline.hpp"
coleenp@2497 45 #include "oops/symbol.hpp"
stefank@2314 46 #include "prims/jvmtiExport.hpp"
stefank@2314 47 #include "runtime/arguments.hpp"
stefank@2314 48 #include "runtime/biasedLocking.hpp"
stefank@2314 49 #include "runtime/compilationPolicy.hpp"
andrew@9744 50 #include "runtime/deoptimization.hpp"
stefank@2314 51 #include "runtime/fprofiler.hpp"
stefank@2314 52 #include "runtime/init.hpp"
stefank@2314 53 #include "runtime/interfaceSupport.hpp"
stefank@2314 54 #include "runtime/java.hpp"
stefank@2314 55 #include "runtime/memprofiler.hpp"
stefank@2314 56 #include "runtime/sharedRuntime.hpp"
stefank@2314 57 #include "runtime/statSampler.hpp"
anoll@6207 58 #include "runtime/sweeper.hpp"
stefank@2314 59 #include "runtime/task.hpp"
stefank@4299 60 #include "runtime/thread.inline.hpp"
stefank@2314 61 #include "runtime/timer.hpp"
stefank@2314 62 #include "runtime/vm_operations.hpp"
zgu@4081 63 #include "services/memTracker.hpp"
stefank@2314 64 #include "utilities/dtrace.hpp"
stefank@2314 65 #include "utilities/globalDefinitions.hpp"
stefank@2314 66 #include "utilities/histogram.hpp"
jprovino@4542 67 #include "utilities/macros.hpp"
stefank@2314 68 #include "utilities/vmError.hpp"
stefank@2314 69 #ifdef TARGET_ARCH_x86
stefank@2314 70 # include "vm_version_x86.hpp"
stefank@2314 71 #endif
stefank@2314 72 #ifdef TARGET_ARCH_sparc
stefank@2314 73 # include "vm_version_sparc.hpp"
stefank@2314 74 #endif
stefank@2314 75 #ifdef TARGET_ARCH_zero
stefank@2314 76 # include "vm_version_zero.hpp"
stefank@2314 77 #endif
bobv@2508 78 #ifdef TARGET_ARCH_arm
bobv@2508 79 # include "vm_version_arm.hpp"
bobv@2508 80 #endif
bobv@2508 81 #ifdef TARGET_ARCH_ppc
bobv@2508 82 # include "vm_version_ppc.hpp"
bobv@2508 83 #endif
jprovino@4542 84 #if INCLUDE_ALL_GCS
stefank@2314 85 #include "gc_implementation/concurrentMarkSweep/concurrentMarkSweepThread.hpp"
stefank@2314 86 #include "gc_implementation/parallelScavenge/psScavenge.hpp"
stefank@2314 87 #include "gc_implementation/parallelScavenge/psScavenge.inline.hpp"
jprovino@4542 88 #endif // INCLUDE_ALL_GCS
stefank@2314 89 #ifdef COMPILER1
stefank@2314 90 #include "c1/c1_Compiler.hpp"
stefank@2314 91 #include "c1/c1_Runtime1.hpp"
stefank@2314 92 #endif
stefank@2314 93 #ifdef COMPILER2
stefank@2314 94 #include "code/compiledIC.hpp"
stefank@2314 95 #include "compiler/methodLiveness.hpp"
stefank@2314 96 #include "opto/compile.hpp"
stefank@2314 97 #include "opto/indexSet.hpp"
stefank@2314 98 #include "opto/runtime.hpp"
stefank@2314 99 #endif
apetushkov@9858 100 #if INCLUDE_JFR
apetushkov@9858 101 #include "jfr/jfr.hpp"
apetushkov@9858 102 #endif
duke@435 103
dcubed@3202 104 #ifndef USDT2
duke@435 105 HS_DTRACE_PROBE_DECL(hotspot, vm__shutdown);
dcubed@3202 106 #endif /* !USDT2 */
duke@435 107
duke@435 108 #ifndef PRODUCT
duke@435 109
duke@435 110 // Statistics printing (method invocation histogram)
duke@435 111
coleenp@4037 112 GrowableArray<Method*>* collected_invoked_methods;
duke@435 113
coleenp@4037 114 void collect_invoked_methods(Method* m) {
duke@435 115 if (m->invocation_count() + m->compiled_invocation_count() >= 1 ) {
duke@435 116 collected_invoked_methods->push(m);
duke@435 117 }
duke@435 118 }
duke@435 119
drchase@6680 120 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
duke@435 121
coleenp@4037 122 GrowableArray<Method*>* collected_profiled_methods;
duke@435 123
coleenp@4037 124 void collect_profiled_methods(Method* m) {
coleenp@4037 125 Thread* thread = Thread::current();
coleenp@4037 126 // This HandleMark prevents a huge amount of handles from being added
coleenp@4037 127 // to the metadata_handles() array on the thread.
coleenp@4037 128 HandleMark hm(thread);
coleenp@4037 129 methodHandle mh(thread, m);
duke@435 130 if ((m->method_data() != NULL) &&
duke@435 131 (PrintMethodData || CompilerOracle::should_print(mh))) {
duke@435 132 collected_profiled_methods->push(m);
duke@435 133 }
duke@435 134 }
duke@435 135
duke@435 136
coleenp@4037 137 int compare_methods(Method** a, Method** b) {
duke@435 138 // %%% there can be 32-bit overflow here
duke@435 139 return ((*b)->invocation_count() + (*b)->compiled_invocation_count())
duke@435 140 - ((*a)->invocation_count() + (*a)->compiled_invocation_count());
duke@435 141 }
duke@435 142
duke@435 143
duke@435 144 void print_method_invocation_histogram() {
duke@435 145 ResourceMark rm;
duke@435 146 HandleMark hm;
coleenp@4037 147 collected_invoked_methods = new GrowableArray<Method*>(1024);
duke@435 148 SystemDictionary::methods_do(collect_invoked_methods);
duke@435 149 collected_invoked_methods->sort(&compare_methods);
duke@435 150 //
duke@435 151 tty->cr();
duke@435 152 tty->print_cr("Histogram Over MethodOop Invocation Counters (cutoff = %d):", MethodHistogramCutoff);
duke@435 153 tty->cr();
duke@435 154 tty->print_cr("____Count_(I+C)____Method________________________Module_________________");
duke@435 155 unsigned total = 0, int_total = 0, comp_total = 0, static_total = 0, final_total = 0,
duke@435 156 synch_total = 0, nativ_total = 0, acces_total = 0;
duke@435 157 for (int index = 0; index < collected_invoked_methods->length(); index++) {
coleenp@4037 158 Method* m = collected_invoked_methods->at(index);
duke@435 159 int c = m->invocation_count() + m->compiled_invocation_count();
duke@435 160 if (c >= MethodHistogramCutoff) m->print_invocation_count();
duke@435 161 int_total += m->invocation_count();
duke@435 162 comp_total += m->compiled_invocation_count();
duke@435 163 if (m->is_final()) final_total += c;
duke@435 164 if (m->is_static()) static_total += c;
duke@435 165 if (m->is_synchronized()) synch_total += c;
duke@435 166 if (m->is_native()) nativ_total += c;
duke@435 167 if (m->is_accessor()) acces_total += c;
duke@435 168 }
duke@435 169 tty->cr();
duke@435 170 total = int_total + comp_total;
duke@435 171 tty->print_cr("Invocations summary:");
duke@435 172 tty->print_cr("\t%9d (%4.1f%%) interpreted", int_total, 100.0 * int_total / total);
duke@435 173 tty->print_cr("\t%9d (%4.1f%%) compiled", comp_total, 100.0 * comp_total / total);
duke@435 174 tty->print_cr("\t%9d (100%%) total", total);
duke@435 175 tty->print_cr("\t%9d (%4.1f%%) synchronized", synch_total, 100.0 * synch_total / total);
duke@435 176 tty->print_cr("\t%9d (%4.1f%%) final", final_total, 100.0 * final_total / total);
duke@435 177 tty->print_cr("\t%9d (%4.1f%%) static", static_total, 100.0 * static_total / total);
duke@435 178 tty->print_cr("\t%9d (%4.1f%%) native", nativ_total, 100.0 * nativ_total / total);
duke@435 179 tty->print_cr("\t%9d (%4.1f%%) accessor", acces_total, 100.0 * acces_total / total);
duke@435 180 tty->cr();
duke@435 181 SharedRuntime::print_call_statistics(comp_total);
duke@435 182 }
duke@435 183
duke@435 184 void print_method_profiling_data() {
duke@435 185 ResourceMark rm;
duke@435 186 HandleMark hm;
coleenp@4037 187 collected_profiled_methods = new GrowableArray<Method*>(1024);
duke@435 188 SystemDictionary::methods_do(collect_profiled_methods);
duke@435 189 collected_profiled_methods->sort(&compare_methods);
duke@435 190
duke@435 191 int count = collected_profiled_methods->length();
roland@5914 192 int total_size = 0;
duke@435 193 if (count > 0) {
duke@435 194 for (int index = 0; index < count; index++) {
coleenp@4037 195 Method* m = collected_profiled_methods->at(index);
duke@435 196 ttyLocker ttyl;
duke@435 197 tty->print_cr("------------------------------------------------------------------------");
duke@435 198 //m->print_name(tty);
duke@435 199 m->print_invocation_count();
roland@5914 200 tty->print_cr(" mdo size: %d bytes", m->method_data()->size_in_bytes());
duke@435 201 tty->cr();
roland@5987 202 // Dump data on parameters if any
roland@5987 203 if (m->method_data() != NULL && m->method_data()->parameters_type_data() != NULL) {
roland@5987 204 tty->fill_to(2);
roland@5987 205 m->method_data()->parameters_type_data()->print_data_on(tty);
roland@5987 206 }
duke@435 207 m->print_codes();
roland@5914 208 total_size += m->method_data()->size_in_bytes();
duke@435 209 }
duke@435 210 tty->print_cr("------------------------------------------------------------------------");
roland@5914 211 tty->print_cr("Total MDO size: %d bytes", total_size);
duke@435 212 }
duke@435 213 }
duke@435 214
duke@435 215 void print_bytecode_count() {
duke@435 216 if (CountBytecodes || TraceBytecodes || StopInterpreterAt) {
duke@435 217 tty->print_cr("[BytecodeCounter::counter_value = %d]", BytecodeCounter::counter_value());
duke@435 218 }
duke@435 219 }
duke@435 220
duke@435 221 AllocStats alloc_stats;
duke@435 222
duke@435 223
duke@435 224
duke@435 225 // General statistics printing (profiling ...)
duke@435 226 void print_statistics() {
duke@435 227 #ifdef ASSERT
duke@435 228
duke@435 229 if (CountRuntimeCalls) {
duke@435 230 extern Histogram *RuntimeHistogram;
duke@435 231 RuntimeHistogram->print();
duke@435 232 }
duke@435 233
duke@435 234 if (CountJNICalls) {
duke@435 235 extern Histogram *JNIHistogram;
duke@435 236 JNIHistogram->print();
duke@435 237 }
duke@435 238
duke@435 239 if (CountJVMCalls) {
duke@435 240 extern Histogram *JVMHistogram;
duke@435 241 JVMHistogram->print();
duke@435 242 }
duke@435 243
duke@435 244 #endif
duke@435 245
duke@435 246 if (MemProfiling) {
duke@435 247 MemProfiler::disengage();
duke@435 248 }
duke@435 249
duke@435 250 if (CITime) {
duke@435 251 CompileBroker::print_times();
duke@435 252 }
duke@435 253
duke@435 254 #ifdef COMPILER1
duke@435 255 if ((PrintC1Statistics || LogVMOutput || LogCompilation) && UseCompiler) {
duke@435 256 FlagSetting fs(DisplayVMOutput, DisplayVMOutput && PrintC1Statistics);
duke@435 257 Runtime1::print_statistics();
duke@435 258 Deoptimization::print_statistics();
never@3039 259 SharedRuntime::print_statistics();
duke@435 260 nmethod::print_statistics();
duke@435 261 }
duke@435 262 #endif /* COMPILER1 */
duke@435 263
duke@435 264 #ifdef COMPILER2
duke@435 265 if ((PrintOptoStatistics || LogVMOutput || LogCompilation) && UseCompiler) {
duke@435 266 FlagSetting fs(DisplayVMOutput, DisplayVMOutput && PrintOptoStatistics);
duke@435 267 Compile::print_statistics();
duke@435 268 #ifndef COMPILER1
duke@435 269 Deoptimization::print_statistics();
duke@435 270 nmethod::print_statistics();
never@3039 271 SharedRuntime::print_statistics();
duke@435 272 #endif //COMPILER1
duke@435 273 os::print_statistics();
duke@435 274 }
duke@435 275
kvn@6429 276 if (PrintLockStatistics || PrintPreciseBiasedLockingStatistics || PrintPreciseRTMLockingStatistics) {
duke@435 277 OptoRuntime::print_named_counters();
duke@435 278 }
duke@435 279
duke@435 280 if (TimeLivenessAnalysis) {
duke@435 281 MethodLiveness::print_times();
duke@435 282 }
duke@435 283 #ifdef ASSERT
duke@435 284 if (CollectIndexSetStatistics) {
duke@435 285 IndexSet::print_statistics();
duke@435 286 }
duke@435 287 #endif // ASSERT
duke@435 288 #endif // COMPILER2
duke@435 289 if (CountCompiledCalls) {
duke@435 290 print_method_invocation_histogram();
duke@435 291 }
iveresov@2273 292 if (ProfileInterpreter COMPILER1_PRESENT(|| C1UpdateMethodData)) {
duke@435 293 print_method_profiling_data();
duke@435 294 }
duke@435 295 if (TimeCompiler) {
duke@435 296 COMPILER2_PRESENT(Compile::print_timers();)
duke@435 297 }
duke@435 298 if (TimeCompilationPolicy) {
duke@435 299 CompilationPolicy::policy()->print_time();
duke@435 300 }
duke@435 301 if (TimeOopMap) {
duke@435 302 GenerateOopMap::print_time();
duke@435 303 }
duke@435 304 if (ProfilerCheckIntervals) {
duke@435 305 PeriodicTask::print_intervals();
duke@435 306 }
duke@435 307 if (PrintSymbolTableSizeHistogram) {
duke@435 308 SymbolTable::print_histogram();
duke@435 309 }
duke@435 310 if (CountBytecodes || TraceBytecodes || StopInterpreterAt) {
duke@435 311 BytecodeCounter::print();
duke@435 312 }
duke@435 313 if (PrintBytecodePairHistogram) {
duke@435 314 BytecodePairHistogram::print();
duke@435 315 }
duke@435 316
duke@435 317 if (PrintCodeCache) {
duke@435 318 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
duke@435 319 CodeCache::print();
duke@435 320 }
duke@435 321
anoll@6207 322 if (PrintMethodFlushingStatistics) {
anoll@6207 323 NMethodSweeper::print();
anoll@6207 324 }
anoll@6207 325
duke@435 326 if (PrintCodeCache2) {
duke@435 327 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
duke@435 328 CodeCache::print_internals();
duke@435 329 }
duke@435 330
duke@435 331 if (PrintClassStatistics) {
duke@435 332 SystemDictionary::print_class_statistics();
duke@435 333 }
duke@435 334 if (PrintMethodStatistics) {
duke@435 335 SystemDictionary::print_method_statistics();
duke@435 336 }
duke@435 337
duke@435 338 if (PrintVtableStats) {
duke@435 339 klassVtable::print_statistics();
duke@435 340 klassItable::print_statistics();
duke@435 341 }
shade@9842 342 if (VerifyOops && Verbose) {
duke@435 343 tty->print_cr("+VerifyOops count: %d", StubRoutines::verify_oop_count());
duke@435 344 }
duke@435 345
duke@435 346 print_bytecode_count();
kvn@2557 347 if (PrintMallocStatistics) {
duke@435 348 tty->print("allocation stats: ");
duke@435 349 alloc_stats.print();
duke@435 350 tty->cr();
duke@435 351 }
duke@435 352
duke@435 353 if (PrintSystemDictionaryAtExit) {
duke@435 354 SystemDictionary::print();
duke@435 355 }
duke@435 356
duke@435 357 if (PrintBiasedLockingStatistics) {
duke@435 358 BiasedLocking::print_counters();
duke@435 359 }
duke@435 360
duke@435 361 #ifdef ENABLE_ZAP_DEAD_LOCALS
duke@435 362 #ifdef COMPILER2
duke@435 363 if (ZapDeadCompiledLocals) {
duke@435 364 tty->print_cr("Compile::CompiledZap_count = %d", Compile::CompiledZap_count);
duke@435 365 tty->print_cr("OptoRuntime::ZapDeadCompiledLocals_count = %d", OptoRuntime::ZapDeadCompiledLocals_count);
duke@435 366 }
duke@435 367 #endif // COMPILER2
duke@435 368 #endif // ENABLE_ZAP_DEAD_LOCALS
zgu@4081 369 // Native memory tracking data
zgu@4081 370 if (PrintNMTStatistics) {
zgu@7074 371 MemTracker::final_report(tty);
zgu@4081 372 }
duke@435 373 }
duke@435 374
duke@435 375 #else // PRODUCT MODE STATISTICS
duke@435 376
duke@435 377 void print_statistics() {
duke@435 378
duke@435 379 if (CITime) {
duke@435 380 CompileBroker::print_times();
duke@435 381 }
vladidan@4438 382
vladidan@4438 383 if (PrintCodeCache) {
vladidan@4438 384 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
vladidan@4438 385 CodeCache::print();
vladidan@4438 386 }
vladidan@4438 387
anoll@6207 388 if (PrintMethodFlushingStatistics) {
anoll@6207 389 NMethodSweeper::print();
anoll@6207 390 }
anoll@6207 391
duke@435 392 #ifdef COMPILER2
kvn@6429 393 if (PrintPreciseBiasedLockingStatistics || PrintPreciseRTMLockingStatistics) {
duke@435 394 OptoRuntime::print_named_counters();
duke@435 395 }
duke@435 396 #endif
duke@435 397 if (PrintBiasedLockingStatistics) {
duke@435 398 BiasedLocking::print_counters();
duke@435 399 }
zgu@4081 400
zgu@4081 401 // Native memory tracking data
zgu@4081 402 if (PrintNMTStatistics) {
zgu@7074 403 MemTracker::final_report(tty);
zgu@4081 404 }
duke@435 405 }
duke@435 406
duke@435 407 #endif
duke@435 408
duke@435 409
duke@435 410 // Helper class for registering on_exit calls through JVM_OnExit
duke@435 411
duke@435 412 extern "C" {
duke@435 413 typedef void (*__exit_proc)(void);
duke@435 414 }
duke@435 415
zgu@3900 416 class ExitProc : public CHeapObj<mtInternal> {
duke@435 417 private:
duke@435 418 __exit_proc _proc;
duke@435 419 // void (*_proc)(void);
duke@435 420 ExitProc* _next;
duke@435 421 public:
duke@435 422 // ExitProc(void (*proc)(void)) {
duke@435 423 ExitProc(__exit_proc proc) {
duke@435 424 _proc = proc;
duke@435 425 _next = NULL;
duke@435 426 }
duke@435 427 void evaluate() { _proc(); }
duke@435 428 ExitProc* next() const { return _next; }
duke@435 429 void set_next(ExitProc* next) { _next = next; }
duke@435 430 };
duke@435 431
duke@435 432
duke@435 433 // Linked list of registered on_exit procedures
duke@435 434
duke@435 435 static ExitProc* exit_procs = NULL;
duke@435 436
duke@435 437
duke@435 438 extern "C" {
duke@435 439 void register_on_exit_function(void (*func)(void)) {
duke@435 440 ExitProc *entry = new ExitProc(func);
duke@435 441 // Classic vm does not throw an exception in case the allocation failed,
duke@435 442 if (entry != NULL) {
duke@435 443 entry->set_next(exit_procs);
duke@435 444 exit_procs = entry;
duke@435 445 }
duke@435 446 }
duke@435 447 }
duke@435 448
duke@435 449 // Note: before_exit() can be executed only once, if more than one threads
duke@435 450 // are trying to shutdown the VM at the same time, only one thread
duke@435 451 // can run before_exit() and all other threads must wait.
duke@435 452 void before_exit(JavaThread * thread) {
duke@435 453 #define BEFORE_EXIT_NOT_RUN 0
duke@435 454 #define BEFORE_EXIT_RUNNING 1
duke@435 455 #define BEFORE_EXIT_DONE 2
duke@435 456 static jint volatile _before_exit_status = BEFORE_EXIT_NOT_RUN;
duke@435 457
duke@435 458 // Note: don't use a Mutex to guard the entire before_exit(), as
duke@435 459 // JVMTI post_thread_end_event and post_vm_death_event will run native code.
duke@435 460 // A CAS or OSMutex would work just fine but then we need to manipulate
duke@435 461 // thread state for Safepoint. Here we use Monitor wait() and notify_all()
duke@435 462 // for synchronization.
duke@435 463 { MutexLocker ml(BeforeExit_lock);
duke@435 464 switch (_before_exit_status) {
duke@435 465 case BEFORE_EXIT_NOT_RUN:
duke@435 466 _before_exit_status = BEFORE_EXIT_RUNNING;
duke@435 467 break;
duke@435 468 case BEFORE_EXIT_RUNNING:
duke@435 469 while (_before_exit_status == BEFORE_EXIT_RUNNING) {
duke@435 470 BeforeExit_lock->wait();
duke@435 471 }
duke@435 472 assert(_before_exit_status == BEFORE_EXIT_DONE, "invalid state");
duke@435 473 return;
duke@435 474 case BEFORE_EXIT_DONE:
duke@435 475 return;
duke@435 476 }
duke@435 477 }
duke@435 478
duke@435 479 // The only difference between this and Win32's _onexit procs is that
duke@435 480 // this version is invoked before any threads get killed.
duke@435 481 ExitProc* current = exit_procs;
duke@435 482 while (current != NULL) {
duke@435 483 ExitProc* next = current->next();
duke@435 484 current->evaluate();
duke@435 485 delete current;
duke@435 486 current = next;
duke@435 487 }
duke@435 488
duke@435 489 // Hang forever on exit if we're reporting an error.
duke@435 490 if (ShowMessageBoxOnError && is_error_reported()) {
duke@435 491 os::infinite_sleep();
duke@435 492 }
duke@435 493
duke@435 494 // Terminate watcher thread - must before disenrolling any periodic task
bobv@2036 495 if (PeriodicTask::num_tasks() > 0)
bobv@2036 496 WatcherThread::stop();
duke@435 497
duke@435 498 // Print statistics gathered (profiling ...)
duke@435 499 if (Arguments::has_profile()) {
duke@435 500 FlatProfiler::disengage();
duke@435 501 FlatProfiler::print(10);
duke@435 502 }
duke@435 503
duke@435 504 // shut down the StatSampler task
duke@435 505 StatSampler::disengage();
duke@435 506 StatSampler::destroy();
duke@435 507
pliden@6735 508 // Stop concurrent GC threads
pliden@6735 509 Universe::heap()->stop();
duke@435 510
duke@435 511 // Print GC/heap related information.
duke@435 512 if (PrintGCDetails) {
duke@435 513 Universe::print();
duke@435 514 AdaptiveSizePolicyOutput(0);
coleenp@4037 515 if (Verbose) {
coleenp@4037 516 ClassLoaderDataGraph::dump_on(gclog_or_tty);
coleenp@4037 517 }
duke@435 518 }
duke@435 519
duke@435 520 if (PrintBytecodeHistogram) {
duke@435 521 BytecodeHistogram::print();
duke@435 522 }
duke@435 523
duke@435 524 if (JvmtiExport::should_post_thread_life()) {
duke@435 525 JvmtiExport::post_thread_end(thread);
duke@435 526 }
phh@3427 527
sla@5237 528
sla@5237 529 EventThreadEnd event;
sla@5237 530 if (event.should_commit()) {
apetushkov@9858 531 event.set_thread(JFR_THREAD_ID(thread));
apetushkov@9858 532 event.commit();
sla@5237 533 }
phh@3427 534
apetushkov@9858 535 JFR_ONLY(Jfr::on_vm_shutdown();)
apetushkov@9858 536
duke@435 537 // Always call even when there are not JVMTI environments yet, since environments
duke@435 538 // may be attached late and JVMTI must track phases of VM execution
duke@435 539 JvmtiExport::post_vm_death();
duke@435 540 Threads::shutdown_vm_agents();
duke@435 541
duke@435 542 // Terminate the signal thread
duke@435 543 // Note: we don't wait until it actually dies.
duke@435 544 os::terminate_signal_thread();
duke@435 545
duke@435 546 print_statistics();
duke@435 547 Universe::heap()->print_tracing_info();
duke@435 548
duke@435 549 { MutexLocker ml(BeforeExit_lock);
duke@435 550 _before_exit_status = BEFORE_EXIT_DONE;
duke@435 551 BeforeExit_lock->notify_all();
duke@435 552 }
duke@435 553
dcubed@5743 554 if (VerifyStringTableAtExit) {
dcubed@5743 555 int fail_cnt = 0;
dcubed@5743 556 {
dcubed@5743 557 MutexLocker ml(StringTable_lock);
dcubed@5743 558 fail_cnt = StringTable::verify_and_compare_entries();
dcubed@5743 559 }
dcubed@5743 560
dcubed@5743 561 if (fail_cnt != 0) {
dcubed@5743 562 tty->print_cr("ERROR: fail_cnt=%d", fail_cnt);
dcubed@5743 563 guarantee(fail_cnt == 0, "unexpected StringTable verification failures");
dcubed@5743 564 }
dcubed@5743 565 }
dcubed@5743 566
duke@435 567 #undef BEFORE_EXIT_NOT_RUN
duke@435 568 #undef BEFORE_EXIT_RUNNING
duke@435 569 #undef BEFORE_EXIT_DONE
duke@435 570 }
duke@435 571
duke@435 572 void vm_exit(int code) {
coleenp@2419 573 Thread* thread = ThreadLocalStorage::is_initialized() ?
coleenp@2419 574 ThreadLocalStorage::get_thread_slow() : NULL;
duke@435 575 if (thread == NULL) {
duke@435 576 // we have serious problems -- just exit
duke@435 577 vm_direct_exit(code);
duke@435 578 }
duke@435 579
duke@435 580 if (VMThread::vm_thread() != NULL) {
duke@435 581 // Fire off a VM_Exit operation to bring VM to a safepoint and exit
duke@435 582 VM_Exit op(code);
duke@435 583 if (thread->is_Java_thread())
duke@435 584 ((JavaThread*)thread)->set_thread_state(_thread_in_vm);
duke@435 585 VMThread::execute(&op);
duke@435 586 // should never reach here; but in case something wrong with VM Thread.
duke@435 587 vm_direct_exit(code);
duke@435 588 } else {
duke@435 589 // VM thread is gone, just exit
duke@435 590 vm_direct_exit(code);
duke@435 591 }
duke@435 592 ShouldNotReachHere();
duke@435 593 }
duke@435 594
duke@435 595 void notify_vm_shutdown() {
duke@435 596 // For now, just a dtrace probe.
dcubed@3202 597 #ifndef USDT2
duke@435 598 HS_DTRACE_PROBE(hotspot, vm__shutdown);
jcoomes@1902 599 HS_DTRACE_WORKAROUND_TAIL_CALL_BUG();
dcubed@3202 600 #else /* USDT2 */
dcubed@3202 601 HOTSPOT_VM_SHUTDOWN();
dcubed@3202 602 #endif /* USDT2 */
duke@435 603 }
duke@435 604
duke@435 605 void vm_direct_exit(int code) {
duke@435 606 notify_vm_shutdown();
sla@2584 607 os::wait_for_keypress_at_exit();
duke@435 608 ::exit(code);
duke@435 609 }
duke@435 610
duke@435 611 void vm_perform_shutdown_actions() {
duke@435 612 // Warning: do not call 'exit_globals()' here. All threads are still running.
duke@435 613 // Calling 'exit_globals()' will disable thread-local-storage and cause all
duke@435 614 // kinds of assertions to trigger in debug mode.
duke@435 615 if (is_init_completed()) {
coleenp@2419 616 Thread* thread = ThreadLocalStorage::is_initialized() ?
coleenp@2419 617 ThreadLocalStorage::get_thread_slow() : NULL;
coleenp@2419 618 if (thread != NULL && thread->is_Java_thread()) {
duke@435 619 // We are leaving the VM, set state to native (in case any OS exit
duke@435 620 // handlers call back to the VM)
duke@435 621 JavaThread* jt = (JavaThread*)thread;
duke@435 622 // Must always be walkable or have no last_Java_frame when in
duke@435 623 // thread_in_native
duke@435 624 jt->frame_anchor()->make_walkable(jt);
duke@435 625 jt->set_thread_state(_thread_in_native);
duke@435 626 }
duke@435 627 }
duke@435 628 notify_vm_shutdown();
duke@435 629 }
duke@435 630
duke@435 631 void vm_shutdown()
duke@435 632 {
duke@435 633 vm_perform_shutdown_actions();
sla@2584 634 os::wait_for_keypress_at_exit();
duke@435 635 os::shutdown();
duke@435 636 }
duke@435 637
poonam@662 638 void vm_abort(bool dump_core) {
duke@435 639 vm_perform_shutdown_actions();
sla@2584 640 os::wait_for_keypress_at_exit();
poonam@662 641 os::abort(dump_core);
duke@435 642 ShouldNotReachHere();
duke@435 643 }
duke@435 644
duke@435 645 void vm_notify_during_shutdown(const char* error, const char* message) {
duke@435 646 if (error != NULL) {
duke@435 647 tty->print_cr("Error occurred during initialization of VM");
duke@435 648 tty->print("%s", error);
duke@435 649 if (message != NULL) {
duke@435 650 tty->print_cr(": %s", message);
duke@435 651 }
duke@435 652 else {
duke@435 653 tty->cr();
duke@435 654 }
duke@435 655 }
duke@435 656 if (ShowMessageBoxOnError && WizardMode) {
duke@435 657 fatal("Error occurred during initialization of VM");
duke@435 658 }
duke@435 659 }
duke@435 660
duke@435 661 void vm_exit_during_initialization(Handle exception) {
duke@435 662 tty->print_cr("Error occurred during initialization of VM");
duke@435 663 // If there are exceptions on this thread it must be cleared
duke@435 664 // first and here. Any future calls to EXCEPTION_MARK requires
duke@435 665 // that no pending exceptions exist.
duke@435 666 Thread *THREAD = Thread::current();
duke@435 667 if (HAS_PENDING_EXCEPTION) {
duke@435 668 CLEAR_PENDING_EXCEPTION;
duke@435 669 }
duke@435 670 java_lang_Throwable::print(exception, tty);
duke@435 671 tty->cr();
duke@435 672 java_lang_Throwable::print_stack_trace(exception(), tty);
duke@435 673 tty->cr();
duke@435 674 vm_notify_during_shutdown(NULL, NULL);
poonam@662 675
poonam@662 676 // Failure during initialization, we don't want to dump core
poonam@662 677 vm_abort(false);
duke@435 678 }
duke@435 679
coleenp@2497 680 void vm_exit_during_initialization(Symbol* ex, const char* message) {
duke@435 681 ResourceMark rm;
duke@435 682 vm_notify_during_shutdown(ex->as_C_string(), message);
poonam@662 683
poonam@662 684 // Failure during initialization, we don't want to dump core
poonam@662 685 vm_abort(false);
duke@435 686 }
duke@435 687
duke@435 688 void vm_exit_during_initialization(const char* error, const char* message) {
duke@435 689 vm_notify_during_shutdown(error, message);
poonam@662 690
poonam@662 691 // Failure during initialization, we don't want to dump core
poonam@662 692 vm_abort(false);
duke@435 693 }
duke@435 694
duke@435 695 void vm_shutdown_during_initialization(const char* error, const char* message) {
duke@435 696 vm_notify_during_shutdown(error, message);
duke@435 697 vm_shutdown();
duke@435 698 }
duke@435 699
kamg@677 700 JDK_Version JDK_Version::_current;
twisti@3884 701 const char* JDK_Version::_runtime_name;
sla@4232 702 const char* JDK_Version::_runtime_version;
duke@435 703
duke@435 704 void JDK_Version::initialize() {
kamg@677 705 jdk_version_info info;
kamg@677 706 assert(!_current.is_valid(), "Don't initialize twice");
kamg@677 707
duke@435 708 void *lib_handle = os::native_java_library();
kamg@677 709 jdk_version_info_fn_t func = CAST_TO_FN_PTR(jdk_version_info_fn_t,
kamg@677 710 os::dll_lookup(lib_handle, "JDK_GetVersionInfo0"));
duke@435 711
duke@435 712 if (func == NULL) {
duke@435 713 // JDK older than 1.6
kamg@677 714 _current._partially_initialized = true;
kamg@677 715 } else {
kamg@677 716 (*func)(&info, sizeof(info));
kamg@677 717
kamg@677 718 int major = JDK_VERSION_MAJOR(info.jdk_version);
kamg@677 719 int minor = JDK_VERSION_MINOR(info.jdk_version);
kamg@677 720 int micro = JDK_VERSION_MICRO(info.jdk_version);
kamg@677 721 int build = JDK_VERSION_BUILD(info.jdk_version);
kamg@677 722 if (major == 1 && minor > 4) {
kamg@677 723 // We represent "1.5.0" as "5.0", but 1.4.2 as itself.
kamg@677 724 major = minor;
kamg@677 725 minor = micro;
kamg@677 726 micro = 0;
kamg@677 727 }
kamg@677 728 _current = JDK_Version(major, minor, micro, info.update_version,
kamg@677 729 info.special_update_version, build,
kevinw@2449 730 info.thread_park_blocker == 1,
ysr@3117 731 info.post_vm_init_hook_enabled == 1,
ysr@3117 732 info.pending_list_uses_discovered_field == 1);
duke@435 733 }
kamg@677 734 }
duke@435 735
kamg@677 736 void JDK_Version::fully_initialize(
kamg@677 737 uint8_t major, uint8_t minor, uint8_t micro, uint8_t update) {
kamg@677 738 // This is only called when current is less than 1.6 and we've gotten
kamg@677 739 // far enough in the initialization to determine the exact version.
kamg@677 740 assert(major < 6, "not needed for JDK version >= 6");
kamg@677 741 assert(is_partially_initialized(), "must not initialize");
kamg@677 742 if (major < 5) {
kamg@677 743 // JDK verison sequence: 1.2.x, 1.3.x, 1.4.x, 5.0.x, 6.0.x, etc.
kamg@677 744 micro = minor;
kamg@677 745 minor = major;
kamg@677 746 major = 1;
duke@435 747 }
kamg@677 748 _current = JDK_Version(major, minor, micro, update);
duke@435 749 }
duke@435 750
duke@435 751 void JDK_Version_init() {
duke@435 752 JDK_Version::initialize();
duke@435 753 }
kamg@677 754
kamg@677 755 static int64_t encode_jdk_version(const JDK_Version& v) {
kamg@677 756 return
kamg@677 757 ((int64_t)v.major_version() << (BitsPerByte * 5)) |
kamg@677 758 ((int64_t)v.minor_version() << (BitsPerByte * 4)) |
kamg@677 759 ((int64_t)v.micro_version() << (BitsPerByte * 3)) |
kamg@677 760 ((int64_t)v.update_version() << (BitsPerByte * 2)) |
kamg@677 761 ((int64_t)v.special_update_version() << (BitsPerByte * 1)) |
kamg@677 762 ((int64_t)v.build_number() << (BitsPerByte * 0));
kamg@677 763 }
kamg@677 764
kamg@677 765 int JDK_Version::compare(const JDK_Version& other) const {
kamg@677 766 assert(is_valid() && other.is_valid(), "Invalid version (uninitialized?)");
kamg@677 767 if (!is_partially_initialized() && other.is_partially_initialized()) {
kamg@677 768 return -(other.compare(*this)); // flip the comparators
kamg@677 769 }
kamg@677 770 assert(!other.is_partially_initialized(), "Not initialized yet");
kamg@677 771 if (is_partially_initialized()) {
kamg@677 772 assert(other.major_version() >= 6,
kamg@677 773 "Invalid JDK version comparison during initialization");
kamg@677 774 return -1;
kamg@677 775 } else {
kamg@677 776 uint64_t e = encode_jdk_version(*this);
kamg@677 777 uint64_t o = encode_jdk_version(other);
kamg@677 778 return (e > o) ? 1 : ((e == o) ? 0 : -1);
kamg@677 779 }
kamg@677 780 }
kamg@677 781
kamg@677 782 void JDK_Version::to_string(char* buffer, size_t buflen) const {
shshahma@8584 783 assert(buffer && buflen > 0, "call with useful buffer");
kamg@677 784 size_t index = 0;
kamg@677 785 if (!is_valid()) {
kamg@677 786 jio_snprintf(buffer, buflen, "%s", "(uninitialized)");
kamg@677 787 } else if (is_partially_initialized()) {
kamg@677 788 jio_snprintf(buffer, buflen, "%s", "(uninitialized) pre-1.6.0");
kamg@677 789 } else {
shshahma@8584 790 int rc = jio_snprintf(
kamg@677 791 &buffer[index], buflen - index, "%d.%d", _major, _minor);
shshahma@8584 792 if (rc == -1) return;
shshahma@8584 793 index += rc;
kamg@677 794 if (_micro > 0) {
shshahma@8584 795 rc = jio_snprintf(&buffer[index], buflen - index, ".%d", _micro);
shshahma@8584 796 if (rc == -1) return;
shshahma@8584 797 index += rc;
kamg@677 798 }
kamg@677 799 if (_update > 0) {
shshahma@8584 800 rc = jio_snprintf(&buffer[index], buflen - index, "_%02d", _update);
shshahma@8584 801 if (rc == -1) return;
shshahma@8584 802 index += rc;
kamg@677 803 }
kamg@677 804 if (_special > 0) {
shshahma@8584 805 rc = jio_snprintf(&buffer[index], buflen - index, "%c", _special);
shshahma@8584 806 if (rc == -1) return;
shshahma@8584 807 index += rc;
kamg@677 808 }
kamg@677 809 if (_build > 0) {
shshahma@8584 810 rc = jio_snprintf(&buffer[index], buflen - index, "-b%02d", _build);
shshahma@8584 811 if (rc == -1) return;
shshahma@8584 812 index += rc;
kamg@677 813 }
kamg@677 814 }
kamg@677 815 }

mercurial