src/share/vm/runtime/java.cpp

Wed, 18 Sep 2013 07:02:10 -0700

author
dcubed
date
Wed, 18 Sep 2013 07:02:10 -0700
changeset 5743
63147986a428
parent 5369
71180a6e5080
child 5914
d13d7aba8c12
permissions
-rw-r--r--

8019835: Strings interned in different threads equal but does not ==
Summary: Add -XX:+VerifyStringTableAtExit option and code to verify StringTable invariants.
Reviewed-by: rdurbin, sspitsyn, coleenp

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

mercurial