author | pliden |
Fri, 11 Apr 2014 12:29:24 +0200 | |
changeset 24094 | 5dbf1f44de18 |
parent 19319 | 0ad35be0733a |
child 24426 | 0a69c8cdfca9 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
16606
diff
changeset
|
2 |
* Copyright (c) 1997, 2013, 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" |
13087 | 26 |
#include "classfile/symbolTable.hpp" |
7397 | 27 |
#include "code/icBuffer.hpp" |
28 |
#include "gc_interface/collectedHeap.hpp" |
|
29 |
#include "interpreter/bytecodes.hpp" |
|
30 |
#include "memory/universe.hpp" |
|
31 |
#include "prims/methodHandles.hpp" |
|
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" |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13975
diff
changeset
|
37 |
#include "utilities/macros.hpp" |
1 | 38 |
|
39 |
// Initialization done by VM thread in vm_init_globals() |
|
40 |
void check_ThreadShadow(); |
|
41 |
void eventlog_init(); |
|
42 |
void mutex_init(); |
|
43 |
void chunkpool_init(); |
|
44 |
void perfMemory_init(); |
|
45 |
||
46 |
// Initialization done by Java thread in init_globals() |
|
47 |
void management_init(); |
|
48 |
void bytecodes_init(); |
|
49 |
void classLoader_init(); |
|
50 |
void codeCache_init(); |
|
51 |
void VM_Version_init(); |
|
11417
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7712
diff
changeset
|
52 |
void os_init_globals(); // depends on VM_Version_init, before universe_init |
1 | 53 |
void stubRoutines_init1(); |
11417
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7712
diff
changeset
|
54 |
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
|
55 |
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
|
56 |
void invocationCounter_init(); // before any methods loaded |
1 | 57 |
void marksweep_init(); |
58 |
void accessFlags_init(); |
|
59 |
void templateTable_init(); |
|
60 |
void InterfaceSupport_init(); |
|
11417
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7712
diff
changeset
|
61 |
void universe2_init(); // dependent on codeCache_init and stubRoutines_init, loads primordial classes |
1 | 62 |
void referenceProcessor_init(); |
63 |
void jni_handles_init(); |
|
64 |
void vmStructs_init(); |
|
65 |
||
66 |
void vtableStubs_init(); |
|
67 |
void InlineCacheBuffer_init(); |
|
68 |
void compilerOracle_init(); |
|
69 |
void compilationPolicy_init(); |
|
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11441
diff
changeset
|
70 |
void compileBroker_init(); |
1 | 71 |
|
72 |
// Initialization after compiler initialization |
|
73 |
bool universe_post_init(); // must happen after compiler_init |
|
74 |
void javaClasses_init(); // must happen after vtable initialization |
|
75 |
void stubRoutines_init2(); // note: StubRoutines need 2-phase init |
|
76 |
||
77 |
// Do not disable thread-local-storage, as it is important for some |
|
78 |
// JNI/JVM/JVMTI functions and signal handlers to work properly |
|
79 |
// during VM shutdown |
|
80 |
void perfMemory_exit(); |
|
81 |
void ostream_exit(); |
|
82 |
||
83 |
void vm_init_globals() { |
|
84 |
check_ThreadShadow(); |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
85 |
basic_types_init(); |
1 | 86 |
eventlog_init(); |
87 |
mutex_init(); |
|
88 |
chunkpool_init(); |
|
89 |
perfMemory_init(); |
|
90 |
} |
|
91 |
||
92 |
||
93 |
jint init_globals() { |
|
94 |
HandleMark hm; |
|
95 |
management_init(); |
|
96 |
bytecodes_init(); |
|
97 |
classLoader_init(); |
|
98 |
codeCache_init(); |
|
99 |
VM_Version_init(); |
|
11417
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7712
diff
changeset
|
100 |
os_init_globals(); |
1 | 101 |
stubRoutines_init1(); |
11417
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7712
diff
changeset
|
102 |
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
|
103 |
// stubRoutines_init1 and metaspace_init. |
1 | 104 |
if (status != JNI_OK) |
105 |
return status; |
|
106 |
||
107 |
interpreter_init(); // before any methods loaded |
|
108 |
invocationCounter_init(); // before any methods loaded |
|
109 |
marksweep_init(); |
|
110 |
accessFlags_init(); |
|
111 |
templateTable_init(); |
|
112 |
InterfaceSupport_init(); |
|
113 |
SharedRuntime::generate_stubs(); |
|
11417
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7712
diff
changeset
|
114 |
universe2_init(); // dependent on codeCache_init and stubRoutines_init1 |
1 | 115 |
referenceProcessor_init(); |
116 |
jni_handles_init(); |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13728
diff
changeset
|
117 |
#if INCLUDE_VM_STRUCTS |
1 | 118 |
vmStructs_init(); |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13728
diff
changeset
|
119 |
#endif // INCLUDE_VM_STRUCTS |
1 | 120 |
|
121 |
vtableStubs_init(); |
|
122 |
InlineCacheBuffer_init(); |
|
123 |
compilerOracle_init(); |
|
124 |
compilationPolicy_init(); |
|
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11441
diff
changeset
|
125 |
compileBroker_init(); |
1 | 126 |
VMRegImpl::set_regName(); |
127 |
||
128 |
if (!universe_post_init()) { |
|
129 |
return JNI_ERR; |
|
130 |
} |
|
11417
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
7712
diff
changeset
|
131 |
javaClasses_init(); // must happen after vtable initialization |
1 | 132 |
stubRoutines_init2(); // note: StubRoutines need 2-phase init |
133 |
||
6272
94a20ad0e9de
6978249: spill between cpu and fpu registers when those moves are fast
never
parents:
5924
diff
changeset
|
134 |
// 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
|
135 |
// have been set so dump the flags now. |
94a20ad0e9de
6978249: spill between cpu and fpu registers when those moves are fast
never
parents:
5924
diff
changeset
|
136 |
if (PrintFlagsFinal) { |
11441 | 137 |
CommandLineFlags::printFlags(tty, false); |
6272
94a20ad0e9de
6978249: spill between cpu and fpu registers when those moves are fast
never
parents:
5924
diff
changeset
|
138 |
} |
94a20ad0e9de
6978249: spill between cpu and fpu registers when those moves are fast
never
parents:
5924
diff
changeset
|
139 |
|
1 | 140 |
return JNI_OK; |
141 |
} |
|
142 |
||
143 |
||
144 |
void exit_globals() { |
|
145 |
static bool destructorsCalled = false; |
|
146 |
if (!destructorsCalled) { |
|
147 |
destructorsCalled = true; |
|
148 |
perfMemory_exit(); |
|
149 |
if (PrintSafepointStatistics) { |
|
150 |
// Print the collected safepoint statistics. |
|
151 |
SafepointSynchronize::print_stat_on_exit(); |
|
152 |
} |
|
13087 | 153 |
if (PrintStringTableStatistics) { |
154 |
SymbolTable::dump(tty); |
|
155 |
StringTable::dump(tty); |
|
156 |
} |
|
1 | 157 |
ostream_exit(); |
158 |
} |
|
159 |
} |
|
160 |
||
161 |
||
162 |
static bool _init_completed = false; |
|
163 |
||
164 |
bool is_init_completed() { |
|
165 |
return _init_completed; |
|
166 |
} |
|
167 |
||
168 |
||
169 |
void set_init_completed() { |
|
7384
71eebb634028
7000578: CMS: assert(SafepointSynchronize::is_at_safepoint()) failed: Else races are possible
ysr
parents:
6272
diff
changeset
|
170 |
assert(Universe::is_fully_initialized(), "Should have completed initialization"); |
1 | 171 |
_init_completed = true; |
172 |
} |