src/share/vm/runtime/init.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8015774 Sdiff src/share/vm/runtime

src/share/vm/runtime/init.cpp

Print this page




  32 #include "runtime/handles.inline.hpp"
  33 #include "runtime/icache.hpp"
  34 #include "runtime/init.hpp"
  35 #include "runtime/safepoint.hpp"
  36 #include "runtime/sharedRuntime.hpp"
  37 #include "services/memTracker.hpp"
  38 #include "utilities/macros.hpp"
  39 
  40 
  41 // Initialization done by VM thread in vm_init_globals()
  42 void check_ThreadShadow();
  43 void eventlog_init();
  44 void mutex_init();
  45 void chunkpool_init();
  46 void perfMemory_init();
  47 
  48 // Initialization done by Java thread in init_globals()
  49 void management_init();
  50 void bytecodes_init();
  51 void classLoader_init();

  52 void codeCache_init();
  53 void VM_Version_init();
  54 void os_init_globals();        // depends on VM_Version_init, before universe_init
  55 void stubRoutines_init1();
  56 jint universe_init();          // depends on codeCache_init and stubRoutines_init
  57 void interpreter_init();       // before any methods loaded
  58 void invocationCounter_init(); // before any methods loaded
  59 void marksweep_init();
  60 void accessFlags_init();
  61 void templateTable_init();
  62 void InterfaceSupport_init();
  63 void universe2_init();  // dependent on codeCache_init and stubRoutines_init, loads primordial classes
  64 void referenceProcessor_init();
  65 void jni_handles_init();
  66 void vmStructs_init();
  67 
  68 void vtableStubs_init();
  69 void InlineCacheBuffer_init();
  70 void compilerOracle_init();
  71 void compilationPolicy_init();
  72 void compileBroker_init();
  73 
  74 // Initialization after compiler initialization
  75 bool universe_post_init();  // must happen after compiler_init
  76 void javaClasses_init();  // must happen after vtable initialization
  77 void stubRoutines_init2(); // note: StubRoutines need 2-phase init
  78 
  79 // Do not disable thread-local-storage, as it is important for some
  80 // JNI/JVM/JVMTI functions and signal handlers to work properly
  81 // during VM shutdown
  82 void perfMemory_exit();
  83 void ostream_exit();
  84 
  85 void vm_init_globals() {
  86   check_ThreadShadow();
  87   basic_types_init();
  88   eventlog_init();
  89   mutex_init();
  90   chunkpool_init();
  91   perfMemory_init();
  92 }
  93 
  94 
  95 jint init_globals() {
  96   HandleMark hm;
  97   management_init();
  98   bytecodes_init();
  99   classLoader_init();

 100   codeCache_init();
 101   VM_Version_init();
 102   os_init_globals();
 103   stubRoutines_init1();
 104   jint status = universe_init();  // dependent on codeCache_init and
 105                                   // stubRoutines_init1 and metaspace_init.
 106   if (status != JNI_OK)
 107     return status;
 108 
 109   interpreter_init();  // before any methods loaded
 110   invocationCounter_init();  // before any methods loaded
 111   marksweep_init();
 112   accessFlags_init();
 113   templateTable_init();
 114   InterfaceSupport_init();
 115   SharedRuntime::generate_stubs();
 116   universe2_init();  // dependent on codeCache_init and stubRoutines_init1
 117   referenceProcessor_init();
 118   jni_handles_init();
 119 #if INCLUDE_VM_STRUCTS
 120   vmStructs_init();
 121 #endif // INCLUDE_VM_STRUCTS
 122 
 123   vtableStubs_init();
 124   InlineCacheBuffer_init();
 125   compilerOracle_init();
 126   compilationPolicy_init();
 127   compileBroker_init();
 128   VMRegImpl::set_regName();
 129 
 130   if (!universe_post_init()) {
 131     return JNI_ERR;
 132   }
 133   javaClasses_init();   // must happen after vtable initialization
 134   stubRoutines_init2(); // note: StubRoutines need 2-phase init
 135 
 136 #if INCLUDE_NMT
 137   // Solaris stack is walkable only after stubRoutines are set up.
 138   // On Other platforms, the stack is always walkable.
 139   NMT_stack_walkable = true;
 140 #endif // INCLUDE_NMT
 141 
 142   // All the flags that get adjusted by VM_Version_init and os::init_2
 143   // have been set so dump the flags now.
 144   if (PrintFlagsFinal) {
 145     CommandLineFlags::printFlags(tty, false);
 146   }




  32 #include "runtime/handles.inline.hpp"
  33 #include "runtime/icache.hpp"
  34 #include "runtime/init.hpp"
  35 #include "runtime/safepoint.hpp"
  36 #include "runtime/sharedRuntime.hpp"
  37 #include "services/memTracker.hpp"
  38 #include "utilities/macros.hpp"
  39 
  40 
  41 // Initialization done by VM thread in vm_init_globals()
  42 void check_ThreadShadow();
  43 void eventlog_init();
  44 void mutex_init();
  45 void chunkpool_init();
  46 void perfMemory_init();
  47 
  48 // Initialization done by Java thread in init_globals()
  49 void management_init();
  50 void bytecodes_init();
  51 void classLoader_init();
  52 void compilationPolicy_init();
  53 void codeCache_init();
  54 void VM_Version_init();
  55 void os_init_globals();        // depends on VM_Version_init, before universe_init
  56 void stubRoutines_init1();
  57 jint universe_init();          // depends on codeCache_init and stubRoutines_init
  58 void interpreter_init();       // before any methods loaded
  59 void invocationCounter_init(); // before any methods loaded
  60 void marksweep_init();
  61 void accessFlags_init();
  62 void templateTable_init();
  63 void InterfaceSupport_init();
  64 void universe2_init();  // dependent on codeCache_init and stubRoutines_init, loads primordial classes
  65 void referenceProcessor_init();
  66 void jni_handles_init();
  67 void vmStructs_init();
  68 
  69 void vtableStubs_init();
  70 void InlineCacheBuffer_init();
  71 void compilerOracle_init();

  72 void compileBroker_init();
  73 
  74 // Initialization after compiler initialization
  75 bool universe_post_init();  // must happen after compiler_init
  76 void javaClasses_init();  // must happen after vtable initialization
  77 void stubRoutines_init2(); // note: StubRoutines need 2-phase init
  78 
  79 // Do not disable thread-local-storage, as it is important for some
  80 // JNI/JVM/JVMTI functions and signal handlers to work properly
  81 // during VM shutdown
  82 void perfMemory_exit();
  83 void ostream_exit();
  84 
  85 void vm_init_globals() {
  86   check_ThreadShadow();
  87   basic_types_init();
  88   eventlog_init();
  89   mutex_init();
  90   chunkpool_init();
  91   perfMemory_init();
  92 }
  93 
  94 
  95 jint init_globals() {
  96   HandleMark hm;
  97   management_init();
  98   bytecodes_init();
  99   classLoader_init();
 100   compilationPolicy_init();
 101   codeCache_init();
 102   VM_Version_init();
 103   os_init_globals();
 104   stubRoutines_init1();
 105   jint status = universe_init();  // dependent on codeCache_init and
 106                                   // stubRoutines_init1 and metaspace_init.
 107   if (status != JNI_OK)
 108     return status;
 109 
 110   interpreter_init();  // before any methods loaded
 111   invocationCounter_init();  // before any methods loaded
 112   marksweep_init();
 113   accessFlags_init();
 114   templateTable_init();
 115   InterfaceSupport_init();
 116   SharedRuntime::generate_stubs();
 117   universe2_init();  // dependent on codeCache_init and stubRoutines_init1
 118   referenceProcessor_init();
 119   jni_handles_init();
 120 #if INCLUDE_VM_STRUCTS
 121   vmStructs_init();
 122 #endif // INCLUDE_VM_STRUCTS
 123 
 124   vtableStubs_init();
 125   InlineCacheBuffer_init();
 126   compilerOracle_init();

 127   compileBroker_init();
 128   VMRegImpl::set_regName();
 129 
 130   if (!universe_post_init()) {
 131     return JNI_ERR;
 132   }
 133   javaClasses_init();   // must happen after vtable initialization
 134   stubRoutines_init2(); // note: StubRoutines need 2-phase init
 135 
 136 #if INCLUDE_NMT
 137   // Solaris stack is walkable only after stubRoutines are set up.
 138   // On Other platforms, the stack is always walkable.
 139   NMT_stack_walkable = true;
 140 #endif // INCLUDE_NMT
 141 
 142   // All the flags that get adjusted by VM_Version_init and os::init_2
 143   // have been set so dump the flags now.
 144   if (PrintFlagsFinal) {
 145     CommandLineFlags::printFlags(tty, false);
 146   }


src/share/vm/runtime/init.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File