annotate src/share/vm/runtime/init.cpp @ 196:d1605aabd0a1 jdk7-b30

6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
author xdono
date Wed, 02 Jul 2008 12:55:16 -0700
parents ba764ed4b6f2
children d95b224e9f17
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 113
diff changeset
2 * Copyright 1997-2008 Sun Microsystems, Inc. All Rights Reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_init.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // Initialization done by VM thread in vm_init_globals()
a61af66fc99e Initial load
duke
parents:
diff changeset
29 void check_ThreadShadow();
a61af66fc99e Initial load
duke
parents:
diff changeset
30 void eventlog_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
31 void mutex_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
32 void chunkpool_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
33 void perfMemory_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // Initialization done by Java thread in init_globals()
a61af66fc99e Initial load
duke
parents:
diff changeset
36 void management_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
37 void vtune_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
38 void bytecodes_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
39 void classLoader_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
40 void codeCache_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
41 void VM_Version_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
42 void JDK_Version_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
43 void stubRoutines_init1();
a61af66fc99e Initial load
duke
parents:
diff changeset
44 jint universe_init(); // dependent on codeCache_init and stubRoutines_init
a61af66fc99e Initial load
duke
parents:
diff changeset
45 void interpreter_init(); // before any methods loaded
a61af66fc99e Initial load
duke
parents:
diff changeset
46 void invocationCounter_init(); // before any methods loaded
a61af66fc99e Initial load
duke
parents:
diff changeset
47 void marksweep_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
48 void accessFlags_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
49 void templateTable_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
50 void InterfaceSupport_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
51 void universe2_init(); // dependent on codeCache_init and stubRoutines_init
a61af66fc99e Initial load
duke
parents:
diff changeset
52 void referenceProcessor_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
53 void jni_handles_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
54 void vmStructs_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 void vtableStubs_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
57 void InlineCacheBuffer_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
58 void compilerOracle_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
59 void compilationPolicy_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // Initialization after compiler initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
63 bool universe_post_init(); // must happen after compiler_init
a61af66fc99e Initial load
duke
parents:
diff changeset
64 void javaClasses_init(); // must happen after vtable initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
65 void stubRoutines_init2(); // note: StubRoutines need 2-phase init
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // Do not disable thread-local-storage, as it is important for some
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // JNI/JVM/JVMTI functions and signal handlers to work properly
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // during VM shutdown
a61af66fc99e Initial load
duke
parents:
diff changeset
70 void perfMemory_exit();
a61af66fc99e Initial load
duke
parents:
diff changeset
71 void ostream_exit();
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 void vm_init_globals() {
a61af66fc99e Initial load
duke
parents:
diff changeset
74 check_ThreadShadow();
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
75 basic_types_init();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
76 eventlog_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
77 mutex_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
78 chunkpool_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
79 perfMemory_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
80 }
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 jint init_globals() {
a61af66fc99e Initial load
duke
parents:
diff changeset
84 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 management_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
86 vtune_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
87 bytecodes_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
88 classLoader_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
89 codeCache_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
90 VM_Version_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
91 JDK_Version_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
92 stubRoutines_init1();
a61af66fc99e Initial load
duke
parents:
diff changeset
93 jint status = universe_init(); // dependent on codeCache_init and stubRoutines_init
a61af66fc99e Initial load
duke
parents:
diff changeset
94 if (status != JNI_OK)
a61af66fc99e Initial load
duke
parents:
diff changeset
95 return status;
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 interpreter_init(); // before any methods loaded
a61af66fc99e Initial load
duke
parents:
diff changeset
98 invocationCounter_init(); // before any methods loaded
a61af66fc99e Initial load
duke
parents:
diff changeset
99 marksweep_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
100 accessFlags_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
101 templateTable_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
102 InterfaceSupport_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
103 SharedRuntime::generate_stubs();
a61af66fc99e Initial load
duke
parents:
diff changeset
104 universe2_init(); // dependent on codeCache_init and stubRoutines_init
a61af66fc99e Initial load
duke
parents:
diff changeset
105 referenceProcessor_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
106 jni_handles_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
107 #ifndef VM_STRUCTS_KERNEL
a61af66fc99e Initial load
duke
parents:
diff changeset
108 vmStructs_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
109 #endif // VM_STRUCTS_KERNEL
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 vtableStubs_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
112 InlineCacheBuffer_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
113 compilerOracle_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
114 compilationPolicy_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
115 VMRegImpl::set_regName();
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 if (!universe_post_init()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 return JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
119 }
a61af66fc99e Initial load
duke
parents:
diff changeset
120 javaClasses_init(); // must happen after vtable initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
121 stubRoutines_init2(); // note: StubRoutines need 2-phase init
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 // Although we'd like to, we can't easily do a heap verify
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // here because the main thread isn't yet a JavaThread, so
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // its TLAB may not be made parseable from the usual interfaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
126 if (VerifyBeforeGC && !UseTLAB &&
a61af66fc99e Initial load
duke
parents:
diff changeset
127 Universe::heap()->total_collections() >= VerifyGCStartAt) {
a61af66fc99e Initial load
duke
parents:
diff changeset
128 Universe::heap()->prepare_for_verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
129 Universe::verify(); // make sure we're starting with a clean slate
a61af66fc99e Initial load
duke
parents:
diff changeset
130 }
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 return JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 }
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 void exit_globals() {
a61af66fc99e Initial load
duke
parents:
diff changeset
137 static bool destructorsCalled = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
138 if (!destructorsCalled) {
a61af66fc99e Initial load
duke
parents:
diff changeset
139 destructorsCalled = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 perfMemory_exit();
a61af66fc99e Initial load
duke
parents:
diff changeset
141 if (PrintSafepointStatistics) {
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // Print the collected safepoint statistics.
a61af66fc99e Initial load
duke
parents:
diff changeset
143 SafepointSynchronize::print_stat_on_exit();
a61af66fc99e Initial load
duke
parents:
diff changeset
144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
145 ostream_exit();
a61af66fc99e Initial load
duke
parents:
diff changeset
146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
147 }
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 static bool _init_completed = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
151
a61af66fc99e Initial load
duke
parents:
diff changeset
152 bool is_init_completed() {
a61af66fc99e Initial load
duke
parents:
diff changeset
153 return _init_completed;
a61af66fc99e Initial load
duke
parents:
diff changeset
154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 void set_init_completed() {
a61af66fc99e Initial load
duke
parents:
diff changeset
158 _init_completed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
159 }