annotate src/share/vm/classfile/classLoader.hpp @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children 6a93908f268f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
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 // The VM class loader.
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #include <sys/stat.h>
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // Meta-index (optional, to be able to skip opening boot classpath jar files)
a61af66fc99e Initial load
duke
parents:
diff changeset
30 class MetaIndex: public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
31 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
32 char** _meta_package_names;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 int _num_meta_package_names;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
35 MetaIndex(char** meta_package_names, int num_meta_package_names);
a61af66fc99e Initial load
duke
parents:
diff changeset
36 ~MetaIndex();
a61af66fc99e Initial load
duke
parents:
diff changeset
37 bool may_contain(const char* class_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
38 };
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // Class path entry (directory or zip file)
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 class ClassPathEntry: public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
44 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
45 ClassPathEntry* _next;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // Next entry in class path
a61af66fc99e Initial load
duke
parents:
diff changeset
48 ClassPathEntry* next() { return _next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
49 void set_next(ClassPathEntry* next) {
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // may have unlocked readers, so write atomically.
a61af66fc99e Initial load
duke
parents:
diff changeset
51 OrderAccess::release_store_ptr(&_next, next);
a61af66fc99e Initial load
duke
parents:
diff changeset
52 }
a61af66fc99e Initial load
duke
parents:
diff changeset
53 virtual bool is_jar_file() = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
54 virtual const char* name() = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 virtual bool is_lazy();
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
57 ClassPathEntry();
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // Attempt to locate file_name through this class path entry.
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // Returns a class file parsing stream if successfull.
a61af66fc99e Initial load
duke
parents:
diff changeset
60 virtual ClassFileStream* open_stream(const char* name) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // Debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
62 NOT_PRODUCT(virtual void compile_the_world(Handle loader, TRAPS) = 0;)
a61af66fc99e Initial load
duke
parents:
diff changeset
63 NOT_PRODUCT(virtual bool is_rt_jar() = 0;)
a61af66fc99e Initial load
duke
parents:
diff changeset
64 };
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 class ClassPathDirEntry: public ClassPathEntry {
a61af66fc99e Initial load
duke
parents:
diff changeset
68 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
69 char* _dir; // Name of directory
a61af66fc99e Initial load
duke
parents:
diff changeset
70 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
71 bool is_jar_file() { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
72 const char* name() { return _dir; }
a61af66fc99e Initial load
duke
parents:
diff changeset
73 ClassPathDirEntry(char* dir);
a61af66fc99e Initial load
duke
parents:
diff changeset
74 ClassFileStream* open_stream(const char* name);
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // Debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
76 NOT_PRODUCT(void compile_the_world(Handle loader, TRAPS);)
a61af66fc99e Initial load
duke
parents:
diff changeset
77 NOT_PRODUCT(bool is_rt_jar();)
a61af66fc99e Initial load
duke
parents:
diff changeset
78 };
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // Type definitions for zip file and zip file entry
a61af66fc99e Initial load
duke
parents:
diff changeset
82 typedef void* jzfile;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 typedef struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
84 char *name; /* entry name */
a61af66fc99e Initial load
duke
parents:
diff changeset
85 jlong time; /* modification time */
a61af66fc99e Initial load
duke
parents:
diff changeset
86 jlong size; /* size of uncompressed data */
a61af66fc99e Initial load
duke
parents:
diff changeset
87 jlong csize; /* size of compressed data (zero if uncompressed) */
a61af66fc99e Initial load
duke
parents:
diff changeset
88 jint crc; /* crc of uncompressed data */
a61af66fc99e Initial load
duke
parents:
diff changeset
89 char *comment; /* optional zip file comment */
a61af66fc99e Initial load
duke
parents:
diff changeset
90 jbyte *extra; /* optional extra data */
a61af66fc99e Initial load
duke
parents:
diff changeset
91 jlong pos; /* position of LOC header (if negative) or data */
a61af66fc99e Initial load
duke
parents:
diff changeset
92 } jzentry;
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 class ClassPathZipEntry: public ClassPathEntry {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
97 jzfile* _zip; // The zip archive
a61af66fc99e Initial load
duke
parents:
diff changeset
98 char* _zip_name; // Name of zip archive
a61af66fc99e Initial load
duke
parents:
diff changeset
99 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
100 bool is_jar_file() { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
101 const char* name() { return _zip_name; }
a61af66fc99e Initial load
duke
parents:
diff changeset
102 ClassPathZipEntry(jzfile* zip, const char* zip_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
103 ~ClassPathZipEntry();
a61af66fc99e Initial load
duke
parents:
diff changeset
104 ClassFileStream* open_stream(const char* name);
a61af66fc99e Initial load
duke
parents:
diff changeset
105 void contents_do(void f(const char* name, void* context), void* context);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // Debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
107 NOT_PRODUCT(void compile_the_world(Handle loader, TRAPS);)
a61af66fc99e Initial load
duke
parents:
diff changeset
108 NOT_PRODUCT(void compile_the_world12(Handle loader, TRAPS);) // JDK 1.2 version
a61af66fc99e Initial load
duke
parents:
diff changeset
109 NOT_PRODUCT(void compile_the_world13(Handle loader, TRAPS);) // JDK 1.3 version
a61af66fc99e Initial load
duke
parents:
diff changeset
110 NOT_PRODUCT(bool is_rt_jar();)
a61af66fc99e Initial load
duke
parents:
diff changeset
111 NOT_PRODUCT(bool is_rt_jar12();)
a61af66fc99e Initial load
duke
parents:
diff changeset
112 NOT_PRODUCT(bool is_rt_jar13();)
a61af66fc99e Initial load
duke
parents:
diff changeset
113 };
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // For lazier loading of boot class path entries
a61af66fc99e Initial load
duke
parents:
diff changeset
117 class LazyClassPathEntry: public ClassPathEntry {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
119 char* _path; // dir or file
a61af66fc99e Initial load
duke
parents:
diff changeset
120 struct stat _st;
a61af66fc99e Initial load
duke
parents:
diff changeset
121 MetaIndex* _meta_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 volatile ClassPathEntry* _resolved_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
123 ClassPathEntry* resolve_entry();
a61af66fc99e Initial load
duke
parents:
diff changeset
124 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
125 bool is_jar_file();
a61af66fc99e Initial load
duke
parents:
diff changeset
126 const char* name() { return _path; }
a61af66fc99e Initial load
duke
parents:
diff changeset
127 LazyClassPathEntry(char* path, struct stat st);
a61af66fc99e Initial load
duke
parents:
diff changeset
128 ClassFileStream* open_stream(const char* name);
a61af66fc99e Initial load
duke
parents:
diff changeset
129 void set_meta_index(MetaIndex* meta_index) { _meta_index = meta_index; }
a61af66fc99e Initial load
duke
parents:
diff changeset
130 virtual bool is_lazy();
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // Debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
132 NOT_PRODUCT(void compile_the_world(Handle loader, TRAPS);)
a61af66fc99e Initial load
duke
parents:
diff changeset
133 NOT_PRODUCT(bool is_rt_jar();)
a61af66fc99e Initial load
duke
parents:
diff changeset
134 };
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 class PackageHashtable;
a61af66fc99e Initial load
duke
parents:
diff changeset
137 class PackageInfo;
a61af66fc99e Initial load
duke
parents:
diff changeset
138 class HashtableBucket;
a61af66fc99e Initial load
duke
parents:
diff changeset
139
a61af66fc99e Initial load
duke
parents:
diff changeset
140 class ClassLoader: AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
141 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
142 enum SomeConstants {
a61af66fc99e Initial load
duke
parents:
diff changeset
143 package_hash_table_size = 31 // Number of buckets
a61af66fc99e Initial load
duke
parents:
diff changeset
144 };
a61af66fc99e Initial load
duke
parents:
diff changeset
145 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
146 friend class LazyClassPathEntry;
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // Performance counters
a61af66fc99e Initial load
duke
parents:
diff changeset
149 static PerfCounter* _perf_accumulated_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
150 static PerfCounter* _perf_classes_inited;
a61af66fc99e Initial load
duke
parents:
diff changeset
151 static PerfCounter* _perf_class_init_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 static PerfCounter* _perf_class_verify_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
153 static PerfCounter* _perf_classes_linked;
a61af66fc99e Initial load
duke
parents:
diff changeset
154 static PerfCounter* _perf_class_link_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 static PerfCounter* _sync_systemLoaderLockContentionRate;
a61af66fc99e Initial load
duke
parents:
diff changeset
157 static PerfCounter* _sync_nonSystemLoaderLockContentionRate;
a61af66fc99e Initial load
duke
parents:
diff changeset
158 static PerfCounter* _sync_JVMFindLoadedClassLockFreeCounter;
a61af66fc99e Initial load
duke
parents:
diff changeset
159 static PerfCounter* _sync_JVMDefineClassLockFreeCounter;
a61af66fc99e Initial load
duke
parents:
diff changeset
160 static PerfCounter* _sync_JNIDefineClassLockFreeCounter;
a61af66fc99e Initial load
duke
parents:
diff changeset
161
a61af66fc99e Initial load
duke
parents:
diff changeset
162 static PerfCounter* _unsafe_defineClassCallCounter;
a61af66fc99e Initial load
duke
parents:
diff changeset
163 static PerfCounter* _isUnsyncloadClass;
a61af66fc99e Initial load
duke
parents:
diff changeset
164 static PerfCounter* _load_instance_class_failCounter;
a61af66fc99e Initial load
duke
parents:
diff changeset
165
a61af66fc99e Initial load
duke
parents:
diff changeset
166 // First entry in linked list of ClassPathEntry instances
a61af66fc99e Initial load
duke
parents:
diff changeset
167 static ClassPathEntry* _first_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // Last entry in linked list of ClassPathEntry instances
a61af66fc99e Initial load
duke
parents:
diff changeset
169 static ClassPathEntry* _last_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
170 // Hash table used to keep track of loaded packages
a61af66fc99e Initial load
duke
parents:
diff changeset
171 static PackageHashtable* _package_hash_table;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 static const char* _shared_archive;
a61af66fc99e Initial load
duke
parents:
diff changeset
173
a61af66fc99e Initial load
duke
parents:
diff changeset
174 // Hash function
a61af66fc99e Initial load
duke
parents:
diff changeset
175 static unsigned int hash(const char *s, int n);
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // Returns the package file name corresponding to the specified package
a61af66fc99e Initial load
duke
parents:
diff changeset
177 // or class name, or null if not found.
a61af66fc99e Initial load
duke
parents:
diff changeset
178 static PackageInfo* lookup_package(const char *pkgname);
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // Adds a new package entry for the specified class or package name and
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // corresponding directory or jar file name.
a61af66fc99e Initial load
duke
parents:
diff changeset
181 static bool add_package(const char *pkgname, int classpath_index, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // Initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
184 static void setup_meta_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
185 static void setup_bootstrap_search_path();
a61af66fc99e Initial load
duke
parents:
diff changeset
186 static void load_zip_library();
a61af66fc99e Initial load
duke
parents:
diff changeset
187 static void create_class_path_entry(char *path, struct stat st, ClassPathEntry **new_entry, bool lazy);
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // Canonicalizes path names, so strcmp will work properly. This is mainly
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // to avoid confusing the zip library
a61af66fc99e Initial load
duke
parents:
diff changeset
191 static bool get_canonical_path(char* orig, char* out, int len);
a61af66fc99e Initial load
duke
parents:
diff changeset
192 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
193 // Used by the kernel jvm.
a61af66fc99e Initial load
duke
parents:
diff changeset
194 static void update_class_path_entry_list(const char *path,
a61af66fc99e Initial load
duke
parents:
diff changeset
195 bool check_for_duplicates);
a61af66fc99e Initial load
duke
parents:
diff changeset
196 static void print_bootclasspath();
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 // Timing
a61af66fc99e Initial load
duke
parents:
diff changeset
199 static PerfCounter* perf_accumulated_time() { return _perf_accumulated_time; }
a61af66fc99e Initial load
duke
parents:
diff changeset
200 static PerfCounter* perf_classes_inited() { return _perf_classes_inited; }
a61af66fc99e Initial load
duke
parents:
diff changeset
201 static PerfCounter* perf_class_init_time() { return _perf_class_init_time; }
a61af66fc99e Initial load
duke
parents:
diff changeset
202 static PerfCounter* perf_class_verify_time() { return _perf_class_verify_time; }
a61af66fc99e Initial load
duke
parents:
diff changeset
203 static PerfCounter* perf_classes_linked() { return _perf_classes_linked; }
a61af66fc99e Initial load
duke
parents:
diff changeset
204 static PerfCounter* perf_class_link_time() { return _perf_class_link_time; }
a61af66fc99e Initial load
duke
parents:
diff changeset
205
a61af66fc99e Initial load
duke
parents:
diff changeset
206 // Record how often system loader lock object is contended
a61af66fc99e Initial load
duke
parents:
diff changeset
207 static PerfCounter* sync_systemLoaderLockContentionRate() {
a61af66fc99e Initial load
duke
parents:
diff changeset
208 return _sync_systemLoaderLockContentionRate;
a61af66fc99e Initial load
duke
parents:
diff changeset
209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 // Record how often non system loader lock object is contended
a61af66fc99e Initial load
duke
parents:
diff changeset
212 static PerfCounter* sync_nonSystemLoaderLockContentionRate() {
a61af66fc99e Initial load
duke
parents:
diff changeset
213 return _sync_nonSystemLoaderLockContentionRate;
a61af66fc99e Initial load
duke
parents:
diff changeset
214 }
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 // Record how many calls to JVM_FindLoadedClass w/o holding a lock
a61af66fc99e Initial load
duke
parents:
diff changeset
217 static PerfCounter* sync_JVMFindLoadedClassLockFreeCounter() {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 return _sync_JVMFindLoadedClassLockFreeCounter;
a61af66fc99e Initial load
duke
parents:
diff changeset
219 }
a61af66fc99e Initial load
duke
parents:
diff changeset
220
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // Record how many calls to JVM_DefineClass w/o holding a lock
a61af66fc99e Initial load
duke
parents:
diff changeset
222 static PerfCounter* sync_JVMDefineClassLockFreeCounter() {
a61af66fc99e Initial load
duke
parents:
diff changeset
223 return _sync_JVMDefineClassLockFreeCounter;
a61af66fc99e Initial load
duke
parents:
diff changeset
224 }
a61af66fc99e Initial load
duke
parents:
diff changeset
225
a61af66fc99e Initial load
duke
parents:
diff changeset
226 // Record how many calls to jni_DefineClass w/o holding a lock
a61af66fc99e Initial load
duke
parents:
diff changeset
227 static PerfCounter* sync_JNIDefineClassLockFreeCounter() {
a61af66fc99e Initial load
duke
parents:
diff changeset
228 return _sync_JNIDefineClassLockFreeCounter;
a61af66fc99e Initial load
duke
parents:
diff changeset
229 }
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231 // Record how many calls to Unsafe_DefineClass
a61af66fc99e Initial load
duke
parents:
diff changeset
232 static PerfCounter* unsafe_defineClassCallCounter() {
a61af66fc99e Initial load
duke
parents:
diff changeset
233 return _unsafe_defineClassCallCounter;
a61af66fc99e Initial load
duke
parents:
diff changeset
234 }
a61af66fc99e Initial load
duke
parents:
diff changeset
235
a61af66fc99e Initial load
duke
parents:
diff changeset
236 // Record how many times SystemDictionary::load_instance_class call
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // fails with linkageError when Unsyncloadclass flag is set.
a61af66fc99e Initial load
duke
parents:
diff changeset
238 static PerfCounter* load_instance_class_failCounter() {
a61af66fc99e Initial load
duke
parents:
diff changeset
239 return _load_instance_class_failCounter;
a61af66fc99e Initial load
duke
parents:
diff changeset
240 }
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // Load individual .class file
a61af66fc99e Initial load
duke
parents:
diff changeset
243 static instanceKlassHandle load_classfile(symbolHandle h_name, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // If the specified package has been loaded by the system, then returns
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // the name of the directory or ZIP file that the package was loaded from.
a61af66fc99e Initial load
duke
parents:
diff changeset
247 // Returns null if the package was not loaded.
a61af66fc99e Initial load
duke
parents:
diff changeset
248 // Note: The specified name can either be the name of a class or package.
a61af66fc99e Initial load
duke
parents:
diff changeset
249 // If a package name is specified, then it must be "/"-separator and also
a61af66fc99e Initial load
duke
parents:
diff changeset
250 // end with a trailing "/".
a61af66fc99e Initial load
duke
parents:
diff changeset
251 static oop get_system_package(const char* name, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
252
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // Returns an array of Java strings representing all of the currently
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // loaded system packages.
a61af66fc99e Initial load
duke
parents:
diff changeset
255 // Note: The package names returned are "/"-separated and end with a
a61af66fc99e Initial load
duke
parents:
diff changeset
256 // trailing "/".
a61af66fc99e Initial load
duke
parents:
diff changeset
257 static objArrayOop get_system_packages(TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // Initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
260 static void initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
261 static void create_package_info_table();
a61af66fc99e Initial load
duke
parents:
diff changeset
262 static void create_package_info_table(HashtableBucket *t, int length,
a61af66fc99e Initial load
duke
parents:
diff changeset
263 int number_of_entries);
a61af66fc99e Initial load
duke
parents:
diff changeset
264 static int compute_Object_vtable();
a61af66fc99e Initial load
duke
parents:
diff changeset
265
a61af66fc99e Initial load
duke
parents:
diff changeset
266 static ClassPathEntry* classpath_entry(int n) {
a61af66fc99e Initial load
duke
parents:
diff changeset
267 ClassPathEntry* e = ClassLoader::_first_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
268 while (--n >= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
269 assert(e != NULL, "Not that many classpath entries.");
a61af66fc99e Initial load
duke
parents:
diff changeset
270 e = e->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
271 }
a61af66fc99e Initial load
duke
parents:
diff changeset
272 return e;
a61af66fc99e Initial load
duke
parents:
diff changeset
273 }
a61af66fc99e Initial load
duke
parents:
diff changeset
274
a61af66fc99e Initial load
duke
parents:
diff changeset
275 // Sharing dump and restore
a61af66fc99e Initial load
duke
parents:
diff changeset
276 static void copy_package_info_buckets(char** top, char* end);
a61af66fc99e Initial load
duke
parents:
diff changeset
277 static void copy_package_info_table(char** top, char* end);
a61af66fc99e Initial load
duke
parents:
diff changeset
278
a61af66fc99e Initial load
duke
parents:
diff changeset
279 // VM monitoring and management support
a61af66fc99e Initial load
duke
parents:
diff changeset
280 static jlong classloader_time_ms();
a61af66fc99e Initial load
duke
parents:
diff changeset
281 static jlong class_method_total_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
282 static jlong class_init_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
283 static jlong class_init_time_ms();
a61af66fc99e Initial load
duke
parents:
diff changeset
284 static jlong class_verify_time_ms();
a61af66fc99e Initial load
duke
parents:
diff changeset
285 static jlong class_link_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
286 static jlong class_link_time_ms();
a61af66fc99e Initial load
duke
parents:
diff changeset
287
a61af66fc99e Initial load
duke
parents:
diff changeset
288 // indicates if class path already contains a entry (exact match by name)
a61af66fc99e Initial load
duke
parents:
diff changeset
289 static bool contains_entry(ClassPathEntry* entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
290
a61af66fc99e Initial load
duke
parents:
diff changeset
291 // adds a class path list
a61af66fc99e Initial load
duke
parents:
diff changeset
292 static void add_to_list(ClassPathEntry* new_entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
293
a61af66fc99e Initial load
duke
parents:
diff changeset
294 // creates a class path zip entry (returns NULL if JAR file cannot be opened)
a61af66fc99e Initial load
duke
parents:
diff changeset
295 static ClassPathZipEntry* create_class_path_zip_entry(const char *apath);
a61af66fc99e Initial load
duke
parents:
diff changeset
296
a61af66fc99e Initial load
duke
parents:
diff changeset
297 // Debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
298 static void verify() PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
299
a61af66fc99e Initial load
duke
parents:
diff changeset
300 // Force compilation of all methods in all classes in bootstrap class path (stress test)
a61af66fc99e Initial load
duke
parents:
diff changeset
301 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
302 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
303 static int _compile_the_world_counter;
a61af66fc99e Initial load
duke
parents:
diff changeset
304 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
305 static void compile_the_world();
a61af66fc99e Initial load
duke
parents:
diff changeset
306 static void compile_the_world_in(char* name, Handle loader, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
307 static int compile_the_world_counter() { return _compile_the_world_counter; }
a61af66fc99e Initial load
duke
parents:
diff changeset
308 #endif //PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
309 };