author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 42664 | hotspot/src/share/vm/runtime/init.cpp@29142a56c193 |
child 47688 | 3d1e3786d66e |
permissions | -rw-r--r-- |
1 | 1 |
/* |
36082
e734f3a55bdf
8136854: G1 ConcurrentG1RefineThread::stop delays JVM shutdown for >150ms
tschatzl
parents:
34666
diff
changeset
|
2 |
* Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5050
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5050
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5050
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
24426
0a69c8cdfca9
8038654: Separate SymbolTable and StringTable code
gziemski
parents:
19319
diff
changeset
|
26 |
#include "classfile/stringTable.hpp" |
34666 | 27 |
#include "classfile/symbolTable.hpp" |
7397 | 28 |
#include "code/icBuffer.hpp" |
30764 | 29 |
#include "gc/shared/collectedHeap.hpp" |
7397 | 30 |
#include "interpreter/bytecodes.hpp" |
31 |
#include "memory/universe.hpp" |
|
32 |
#include "prims/methodHandles.hpp" |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
33 |
#include "runtime/globals.hpp" |
7397 | 34 |
#include "runtime/handles.inline.hpp" |
35 |
#include "runtime/icache.hpp" |
|
36 |
#include "runtime/init.hpp" |
|
37 |
#include "runtime/safepoint.hpp" |
|
38 |
#include "runtime/sharedRuntime.hpp" |
|
25946 | 39 |
#include "services/memTracker.hpp" |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13975
diff
changeset
|
40 |
#include "utilities/macros.hpp" |
1 | 41 |
|
25946 | 42 |
|
1 | 43 |
// Initialization done by VM thread in vm_init_globals() |
44 |
void check_ThreadShadow(); |
|
45 |
void eventlog_init(); |
|
46 |
void mutex_init(); |
|
47 |
void chunkpool_init(); |
|
48 |
void perfMemory_init(); |
|
37188
390e3a2e7cee
8152196: SuspendibleThreadSet::yield scales poorly
kbarrett
parents:
36104
diff
changeset
|
49 |
void SuspendibleThreadSet_init() NOT_ALL_GCS_RETURN; |
1 | 50 |
|
51 |
// Initialization done by Java thread in init_globals() |
|
52 |
void management_init(); |
|
53 |
void bytecodes_init(); |
|
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37188
diff
changeset
|
54 |
void classLoader_init1(); |
26796 | 55 |
void compilationPolicy_init(); |
1 | 56 |
void codeCache_init(); |
57 |
void VM_Version_init(); |
|
11417
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7712
diff
changeset
|
58 |
void os_init_globals(); // depends on VM_Version_init, before universe_init |
1 | 59 |
void stubRoutines_init1(); |
11417
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7712
diff
changeset
|
60 |
jint universe_init(); // depends on codeCache_init and stubRoutines_init |
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7712
diff
changeset
|
61 |
void interpreter_init(); // before any methods loaded |
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7712
diff
changeset
|
62 |
void invocationCounter_init(); // before any methods loaded |
1 | 63 |
void marksweep_init(); |
64 |
void accessFlags_init(); |
|
65 |
void templateTable_init(); |
|
66 |
void InterfaceSupport_init(); |
|
11417
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7712
diff
changeset
|
67 |
void universe2_init(); // dependent on codeCache_init and stubRoutines_init, loads primordial classes |
1 | 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(); |
|
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
32619
diff
changeset
|
75 |
bool compileBroker_init(); |
34195
89011d12ebd3
8139595: MethodHandles::remove_dependent_nmethod is not MT safe
vlivanov
parents:
33451
diff
changeset
|
76 |
void dependencyContext_init(); |
1 | 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(); |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
91 |
basic_types_init(); |
1 | 92 |
eventlog_init(); |
93 |
mutex_init(); |
|
94 |
chunkpool_init(); |
|
95 |
perfMemory_init(); |
|
37188
390e3a2e7cee
8152196: SuspendibleThreadSet::yield scales poorly
kbarrett
parents:
36104
diff
changeset
|
96 |
SuspendibleThreadSet_init(); |
1 | 97 |
} |
98 |
||
99 |
||
100 |
jint init_globals() { |
|
101 |
HandleMark hm; |
|
102 |
management_init(); |
|
103 |
bytecodes_init(); |
|
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37188
diff
changeset
|
104 |
classLoader_init1(); |
26796 | 105 |
compilationPolicy_init(); |
1 | 106 |
codeCache_init(); |
107 |
VM_Version_init(); |
|
11417
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7712
diff
changeset
|
108 |
os_init_globals(); |
1 | 109 |
stubRoutines_init1(); |
11417
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7712
diff
changeset
|
110 |
jint status = universe_init(); // dependent on codeCache_init and |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13087
diff
changeset
|
111 |
// stubRoutines_init1 and metaspace_init. |
1 | 112 |
if (status != JNI_OK) |
113 |
return status; |
|
114 |
||
115 |
interpreter_init(); // before any methods loaded |
|
116 |
invocationCounter_init(); // before any methods loaded |
|
117 |
marksweep_init(); |
|
118 |
accessFlags_init(); |
|
119 |
templateTable_init(); |
|
120 |
InterfaceSupport_init(); |
|
121 |
SharedRuntime::generate_stubs(); |
|
11417
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7712
diff
changeset
|
122 |
universe2_init(); // dependent on codeCache_init and stubRoutines_init1 |
1 | 123 |
referenceProcessor_init(); |
124 |
jni_handles_init(); |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13728
diff
changeset
|
125 |
#if INCLUDE_VM_STRUCTS |
1 | 126 |
vmStructs_init(); |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13728
diff
changeset
|
127 |
#endif // INCLUDE_VM_STRUCTS |
1 | 128 |
|
129 |
vtableStubs_init(); |
|
130 |
InlineCacheBuffer_init(); |
|
131 |
compilerOracle_init(); |
|
34195
89011d12ebd3
8139595: MethodHandles::remove_dependent_nmethod is not MT safe
vlivanov
parents:
33451
diff
changeset
|
132 |
dependencyContext_init(); |
89011d12ebd3
8139595: MethodHandles::remove_dependent_nmethod is not MT safe
vlivanov
parents:
33451
diff
changeset
|
133 |
|
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
32619
diff
changeset
|
134 |
if (!compileBroker_init()) { |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
32619
diff
changeset
|
135 |
return JNI_EINVAL; |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
32619
diff
changeset
|
136 |
} |
1 | 137 |
VMRegImpl::set_regName(); |
138 |
||
139 |
if (!universe_post_init()) { |
|
140 |
return JNI_ERR; |
|
141 |
} |
|
11417
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7712
diff
changeset
|
142 |
javaClasses_init(); // must happen after vtable initialization |
1 | 143 |
stubRoutines_init2(); // note: StubRoutines need 2-phase init |
36074
11263906664c
8138922: StubCodeDesc constructor publishes partially-constructed objects on StubCodeDesc::_list
vlivanov
parents:
34666
diff
changeset
|
144 |
MethodHandles::generate_adapters(); |
1 | 145 |
|
25946 | 146 |
#if INCLUDE_NMT |
147 |
// Solaris stack is walkable only after stubRoutines are set up. |
|
148 |
// On Other platforms, the stack is always walkable. |
|
149 |
NMT_stack_walkable = true; |
|
150 |
#endif // INCLUDE_NMT |
|
151 |
||
6272
94a20ad0e9de
6978249: spill between cpu and fpu registers when those moves are fast
never
parents:
5924
diff
changeset
|
152 |
// All the flags that get adjusted by VM_Version_init and os::init_2 |
94a20ad0e9de
6978249: spill between cpu and fpu registers when those moves are fast
never
parents:
5924
diff
changeset
|
153 |
// have been set so dump the flags now. |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
154 |
if (PrintFlagsFinal || PrintFlagsRanges) { |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
155 |
CommandLineFlags::printFlags(tty, false, PrintFlagsRanges); |
6272
94a20ad0e9de
6978249: spill between cpu and fpu registers when those moves are fast
never
parents:
5924
diff
changeset
|
156 |
} |
94a20ad0e9de
6978249: spill between cpu and fpu registers when those moves are fast
never
parents:
5924
diff
changeset
|
157 |
|
1 | 158 |
return JNI_OK; |
159 |
} |
|
160 |
||
161 |
||
162 |
void exit_globals() { |
|
163 |
static bool destructorsCalled = false; |
|
164 |
if (!destructorsCalled) { |
|
165 |
destructorsCalled = true; |
|
166 |
perfMemory_exit(); |
|
167 |
if (PrintSafepointStatistics) { |
|
168 |
// Print the collected safepoint statistics. |
|
169 |
SafepointSynchronize::print_stat_on_exit(); |
|
170 |
} |
|
13087 | 171 |
if (PrintStringTableStatistics) { |
172 |
SymbolTable::dump(tty); |
|
173 |
StringTable::dump(tty); |
|
174 |
} |
|
1 | 175 |
ostream_exit(); |
176 |
} |
|
177 |
} |
|
178 |
||
36082
e734f3a55bdf
8136854: G1 ConcurrentG1RefineThread::stop delays JVM shutdown for >150ms
tschatzl
parents:
34666
diff
changeset
|
179 |
static volatile bool _init_completed = false; |
1 | 180 |
|
181 |
bool is_init_completed() { |
|
182 |
return _init_completed; |
|
183 |
} |
|
184 |
||
185 |
||
186 |
void set_init_completed() { |
|
7384
71eebb634028
7000578: CMS: assert(SafepointSynchronize::is_at_safepoint()) failed: Else races are possible
ysr
parents:
6272
diff
changeset
|
187 |
assert(Universe::is_fully_initialized(), "Should have completed initialization"); |
1 | 188 |
_init_completed = true; |
189 |
} |