src/share/vm/runtime/java.cpp

Fri, 24 Jun 2016 17:12:13 +0800

author
aoqi<aoqi@loongson.cn>
date
Fri, 24 Jun 2016 17:12:13 +0800
changeset 25
873fd82b133d
parent 1
2d8a650513c2
child 6876
710a3c8b516e
permissions
-rw-r--r--

[Code Reorganization] Removed GC related modifications made by Loongson, for example, UseOldNUMA.

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

mercurial