1 /*
   2  * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
   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  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "jvm.h"
  27 #include "aot/aotLoader.hpp"
  28 #include "classfile/classLoader.hpp"
  29 #include "classfile/classLoaderDataGraph.hpp"
  30 #include "classfile/stringTable.hpp"
  31 #include "classfile/systemDictionary.hpp"
  32 #include "code/codeCache.hpp"
  33 #include "compiler/compileBroker.hpp"
  34 #include "compiler/compilerOracle.hpp"
  35 #include "interpreter/bytecodeHistogram.hpp"
  36 #include "jfr/jfrEvents.hpp"
  37 #include "jfr/support/jfrThreadId.hpp"
  38 #if INCLUDE_JVMCI
  39 #include "jvmci/jvmciCompiler.hpp"
  40 #include "jvmci/jvmciRuntime.hpp"
  41 #endif
  42 #include "logging/log.hpp"
  43 #include "logging/logStream.hpp"
  44 #include "memory/oopFactory.hpp"
  45 #include "memory/resourceArea.hpp"
  46 #include "memory/universe.hpp"
  47 #include "oops/constantPool.hpp"
  48 #include "oops/generateOopMap.hpp"
  49 #include "oops/instanceKlass.hpp"
  50 #include "oops/instanceOop.hpp"
  51 #include "oops/method.hpp"
  52 #include "oops/objArrayOop.hpp"
  53 #include "oops/oop.inline.hpp"
  54 #include "oops/symbol.hpp"
  55 #include "prims/jvmtiExport.hpp"
  56 #include "runtime/arguments.hpp"
  57 #include "runtime/biasedLocking.hpp"
  58 #include "runtime/compilationPolicy.hpp"
  59 #include "runtime/deoptimization.hpp"
  60 #include "runtime/flags/flagSetting.hpp"
  61 #include "runtime/init.hpp"
  62 #include "runtime/interfaceSupport.inline.hpp"
  63 #include "runtime/java.hpp"
  64 #include "runtime/memprofiler.hpp"
  65 #include "runtime/sharedRuntime.hpp"
  66 #include "runtime/statSampler.hpp"
  67 #include "runtime/sweeper.hpp"
  68 #include "runtime/task.hpp"
  69 #include "runtime/thread.inline.hpp"
  70 #include "runtime/timer.hpp"
  71 #include "runtime/vm_operations.hpp"
  72 #include "services/memTracker.hpp"
  73 #include "utilities/dtrace.hpp"
  74 #include "utilities/globalDefinitions.hpp"
  75 #include "utilities/histogram.hpp"
  76 #include "utilities/macros.hpp"
  77 #include "utilities/vmError.hpp"
  78 #ifdef COMPILER1
  79 #include "c1/c1_Compiler.hpp"
  80 #include "c1/c1_Runtime1.hpp"
  81 #endif
  82 #ifdef COMPILER2
  83 #include "code/compiledIC.hpp"
  84 #include "compiler/methodLiveness.hpp"
  85 #include "opto/compile.hpp"
  86 #include "opto/indexSet.hpp"
  87 #include "opto/runtime.hpp"
  88 #endif
  89 #if INCLUDE_JFR
  90 #include "jfr/jfr.hpp"
  91 #endif
  92 
  93 GrowableArray<Method*>* collected_profiled_methods;
  94 
  95 int compare_methods(Method** a, Method** b) {
  96   // %%% there can be 32-bit overflow here
  97   return ((*b)->invocation_count() + (*b)->compiled_invocation_count())
  98        - ((*a)->invocation_count() + (*a)->compiled_invocation_count());
  99 }
 100 
 101 void collect_profiled_methods(Method* m) {
 102   Thread* thread = Thread::current();
 103   methodHandle mh(thread, m);
 104   if ((m->method_data() != NULL) &&
 105       (PrintMethodData || CompilerOracle::should_print(mh))) {
 106     collected_profiled_methods->push(m);
 107   }
 108 }
 109 
 110 void print_method_profiling_data() {
 111   if (ProfileInterpreter COMPILER1_PRESENT(|| C1UpdateMethodData) &&
 112      (PrintMethodData || CompilerOracle::should_print_methods())) {
 113     ResourceMark rm;
 114     HandleMark hm;
 115     collected_profiled_methods = new GrowableArray<Method*>(1024);
 116     SystemDictionary::methods_do(collect_profiled_methods);
 117     collected_profiled_methods->sort(&compare_methods);
 118 
 119     int count = collected_profiled_methods->length();
 120     int total_size = 0;
 121     if (count > 0) {
 122       for (int index = 0; index < count; index++) {
 123         Method* m = collected_profiled_methods->at(index);
 124         ttyLocker ttyl;
 125         tty->print_cr("------------------------------------------------------------------------");
 126         m->print_invocation_count();
 127         tty->print_cr("  mdo size: %d bytes", m->method_data()->size_in_bytes());
 128         tty->cr();
 129         // Dump data on parameters if any
 130         if (m->method_data() != NULL && m->method_data()->parameters_type_data() != NULL) {
 131           tty->fill_to(2);
 132           m->method_data()->parameters_type_data()->print_data_on(tty);
 133         }
 134         m->print_codes();
 135         total_size += m->method_data()->size_in_bytes();
 136       }
 137       tty->print_cr("------------------------------------------------------------------------");
 138       tty->print_cr("Total MDO size: %d bytes", total_size);
 139     }
 140   }
 141 }
 142 
 143 
 144 #ifndef PRODUCT
 145 
 146 // Statistics printing (method invocation histogram)
 147 
 148 GrowableArray<Method*>* collected_invoked_methods;
 149 
 150 void collect_invoked_methods(Method* m) {
 151   if (m->invocation_count() + m->compiled_invocation_count() >= 1 ) {
 152     collected_invoked_methods->push(m);
 153   }
 154 }
 155 
 156 
 157 
 158 
 159 void print_method_invocation_histogram() {
 160   ResourceMark rm;
 161   HandleMark hm;
 162   collected_invoked_methods = new GrowableArray<Method*>(1024);
 163   SystemDictionary::methods_do(collect_invoked_methods);
 164   collected_invoked_methods->sort(&compare_methods);
 165   //
 166   tty->cr();
 167   tty->print_cr("Histogram Over Method Invocation Counters (cutoff = " INTX_FORMAT "):", MethodHistogramCutoff);
 168   tty->cr();
 169   tty->print_cr("____Count_(I+C)____Method________________________Module_________________");
 170   unsigned total = 0, int_total = 0, comp_total = 0, static_total = 0, final_total = 0,
 171       synch_total = 0, nativ_total = 0, acces_total = 0;
 172   for (int index = 0; index < collected_invoked_methods->length(); index++) {
 173     Method* m = collected_invoked_methods->at(index);
 174     int c = m->invocation_count() + m->compiled_invocation_count();
 175     if (c >= MethodHistogramCutoff) m->print_invocation_count();
 176     int_total  += m->invocation_count();
 177     comp_total += m->compiled_invocation_count();
 178     if (m->is_final())        final_total  += c;
 179     if (m->is_static())       static_total += c;
 180     if (m->is_synchronized()) synch_total  += c;
 181     if (m->is_native())       nativ_total  += c;
 182     if (m->is_accessor())     acces_total  += c;
 183   }
 184   tty->cr();
 185   total = int_total + comp_total;
 186   tty->print_cr("Invocations summary:");
 187   tty->print_cr("\t%9d (%4.1f%%) interpreted",  int_total,    100.0 * int_total    / total);
 188   tty->print_cr("\t%9d (%4.1f%%) compiled",     comp_total,   100.0 * comp_total   / total);
 189   tty->print_cr("\t%9d (100%%)  total",         total);
 190   tty->print_cr("\t%9d (%4.1f%%) synchronized", synch_total,  100.0 * synch_total  / total);
 191   tty->print_cr("\t%9d (%4.1f%%) final",        final_total,  100.0 * final_total  / total);
 192   tty->print_cr("\t%9d (%4.1f%%) static",       static_total, 100.0 * static_total / total);
 193   tty->print_cr("\t%9d (%4.1f%%) native",       nativ_total,  100.0 * nativ_total  / total);
 194   tty->print_cr("\t%9d (%4.1f%%) accessor",     acces_total,  100.0 * acces_total  / total);
 195   tty->cr();
 196   SharedRuntime::print_call_statistics(comp_total);
 197 }
 198 
 199 void print_bytecode_count() {
 200   if (CountBytecodes || TraceBytecodes || StopInterpreterAt) {
 201     tty->print_cr("[BytecodeCounter::counter_value = %d]", BytecodeCounter::counter_value());
 202   }
 203 }
 204 
 205 AllocStats alloc_stats;
 206 
 207 
 208 
 209 // General statistics printing (profiling ...)
 210 void print_statistics() {
 211 #ifdef ASSERT
 212 
 213   if (CountRuntimeCalls) {
 214     extern Histogram *RuntimeHistogram;
 215     RuntimeHistogram->print();
 216   }
 217 
 218   if (CountJNICalls) {
 219     extern Histogram *JNIHistogram;
 220     JNIHistogram->print();
 221   }
 222 
 223   if (CountJVMCalls) {
 224     extern Histogram *JVMHistogram;
 225     JVMHistogram->print();
 226   }
 227 
 228 #endif
 229 
 230   if (MemProfiling) {
 231     MemProfiler::disengage();
 232   }
 233 
 234   if (CITime) {
 235     CompileBroker::print_times();
 236   }
 237 
 238 #ifdef COMPILER1
 239   if ((PrintC1Statistics || LogVMOutput || LogCompilation) && UseCompiler) {
 240     FlagSetting fs(DisplayVMOutput, DisplayVMOutput && PrintC1Statistics);
 241     Runtime1::print_statistics();
 242     Deoptimization::print_statistics();
 243     SharedRuntime::print_statistics();
 244   }
 245 #endif /* COMPILER1 */
 246 
 247 #ifdef COMPILER2
 248   if ((PrintOptoStatistics || LogVMOutput || LogCompilation) && UseCompiler) {
 249     FlagSetting fs(DisplayVMOutput, DisplayVMOutput && PrintOptoStatistics);
 250     Compile::print_statistics();
 251 #ifndef COMPILER1
 252     Deoptimization::print_statistics();
 253     SharedRuntime::print_statistics();
 254 #endif //COMPILER1
 255     os::print_statistics();
 256   }
 257 
 258   if (PrintLockStatistics || PrintPreciseBiasedLockingStatistics || PrintPreciseRTMLockingStatistics) {
 259     OptoRuntime::print_named_counters();
 260   }
 261 
 262   if (TimeLivenessAnalysis) {
 263     MethodLiveness::print_times();
 264   }
 265 #ifdef ASSERT
 266   if (CollectIndexSetStatistics) {
 267     IndexSet::print_statistics();
 268   }
 269 #endif // ASSERT
 270 #else // COMPILER2
 271 #if INCLUDE_JVMCI
 272 #ifndef COMPILER1
 273   if ((TraceDeoptimization || LogVMOutput || LogCompilation) && UseCompiler) {
 274     FlagSetting fs(DisplayVMOutput, DisplayVMOutput && TraceDeoptimization);
 275     Deoptimization::print_statistics();
 276     SharedRuntime::print_statistics();
 277   }
 278 #endif // COMPILER1
 279 #endif // INCLUDE_JVMCI
 280 #endif // COMPILER2
 281 
 282   if (PrintAOTStatistics) {
 283     AOTLoader::print_statistics();
 284   }
 285 
 286   if (PrintNMethodStatistics) {
 287     nmethod::print_statistics();
 288   }
 289   if (CountCompiledCalls) {
 290     print_method_invocation_histogram();
 291   }
 292 
 293   print_method_profiling_data();
 294 
 295   if (TimeCompilationPolicy) {
 296     CompilationPolicy::policy()->print_time();
 297   }
 298   if (TimeOopMap) {
 299     GenerateOopMap::print_time();
 300   }
 301   if (ProfilerCheckIntervals) {
 302     PeriodicTask::print_intervals();
 303   }
 304   if (PrintSymbolTableSizeHistogram) {
 305     SymbolTable::print_histogram();
 306   }
 307   if (CountBytecodes || TraceBytecodes || StopInterpreterAt) {
 308     BytecodeCounter::print();
 309   }
 310   if (PrintBytecodePairHistogram) {
 311     BytecodePairHistogram::print();
 312   }
 313 
 314   if (PrintCodeCache) {
 315     MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
 316     CodeCache::print();
 317   }
 318 
 319   // CodeHeap State Analytics.
 320   // Does also call NMethodSweeper::print(tty)
 321   LogTarget(Trace, codecache) lt;
 322   if (lt.is_enabled()) {
 323     CompileBroker::print_heapinfo(NULL, "all", "4096"); // details
 324   } else if (PrintMethodFlushingStatistics) {
 325     NMethodSweeper::print(tty);
 326   }
 327 
 328   if (PrintCodeCache2) {
 329     MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
 330     CodeCache::print_internals();
 331   }
 332 
 333   if (PrintVtableStats) {
 334     klassVtable::print_statistics();
 335     klassItable::print_statistics();
 336   }
 337   if (VerifyOops && Verbose) {
 338     tty->print_cr("+VerifyOops count: %d", StubRoutines::verify_oop_count());
 339   }
 340 
 341   print_bytecode_count();
 342   if (PrintMallocStatistics) {
 343     tty->print("allocation stats: ");
 344     alloc_stats.print();
 345     tty->cr();
 346   }
 347 
 348   if (PrintSystemDictionaryAtExit) {
 349     ResourceMark rm;
 350     MutexLocker mcld(ClassLoaderDataGraph_lock);
 351     SystemDictionary::print();
 352     ClassLoaderDataGraph::print();
 353   }
 354 
 355   if (LogTouchedMethods && PrintTouchedMethodsAtExit) {
 356     Method::print_touched_methods(tty);
 357   }
 358 
 359   if (PrintBiasedLockingStatistics) {
 360     BiasedLocking::print_counters();
 361   }
 362 
 363   // Native memory tracking data
 364   if (PrintNMTStatistics) {
 365     MemTracker::final_report(tty);
 366   }
 367 
 368   ThreadsSMRSupport::log_statistics();
 369 }
 370 
 371 #else // PRODUCT MODE STATISTICS
 372 
 373 void print_statistics() {
 374 
 375   if (PrintMethodData) {
 376     print_method_profiling_data();
 377   }
 378 
 379   if (CITime) {
 380     CompileBroker::print_times();
 381   }
 382 
 383   if (PrintCodeCache) {
 384     MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
 385     CodeCache::print();
 386   }
 387 
 388   // CodeHeap State Analytics.
 389   // Does also call NMethodSweeper::print(tty)
 390   LogTarget(Trace, codecache) lt;
 391   if (lt.is_enabled()) {
 392     CompileBroker::print_heapinfo(NULL, "all", "4096"); // details
 393   } else if (PrintMethodFlushingStatistics) {
 394     NMethodSweeper::print(tty);
 395   }
 396 
 397 #ifdef COMPILER2
 398   if (PrintPreciseBiasedLockingStatistics || PrintPreciseRTMLockingStatistics) {
 399     OptoRuntime::print_named_counters();
 400   }
 401 #endif
 402   if (PrintBiasedLockingStatistics) {
 403     BiasedLocking::print_counters();
 404   }
 405 
 406   // Native memory tracking data
 407   if (PrintNMTStatistics) {
 408     MemTracker::final_report(tty);
 409   }
 410 
 411   if (LogTouchedMethods && PrintTouchedMethodsAtExit) {
 412     Method::print_touched_methods(tty);
 413   }
 414 
 415   ThreadsSMRSupport::log_statistics();
 416 }
 417 
 418 #endif
 419 
 420 // Note: before_exit() can be executed only once, if more than one threads
 421 //       are trying to shutdown the VM at the same time, only one thread
 422 //       can run before_exit() and all other threads must wait.
 423 void before_exit(JavaThread* thread) {
 424   #define BEFORE_EXIT_NOT_RUN 0
 425   #define BEFORE_EXIT_RUNNING 1
 426   #define BEFORE_EXIT_DONE    2
 427   static jint volatile _before_exit_status = BEFORE_EXIT_NOT_RUN;
 428 
 429   // Note: don't use a Mutex to guard the entire before_exit(), as
 430   // JVMTI post_thread_end_event and post_vm_death_event will run native code.
 431   // A CAS or OSMutex would work just fine but then we need to manipulate
 432   // thread state for Safepoint. Here we use Monitor wait() and notify_all()
 433   // for synchronization.
 434   { MutexLocker ml(BeforeExit_lock);
 435     switch (_before_exit_status) {
 436     case BEFORE_EXIT_NOT_RUN:
 437       _before_exit_status = BEFORE_EXIT_RUNNING;
 438       break;
 439     case BEFORE_EXIT_RUNNING:
 440       while (_before_exit_status == BEFORE_EXIT_RUNNING) {
 441         BeforeExit_lock->wait();
 442       }
 443       assert(_before_exit_status == BEFORE_EXIT_DONE, "invalid state");
 444       return;
 445     case BEFORE_EXIT_DONE:
 446       // need block to avoid SS compiler bug
 447       {
 448         return;
 449       }
 450     }
 451   }
 452 
 453 #if INCLUDE_JVMCI
 454   // We are not using CATCH here because we want the exit to continue normally.
 455   Thread* THREAD = thread;
 456   JVMCIRuntime::shutdown(THREAD);
 457   if (HAS_PENDING_EXCEPTION) {
 458     HandleMark hm(THREAD);
 459     Handle exception(THREAD, PENDING_EXCEPTION);
 460     CLEAR_PENDING_EXCEPTION;
 461     java_lang_Throwable::java_printStackTrace(exception, THREAD);
 462   }
 463 #endif
 464 
 465   // Hang forever on exit if we're reporting an error.
 466   if (ShowMessageBoxOnError && VMError::is_error_reported()) {
 467     os::infinite_sleep();
 468   }
 469 
 470   EventThreadEnd event;
 471   if (event.should_commit()) {
 472     event.set_thread(JFR_THREAD_ID(thread));
 473     event.commit();
 474   }
 475 
 476   JFR_ONLY(Jfr::on_vm_shutdown();)
 477 
 478   // Stop the WatcherThread. We do this before disenrolling various
 479   // PeriodicTasks to reduce the likelihood of races.
 480   if (PeriodicTask::num_tasks() > 0) {
 481     WatcherThread::stop();
 482   }
 483 
 484   // shut down the StatSampler task
 485   StatSampler::disengage();
 486   StatSampler::destroy();
 487 
 488   // Stop concurrent GC threads
 489   Universe::heap()->stop();
 490 
 491   // Print GC/heap related information.
 492   Log(gc, heap, exit) log;
 493   if (log.is_info()) {
 494     ResourceMark rm;
 495     LogStream ls_info(log.info());
 496     Universe::print_on(&ls_info);
 497     if (log.is_trace()) {
 498       LogStream ls_trace(log.trace());
 499       MutexLocker mcld(ClassLoaderDataGraph_lock);
 500       ClassLoaderDataGraph::print_on(&ls_trace);
 501     }
 502   }
 503 
 504   if (PrintBytecodeHistogram) {
 505     BytecodeHistogram::print();
 506   }
 507 
 508   if (JvmtiExport::should_post_thread_life()) {
 509     JvmtiExport::post_thread_end(thread);
 510   }
 511 
 512   // Always call even when there are not JVMTI environments yet, since environments
 513   // may be attached late and JVMTI must track phases of VM execution
 514   JvmtiExport::post_vm_death();
 515   Threads::shutdown_vm_agents();
 516 
 517   // Terminate the signal thread
 518   // Note: we don't wait until it actually dies.
 519   os::terminate_signal_thread();
 520 
 521   print_statistics();
 522   Universe::heap()->print_tracing_info();
 523 
 524   { MutexLocker ml(BeforeExit_lock);
 525     _before_exit_status = BEFORE_EXIT_DONE;
 526     BeforeExit_lock->notify_all();
 527   }
 528 
 529   if (VerifyStringTableAtExit) {
 530     size_t fail_cnt = StringTable::verify_and_compare_entries();
 531     if (fail_cnt != 0) {
 532       tty->print_cr("ERROR: fail_cnt=" SIZE_FORMAT, fail_cnt);
 533       guarantee(fail_cnt == 0, "unexpected StringTable verification failures");
 534     }
 535   }
 536 
 537   #undef BEFORE_EXIT_NOT_RUN
 538   #undef BEFORE_EXIT_RUNNING
 539   #undef BEFORE_EXIT_DONE
 540 }
 541 
 542 void vm_exit(int code) {
 543   Thread* thread =
 544       ThreadLocalStorage::is_initialized() ? Thread::current_or_null() : NULL;
 545   if (thread == NULL) {
 546     // very early initialization failure -- just exit
 547     vm_direct_exit(code);
 548   }
 549 
 550   if (VMThread::vm_thread() != NULL) {
 551     // Fire off a VM_Exit operation to bring VM to a safepoint and exit
 552     VM_Exit op(code);
 553     if (thread->is_Java_thread())
 554       ((JavaThread*)thread)->set_thread_state(_thread_in_vm);
 555     VMThread::execute(&op);
 556     // should never reach here; but in case something wrong with VM Thread.
 557     vm_direct_exit(code);
 558   } else {
 559     // VM thread is gone, just exit
 560     vm_direct_exit(code);
 561   }
 562   ShouldNotReachHere();
 563 }
 564 
 565 void notify_vm_shutdown() {
 566   // For now, just a dtrace probe.
 567   HOTSPOT_VM_SHUTDOWN();
 568   HS_DTRACE_WORKAROUND_TAIL_CALL_BUG();
 569 }
 570 
 571 void vm_direct_exit(int code) {
 572   notify_vm_shutdown();
 573   os::wait_for_keypress_at_exit();
 574   os::exit(code);
 575 }
 576 
 577 void vm_perform_shutdown_actions() {
 578   if (is_init_completed()) {
 579     Thread* thread = Thread::current_or_null();
 580     if (thread != NULL && thread->is_Java_thread()) {
 581       // We are leaving the VM, set state to native (in case any OS exit
 582       // handlers call back to the VM)
 583       JavaThread* jt = (JavaThread*)thread;
 584       // Must always be walkable or have no last_Java_frame when in
 585       // thread_in_native
 586       jt->frame_anchor()->make_walkable(jt);
 587       jt->set_thread_state(_thread_in_native);
 588     }
 589   }
 590   notify_vm_shutdown();
 591 }
 592 
 593 void vm_shutdown()
 594 {
 595   vm_perform_shutdown_actions();
 596   os::wait_for_keypress_at_exit();
 597   os::shutdown();
 598 }
 599 
 600 void vm_abort(bool dump_core) {
 601   vm_perform_shutdown_actions();
 602   os::wait_for_keypress_at_exit();
 603 
 604   // Flush stdout and stderr before abort.
 605   fflush(stdout);
 606   fflush(stderr);
 607 
 608   os::abort(dump_core);
 609   ShouldNotReachHere();
 610 }
 611 
 612 void vm_notify_during_cds_dumping(const char* error, const char* message) {
 613   if (error != NULL) {
 614     tty->print_cr("Error occurred during CDS dumping");
 615     tty->print("%s", error);
 616     if (message != NULL) {
 617       tty->print_cr(": %s", message);
 618     }
 619     else {
 620       tty->cr();
 621     }
 622   }
 623 }
 624 
 625 void vm_exit_during_cds_dumping(const char* error, const char* message) {
 626   vm_notify_during_cds_dumping(error, message);
 627 
 628   // Failure during CDS dumping, we don't want to dump core
 629   vm_abort(false);
 630 }
 631 
 632 void vm_notify_during_shutdown(const char* error, const char* message) {
 633   if (error != NULL) {
 634     tty->print_cr("Error occurred during initialization of VM");
 635     tty->print("%s", error);
 636     if (message != NULL) {
 637       tty->print_cr(": %s", message);
 638     }
 639     else {
 640       tty->cr();
 641     }
 642   }
 643   if (ShowMessageBoxOnError && WizardMode) {
 644     fatal("Error occurred during initialization of VM");
 645   }
 646 }
 647 
 648 void vm_exit_during_initialization() {
 649   vm_notify_during_shutdown(NULL, NULL);
 650 
 651   // Failure during initialization, we don't want to dump core
 652   vm_abort(false);
 653 }
 654 
 655 void vm_exit_during_initialization(Handle exception) {
 656   tty->print_cr("Error occurred during initialization of VM");
 657   // If there are exceptions on this thread it must be cleared
 658   // first and here. Any future calls to EXCEPTION_MARK requires
 659   // that no pending exceptions exist.
 660   Thread *THREAD = Thread::current(); // can't be NULL
 661   if (HAS_PENDING_EXCEPTION) {
 662     CLEAR_PENDING_EXCEPTION;
 663   }
 664   java_lang_Throwable::print_stack_trace(exception, tty);
 665   tty->cr();
 666   vm_notify_during_shutdown(NULL, NULL);
 667 
 668   // Failure during initialization, we don't want to dump core
 669   vm_abort(false);
 670 }
 671 
 672 void vm_exit_during_initialization(Symbol* ex, const char* message) {
 673   ResourceMark rm;
 674   vm_notify_during_shutdown(ex->as_C_string(), message);
 675 
 676   // Failure during initialization, we don't want to dump core
 677   vm_abort(false);
 678 }
 679 
 680 void vm_exit_during_initialization(const char* error, const char* message) {
 681   vm_notify_during_shutdown(error, message);
 682 
 683   // Failure during initialization, we don't want to dump core
 684   vm_abort(false);
 685 }
 686 
 687 void vm_shutdown_during_initialization(const char* error, const char* message) {
 688   vm_notify_during_shutdown(error, message);
 689   vm_shutdown();
 690 }
 691 
 692 JDK_Version JDK_Version::_current;
 693 const char* JDK_Version::_runtime_name;
 694 const char* JDK_Version::_runtime_version;
 695 
 696 void JDK_Version::initialize() {
 697   jdk_version_info info;
 698   assert(!_current.is_valid(), "Don't initialize twice");
 699 
 700   void *lib_handle = os::native_java_library();
 701   jdk_version_info_fn_t func = CAST_TO_FN_PTR(jdk_version_info_fn_t,
 702      os::dll_lookup(lib_handle, "JDK_GetVersionInfo0"));
 703 
 704   assert(func != NULL, "Support for JDK 1.5 or older has been removed after JEP-223");
 705 
 706   (*func)(&info, sizeof(info));
 707 
 708   int major = JDK_VERSION_MAJOR(info.jdk_version);
 709   int minor = JDK_VERSION_MINOR(info.jdk_version);
 710   int security = JDK_VERSION_SECURITY(info.jdk_version);
 711   int build = JDK_VERSION_BUILD(info.jdk_version);
 712 
 713   // Incompatible with pre-4243978 JDK.
 714   if (info.pending_list_uses_discovered_field == 0) {
 715     vm_exit_during_initialization(
 716       "Incompatible JDK is not using Reference.discovered field for pending list");
 717   }
 718   _current = JDK_Version(major, minor, security, info.patch_version, build,
 719                          info.thread_park_blocker == 1,
 720                          info.post_vm_init_hook_enabled == 1);
 721 }
 722 
 723 void JDK_Version_init() {
 724   JDK_Version::initialize();
 725 }
 726 
 727 static int64_t encode_jdk_version(const JDK_Version& v) {
 728   return
 729     ((int64_t)v.major_version()          << (BitsPerByte * 4)) |
 730     ((int64_t)v.minor_version()          << (BitsPerByte * 3)) |
 731     ((int64_t)v.security_version()       << (BitsPerByte * 2)) |
 732     ((int64_t)v.patch_version()          << (BitsPerByte * 1)) |
 733     ((int64_t)v.build_number()           << (BitsPerByte * 0));
 734 }
 735 
 736 int JDK_Version::compare(const JDK_Version& other) const {
 737   assert(is_valid() && other.is_valid(), "Invalid version (uninitialized?)");
 738   uint64_t e = encode_jdk_version(*this);
 739   uint64_t o = encode_jdk_version(other);
 740   return (e > o) ? 1 : ((e == o) ? 0 : -1);
 741 }
 742 
 743 void JDK_Version::to_string(char* buffer, size_t buflen) const {
 744   assert(buffer && buflen > 0, "call with useful buffer");
 745   size_t index = 0;
 746 
 747   if (!is_valid()) {
 748     jio_snprintf(buffer, buflen, "%s", "(uninitialized)");
 749   } else {
 750     int rc = jio_snprintf(
 751         &buffer[index], buflen - index, "%d.%d", _major, _minor);
 752     if (rc == -1) return;
 753     index += rc;
 754     if (_security > 0) {
 755       rc = jio_snprintf(&buffer[index], buflen - index, ".%d", _security);
 756       if (rc == -1) return;
 757       index += rc;
 758     }
 759     if (_patch > 0) {
 760       rc = jio_snprintf(&buffer[index], buflen - index, ".%d", _patch);
 761       if (rc == -1) return;
 762       index += rc;
 763     }
 764     if (_build > 0) {
 765       rc = jio_snprintf(&buffer[index], buflen - index, "+%d", _build);
 766       if (rc == -1) return;
 767       index += rc;
 768     }
 769   }
 770 }