1 /*
   2  * Copyright (c) 1997, 2015, 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 "classfile/stringTable.hpp"
  27 #include "classfile/symbolTable.hpp"
  28 #include "code/codeCacheExtensions.hpp"
  29 #include "code/icBuffer.hpp"
  30 #include "gc/shared/collectedHeap.hpp"
  31 #include "interpreter/bytecodes.hpp"
  32 #include "memory/universe.hpp"
  33 #include "prims/methodHandles.hpp"
  34 #include "runtime/globals.hpp"
  35 #include "runtime/handles.inline.hpp"
  36 #include "runtime/icache.hpp"
  37 #include "runtime/init.hpp"
  38 #include "runtime/safepoint.hpp"
  39 #include "runtime/sharedRuntime.hpp"
  40 #include "services/memTracker.hpp"
  41 #include "utilities/macros.hpp"
  42 
  43 
  44 // Initialization done by VM thread in vm_init_globals()
  45 void check_ThreadShadow();
  46 void eventlog_init();
  47 void mutex_init();
  48 void chunkpool_init();
  49 void perfMemory_init();
  50 
  51 // Initialization done by Java thread in init_globals()
  52 void management_init();
  53 void bytecodes_init();
  54 void classLoader_init();
  55 void compilationPolicy_init();
  56 void codeCache_init();
  57 void VM_Version_init();
  58 void os_init_globals();        // depends on VM_Version_init, before universe_init
  59 void stubRoutines_init1();
  60 jint universe_init();          // depends on codeCache_init and stubRoutines_init
  61 void interpreter_init();       // before any methods loaded
  62 void invocationCounter_init(); // before any methods loaded
  63 void marksweep_init();
  64 void accessFlags_init();
  65 void templateTable_init();
  66 void InterfaceSupport_init();
  67 void universe2_init();  // dependent on codeCache_init and stubRoutines_init, loads primordial classes
  68 void referenceProcessor_init();
  69 void jni_handles_init();
  70 void vmStructs_init();
  71 
  72 void vtableStubs_init();
  73 void InlineCacheBuffer_init();
  74 void compilerOracle_init();
  75 bool compileBroker_init();
  76 void dependencyContext_init();
  77 
  78 // Initialization after compiler initialization
  79 bool universe_post_init();  // must happen after compiler_init
  80 void javaClasses_init();  // must happen after vtable initialization
  81 void stubRoutines_init2(); // note: StubRoutines need 2-phase init
  82 
  83 // Do not disable thread-local-storage, as it is important for some
  84 // JNI/JVM/JVMTI functions and signal handlers to work properly
  85 // during VM shutdown
  86 void perfMemory_exit();
  87 void ostream_exit();
  88 
  89 void vm_init_globals() {
  90   check_ThreadShadow();
  91   basic_types_init();
  92   eventlog_init();
  93   mutex_init();
  94   chunkpool_init();
  95   perfMemory_init();
  96 }
  97 
  98 
  99 jint init_globals() {
 100   HandleMark hm;
 101   management_init();
 102   bytecodes_init();
 103   classLoader_init();
 104   compilationPolicy_init();
 105   codeCache_init();
 106   CodeCacheExtensions::initialize();
 107   VM_Version_init();
 108   CodeCacheExtensions::complete_step(CodeCacheExtensionsSteps::VMVersion);
 109   os_init_globals();
 110   stubRoutines_init1();
 111   CodeCacheExtensions::complete_step(CodeCacheExtensionsSteps::StubRoutines1);
 112   jint status = universe_init();  // dependent on codeCache_init and
 113                                   // stubRoutines_init1 and metaspace_init.
 114   if (status != JNI_OK)
 115     return status;
 116 
 117   CodeCacheExtensions::complete_step(CodeCacheExtensionsSteps::Universe);
 118   interpreter_init();  // before any methods loaded
 119   CodeCacheExtensions::complete_step(CodeCacheExtensionsSteps::Interpreter);
 120   invocationCounter_init();  // before any methods loaded
 121   marksweep_init();
 122   accessFlags_init();
 123   templateTable_init();
 124   InterfaceSupport_init();
 125   SharedRuntime::generate_stubs();
 126   universe2_init();  // dependent on codeCache_init and stubRoutines_init1
 127   referenceProcessor_init();
 128   jni_handles_init();
 129 #if INCLUDE_VM_STRUCTS
 130   vmStructs_init();
 131 #endif // INCLUDE_VM_STRUCTS
 132 
 133   vtableStubs_init();
 134   InlineCacheBuffer_init();
 135   compilerOracle_init();
 136   dependencyContext_init();
 137 
 138   if (!compileBroker_init()) {
 139     return JNI_EINVAL;
 140   }
 141   VMRegImpl::set_regName();
 142 
 143   if (!universe_post_init()) {
 144     return JNI_ERR;
 145   }
 146   javaClasses_init();   // must happen after vtable initialization
 147   stubRoutines_init2(); // note: StubRoutines need 2-phase init
 148   CodeCacheExtensions::complete_step(CodeCacheExtensionsSteps::StubRoutines2);
 149 
 150 #if INCLUDE_NMT
 151   // Solaris stack is walkable only after stubRoutines are set up.
 152   // On Other platforms, the stack is always walkable.
 153   NMT_stack_walkable = true;
 154 #endif // INCLUDE_NMT
 155 
 156   // All the flags that get adjusted by VM_Version_init and os::init_2
 157   // have been set so dump the flags now.
 158   if (PrintFlagsFinal || PrintFlagsRanges) {
 159     CommandLineFlags::printFlags(tty, false, PrintFlagsRanges);
 160   }
 161 
 162   CodeCacheExtensions::complete_step(CodeCacheExtensionsSteps::InitGlobals);
 163   return JNI_OK;
 164 }
 165 
 166 
 167 void exit_globals() {
 168   static bool destructorsCalled = false;
 169   if (!destructorsCalled) {
 170     destructorsCalled = true;
 171     perfMemory_exit();
 172     if (PrintSafepointStatistics) {
 173       // Print the collected safepoint statistics.
 174       SafepointSynchronize::print_stat_on_exit();
 175     }
 176     if (PrintStringTableStatistics) {
 177       SymbolTable::dump(tty);
 178       StringTable::dump(tty);
 179     }
 180     ostream_exit();
 181   }
 182 }
 183 
 184 
 185 static bool _init_completed = false;
 186 
 187 bool is_init_completed() {
 188   return _init_completed;
 189 }
 190 
 191 
 192 void set_init_completed() {
 193   assert(Universe::is_fully_initialized(), "Should have completed initialization");
 194   _init_completed = true;
 195 }