author | iklam |
Wed, 02 Aug 2017 18:06:38 -0700 | |
changeset 46746 | ea379ebb9447 |
parent 46630 | 75aa3e39d02c |
child 47103 | a993ec29ec75 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
42876
diff
changeset
|
2 |
* Copyright (c) 1997, 2017, 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:
3795
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3795
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:
3795
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_CLASSFILE_CLASSLOADER_HPP |
26 |
#define SHARE_VM_CLASSFILE_CLASSLOADER_HPP |
|
27 |
||
34666 | 28 |
#include "runtime/orderAccess.hpp" |
7397 | 29 |
#include "runtime/perfData.hpp" |
34666 | 30 |
#include "utilities/exceptions.hpp" |
27683
1d5707553fff
8064580: Move INCLUDE_CDS include section to the end of the include list
stefank
parents:
27025
diff
changeset
|
31 |
#include "utilities/macros.hpp" |
7397 | 32 |
|
1 | 33 |
// The VM class loader. |
34 |
#include <sys/stat.h> |
|
35 |
||
36508 | 36 |
// Name of boot "modules" image |
37 |
#define MODULES_IMAGE_NAME "modules" |
|
38 |
||
39 |
// Name of the resource containing mapping from module names to defining class loader type |
|
40 |
#define MODULE_LOADER_MAP "jdk/internal/vm/cds/resources/ModuleLoaderMap.dat" |
|
41 |
||
42 |
// Initial sizes of the following arrays are based on the generated ModuleLoaderMap.dat |
|
43 |
#define INITIAL_BOOT_MODULES_ARRAY_SIZE 30 |
|
44 |
#define INITIAL_PLATFORM_MODULES_ARRAY_SIZE 15 |
|
45 |
||
46 |
// Class path entry (directory or zip file) |
|
1 | 47 |
|
32619
47acec81dcca
8087181: Move native jimage code to its own library (maybe libjimage)
jlaskey
parents:
31612
diff
changeset
|
48 |
class JImageFile; |
34666 | 49 |
class ClassFileStream; |
31608 | 50 |
|
34666 | 51 |
class ClassPathEntry : public CHeapObj<mtClass> { |
52 |
private: |
|
40887
8d35e19f5548
8158854: Ensure release_store is paired with load_acquire in lock-free code
dholmes
parents:
40244
diff
changeset
|
53 |
ClassPathEntry* volatile _next; |
34666 | 54 |
public: |
1 | 55 |
// Next entry in class path |
40887
8d35e19f5548
8158854: Ensure release_store is paired with load_acquire in lock-free code
dholmes
parents:
40244
diff
changeset
|
56 |
ClassPathEntry* next() const { |
8d35e19f5548
8158854: Ensure release_store is paired with load_acquire in lock-free code
dholmes
parents:
40244
diff
changeset
|
57 |
return (ClassPathEntry*) OrderAccess::load_ptr_acquire(&_next); |
8d35e19f5548
8158854: Ensure release_store is paired with load_acquire in lock-free code
dholmes
parents:
40244
diff
changeset
|
58 |
} |
46630
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
46329
diff
changeset
|
59 |
virtual ~ClassPathEntry() {} |
1 | 60 |
void set_next(ClassPathEntry* next) { |
40887
8d35e19f5548
8158854: Ensure release_store is paired with load_acquire in lock-free code
dholmes
parents:
40244
diff
changeset
|
61 |
// may have unlocked readers, so ensure visibility. |
1 | 62 |
OrderAccess::release_store_ptr(&_next, next); |
63 |
} |
|
36508 | 64 |
virtual bool is_jrt() = 0; |
34666 | 65 |
virtual bool is_jar_file() const = 0; |
66 |
virtual const char* name() const = 0; |
|
67 |
virtual JImageFile* jimage() const = 0; |
|
1 | 68 |
// Constructor |
34666 | 69 |
ClassPathEntry() : _next(NULL) {} |
1 | 70 |
// Attempt to locate file_name through this class path entry. |
71 |
// Returns a class file parsing stream if successfull. |
|
19685
3df9b00b5d5f
8020675: invalid jar file in the bootclasspath could lead to jvm fatal error
ccheung
parents:
17004
diff
changeset
|
72 |
virtual ClassFileStream* open_stream(const char* name, TRAPS) = 0; |
1 | 73 |
// Debugging |
74 |
NOT_PRODUCT(virtual void compile_the_world(Handle loader, TRAPS) = 0;) |
|
75 |
}; |
|
76 |
||
77 |
class ClassPathDirEntry: public ClassPathEntry { |
|
78 |
private: |
|
26419 | 79 |
const char* _dir; // Name of directory |
1 | 80 |
public: |
36508 | 81 |
bool is_jrt() { return false; } |
34666 | 82 |
bool is_jar_file() const { return false; } |
83 |
const char* name() const { return _dir; } |
|
84 |
JImageFile* jimage() const { return NULL; } |
|
26419 | 85 |
ClassPathDirEntry(const char* dir); |
46630
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
46329
diff
changeset
|
86 |
virtual ~ClassPathDirEntry() {} |
19685
3df9b00b5d5f
8020675: invalid jar file in the bootclasspath could lead to jvm fatal error
ccheung
parents:
17004
diff
changeset
|
87 |
ClassFileStream* open_stream(const char* name, TRAPS); |
1 | 88 |
// Debugging |
89 |
NOT_PRODUCT(void compile_the_world(Handle loader, TRAPS);) |
|
90 |
}; |
|
91 |
||
92 |
||
93 |
// Type definitions for zip file and zip file entry |
|
94 |
typedef void* jzfile; |
|
95 |
typedef struct { |
|
96 |
char *name; /* entry name */ |
|
97 |
jlong time; /* modification time */ |
|
98 |
jlong size; /* size of uncompressed data */ |
|
99 |
jlong csize; /* size of compressed data (zero if uncompressed) */ |
|
100 |
jint crc; /* crc of uncompressed data */ |
|
101 |
char *comment; /* optional zip file comment */ |
|
102 |
jbyte *extra; /* optional extra data */ |
|
103 |
jlong pos; /* position of LOC header (if negative) or data */ |
|
104 |
} jzentry; |
|
105 |
||
106 |
||
107 |
class ClassPathZipEntry: public ClassPathEntry { |
|
37418
ebb041956080
8152329: jvm should treat the "Multi-Release" jar manifest attribute name as case insensitive
ccheung
parents:
37220
diff
changeset
|
108 |
enum { |
ebb041956080
8152329: jvm should treat the "Multi-Release" jar manifest attribute name as case insensitive
ccheung
parents:
37220
diff
changeset
|
109 |
_unknown = 0, |
ebb041956080
8152329: jvm should treat the "Multi-Release" jar manifest attribute name as case insensitive
ccheung
parents:
37220
diff
changeset
|
110 |
_yes = 1, |
ebb041956080
8152329: jvm should treat the "Multi-Release" jar manifest attribute name as case insensitive
ccheung
parents:
37220
diff
changeset
|
111 |
_no = 2 |
ebb041956080
8152329: jvm should treat the "Multi-Release" jar manifest attribute name as case insensitive
ccheung
parents:
37220
diff
changeset
|
112 |
}; |
1 | 113 |
private: |
26419 | 114 |
jzfile* _zip; // The zip archive |
115 |
const char* _zip_name; // Name of zip archive |
|
37220
ec74292c0c9c
8075253: Multiversion JAR feature: CDS does not support MV-JARs
ccheung
parents:
36508
diff
changeset
|
116 |
bool _is_boot_append; // entry coming from -Xbootclasspath/a |
37418
ebb041956080
8152329: jvm should treat the "Multi-Release" jar manifest attribute name as case insensitive
ccheung
parents:
37220
diff
changeset
|
117 |
u1 _multi_versioned; // indicates if the jar file has multi-versioned entries. |
ebb041956080
8152329: jvm should treat the "Multi-Release" jar manifest attribute name as case insensitive
ccheung
parents:
37220
diff
changeset
|
118 |
// It can have value of "_unknown", "_yes", or "_no" |
1 | 119 |
public: |
36508 | 120 |
bool is_jrt() { return false; } |
34666 | 121 |
bool is_jar_file() const { return true; } |
122 |
const char* name() const { return _zip_name; } |
|
123 |
JImageFile* jimage() const { return NULL; } |
|
37220
ec74292c0c9c
8075253: Multiversion JAR feature: CDS does not support MV-JARs
ccheung
parents:
36508
diff
changeset
|
124 |
ClassPathZipEntry(jzfile* zip, const char* zip_name, bool is_boot_append); |
46630
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
46329
diff
changeset
|
125 |
virtual ~ClassPathZipEntry(); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
126 |
u1* open_entry(const char* name, jint* filesize, bool nul_terminate, TRAPS); |
37220
ec74292c0c9c
8075253: Multiversion JAR feature: CDS does not support MV-JARs
ccheung
parents:
36508
diff
changeset
|
127 |
u1* open_versioned_entry(const char* name, jint* filesize, TRAPS) NOT_CDS_RETURN_(NULL); |
19685
3df9b00b5d5f
8020675: invalid jar file in the bootclasspath could lead to jvm fatal error
ccheung
parents:
17004
diff
changeset
|
128 |
ClassFileStream* open_stream(const char* name, TRAPS); |
1 | 129 |
void contents_do(void f(const char* name, void* context), void* context); |
37220
ec74292c0c9c
8075253: Multiversion JAR feature: CDS does not support MV-JARs
ccheung
parents:
36508
diff
changeset
|
130 |
bool is_multiple_versioned(TRAPS) NOT_CDS_RETURN_(false); |
1 | 131 |
// Debugging |
132 |
NOT_PRODUCT(void compile_the_world(Handle loader, TRAPS);) |
|
133 |
}; |
|
134 |
||
135 |
||
27562 | 136 |
// For java image files |
137 |
class ClassPathImageEntry: public ClassPathEntry { |
|
138 |
private: |
|
32619
47acec81dcca
8087181: Move native jimage code to its own library (maybe libjimage)
jlaskey
parents:
31612
diff
changeset
|
139 |
JImageFile* _jimage; |
47acec81dcca
8087181: Move native jimage code to its own library (maybe libjimage)
jlaskey
parents:
31612
diff
changeset
|
140 |
const char* _name; |
27562 | 141 |
public: |
36508 | 142 |
bool is_jrt(); |
34666 | 143 |
bool is_jar_file() const { return false; } |
144 |
bool is_open() const { return _jimage != NULL; } |
|
145 |
const char* name() const { return _name == NULL ? "" : _name; } |
|
146 |
JImageFile* jimage() const { return _jimage; } |
|
32619
47acec81dcca
8087181: Move native jimage code to its own library (maybe libjimage)
jlaskey
parents:
31612
diff
changeset
|
147 |
ClassPathImageEntry(JImageFile* jimage, const char* name); |
46630
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
46329
diff
changeset
|
148 |
virtual ~ClassPathImageEntry(); |
27562 | 149 |
ClassFileStream* open_stream(const char* name, TRAPS); |
150 |
||
151 |
// Debugging |
|
152 |
NOT_PRODUCT(void compile_the_world(Handle loader, TRAPS);) |
|
1 | 153 |
}; |
154 |
||
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
155 |
// ModuleClassPathList contains a linked list of ClassPathEntry's |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
156 |
// that have been specified for a specific module. Currently, |
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
157 |
// the only way to specify a module/path pair is via the --patch-module |
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
158 |
// command line option. |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
159 |
class ModuleClassPathList : public CHeapObj<mtClass> { |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
160 |
private: |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
161 |
Symbol* _module_name; |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
162 |
// First and last entries of class path entries for a specific module |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
163 |
ClassPathEntry* _module_first_entry; |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
164 |
ClassPathEntry* _module_last_entry; |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
165 |
public: |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
166 |
Symbol* module_name() const { return _module_name; } |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
167 |
ClassPathEntry* module_first_entry() const { return _module_first_entry; } |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
168 |
ModuleClassPathList(Symbol* module_name); |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
169 |
~ModuleClassPathList(); |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
170 |
void add_to_list(ClassPathEntry* new_entry); |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
171 |
}; |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
172 |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
173 |
class SharedPathsMiscInfo; |
1 | 174 |
|
175 |
class ClassLoader: AllStatic { |
|
176 |
public: |
|
36508 | 177 |
enum ClassLoaderType { |
178 |
BOOT_LOADER = 1, /* boot loader */ |
|
179 |
PLATFORM_LOADER = 2, /* PlatformClassLoader */ |
|
180 |
APP_LOADER = 3 /* AppClassLoader */ |
|
1 | 181 |
}; |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
182 |
protected: |
1 | 183 |
|
184 |
// Performance counters |
|
185 |
static PerfCounter* _perf_accumulated_time; |
|
186 |
static PerfCounter* _perf_classes_inited; |
|
187 |
static PerfCounter* _perf_class_init_time; |
|
3575
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
188 |
static PerfCounter* _perf_class_init_selftime; |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
189 |
static PerfCounter* _perf_classes_verified; |
1 | 190 |
static PerfCounter* _perf_class_verify_time; |
3575
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
191 |
static PerfCounter* _perf_class_verify_selftime; |
1 | 192 |
static PerfCounter* _perf_classes_linked; |
193 |
static PerfCounter* _perf_class_link_time; |
|
3575
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
194 |
static PerfCounter* _perf_class_link_selftime; |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
195 |
static PerfCounter* _perf_class_parse_time; |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
196 |
static PerfCounter* _perf_class_parse_selftime; |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
197 |
static PerfCounter* _perf_sys_class_lookup_time; |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
198 |
static PerfCounter* _perf_shared_classload_time; |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
199 |
static PerfCounter* _perf_sys_classload_time; |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
200 |
static PerfCounter* _perf_app_classload_time; |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
201 |
static PerfCounter* _perf_app_classload_selftime; |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
202 |
static PerfCounter* _perf_app_classload_count; |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
203 |
static PerfCounter* _perf_define_appclasses; |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
204 |
static PerfCounter* _perf_define_appclass_time; |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
205 |
static PerfCounter* _perf_define_appclass_selftime; |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
206 |
static PerfCounter* _perf_app_classfile_bytes_read; |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
207 |
static PerfCounter* _perf_sys_classfile_bytes_read; |
1 | 208 |
|
209 |
static PerfCounter* _sync_systemLoaderLockContentionRate; |
|
210 |
static PerfCounter* _sync_nonSystemLoaderLockContentionRate; |
|
211 |
static PerfCounter* _sync_JVMFindLoadedClassLockFreeCounter; |
|
212 |
static PerfCounter* _sync_JVMDefineClassLockFreeCounter; |
|
213 |
static PerfCounter* _sync_JNIDefineClassLockFreeCounter; |
|
214 |
||
215 |
static PerfCounter* _unsafe_defineClassCallCounter; |
|
216 |
static PerfCounter* _isUnsyncloadClass; |
|
217 |
static PerfCounter* _load_instance_class_failCounter; |
|
218 |
||
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
219 |
// The boot class path consists of 3 ordered pieces: |
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
220 |
// 1. the module/path pairs specified to --patch-module |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
221 |
// --patch-module=<module>=<file>(<pathsep><file>)* |
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
222 |
// 2. the base piece |
40013 | 223 |
// [jimage | build with exploded modules] |
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
224 |
// 3. boot loader append path |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
225 |
// [-Xbootclasspath/a]; [jvmti appended entries] |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
226 |
// |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
227 |
// The boot loader must obey this order when attempting |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
228 |
// to load a class. |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
229 |
|
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
230 |
// 1. Contains the module/path pairs specified to --patch-module |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
231 |
static GrowableArray<ModuleClassPathList*>* _patch_mod_entries; |
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
232 |
|
40013 | 233 |
// 2. the base piece |
234 |
// Contains the ClassPathEntry of the modular java runtime image. |
|
235 |
// If no java runtime image is present, this indicates a |
|
236 |
// build with exploded modules is being used instead. |
|
237 |
static ClassPathEntry* _jrt_entry; |
|
238 |
static GrowableArray<ModuleClassPathList*>* _exploded_entries; |
|
239 |
enum { EXPLODED_ENTRY_SIZE = 80 }; // Initial number of exploded modules |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
240 |
|
40013 | 241 |
// 3. the boot loader's append path |
242 |
// [-Xbootclasspath/a]; [jvmti appended entries] |
|
243 |
// Note: boot loader append path does not support named modules. |
|
36508 | 244 |
static ClassPathEntry* _first_append_entry; |
40013 | 245 |
// Last entry in linked list of appended ClassPathEntry instances |
246 |
static ClassPathEntry* _last_append_entry; |
|
1 | 247 |
|
40013 | 248 |
// Note: _num_entries includes the java runtime image and all |
249 |
// the entries on the _first_append_entry linked list. |
|
250 |
static int _num_entries; |
|
36508 | 251 |
|
252 |
// Array of module names associated with the boot class loader |
|
253 |
CDS_ONLY(static GrowableArray<char*>* _boot_modules_array;) |
|
254 |
||
255 |
// Array of module names associated with the platform class loader |
|
256 |
CDS_ONLY(static GrowableArray<char*>* _platform_modules_array;) |
|
257 |
||
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
258 |
// Info used by CDS |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
259 |
CDS_ONLY(static SharedPathsMiscInfo * _shared_paths_misc_info;) |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
260 |
|
40013 | 261 |
// Initialization: |
262 |
// - setup the boot loader's system class path |
|
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
263 |
// - setup the boot loader's patch mod entries, if present |
40013 | 264 |
// - create the ModuleEntry for java.base |
1 | 265 |
static void setup_bootstrap_search_path(); |
36508 | 266 |
static void setup_search_path(const char *class_path, bool setting_bootstrap); |
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
267 |
static void setup_patch_mod_entries(); |
40013 | 268 |
static void create_javabase(); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
269 |
|
1 | 270 |
static void load_zip_library(); |
32619
47acec81dcca
8087181: Move native jimage code to its own library (maybe libjimage)
jlaskey
parents:
31612
diff
changeset
|
271 |
static void load_jimage_library(); |
26419 | 272 |
static ClassPathEntry* create_class_path_entry(const char *path, const struct stat* st, |
37220
ec74292c0c9c
8075253: Multiversion JAR feature: CDS does not support MV-JARs
ccheung
parents:
36508
diff
changeset
|
273 |
bool throw_exception, |
ec74292c0c9c
8075253: Multiversion JAR feature: CDS does not support MV-JARs
ccheung
parents:
36508
diff
changeset
|
274 |
bool is_boot_append, TRAPS); |
1 | 275 |
|
36508 | 276 |
public: |
277 |
||
278 |
// If the package for the fully qualified class name is in the boot |
|
279 |
// loader's package entry table then add_package() sets the classpath_index |
|
280 |
// field so that get_system_package() will know to return a non-null value |
|
281 |
// for the package's location. And, so that the package will be added to |
|
282 |
// the list of packages returned by get_system_packages(). |
|
283 |
// For packages whose classes are loaded from the boot loader class path, the |
|
284 |
// classpath_index indicates which entry on the boot loader class path. |
|
285 |
static bool add_package(const char *fullq_class_name, s2 classpath_index, TRAPS); |
|
286 |
||
1 | 287 |
// Canonicalizes path names, so strcmp will work properly. This is mainly |
288 |
// to avoid confusing the zip library |
|
26419 | 289 |
static bool get_canonical_path(const char* orig, char* out, int len); |
34666 | 290 |
static const char* file_name_for_class_name(const char* class_name, |
291 |
int class_name_len); |
|
292 |
||
1 | 293 |
public: |
27562 | 294 |
static jboolean decompress(void *in, u8 inSize, void *out, u8 outSize, char **pmsg); |
27025 | 295 |
static int crc32(int crc, const char* buf, int len); |
26419 | 296 |
static bool update_class_path_entry_list(const char *path, |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
297 |
bool check_for_duplicates, |
37220
ec74292c0c9c
8075253: Multiversion JAR feature: CDS does not support MV-JARs
ccheung
parents:
36508
diff
changeset
|
298 |
bool is_boot_append, |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
299 |
bool throw_exception=true); |
1 | 300 |
static void print_bootclasspath(); |
301 |
||
302 |
// Timing |
|
3575
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
303 |
static PerfCounter* perf_accumulated_time() { return _perf_accumulated_time; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
304 |
static PerfCounter* perf_classes_inited() { return _perf_classes_inited; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
305 |
static PerfCounter* perf_class_init_time() { return _perf_class_init_time; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
306 |
static PerfCounter* perf_class_init_selftime() { return _perf_class_init_selftime; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
307 |
static PerfCounter* perf_classes_verified() { return _perf_classes_verified; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
308 |
static PerfCounter* perf_class_verify_time() { return _perf_class_verify_time; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
309 |
static PerfCounter* perf_class_verify_selftime() { return _perf_class_verify_selftime; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
310 |
static PerfCounter* perf_classes_linked() { return _perf_classes_linked; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
311 |
static PerfCounter* perf_class_link_time() { return _perf_class_link_time; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
312 |
static PerfCounter* perf_class_link_selftime() { return _perf_class_link_selftime; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
313 |
static PerfCounter* perf_class_parse_time() { return _perf_class_parse_time; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
314 |
static PerfCounter* perf_class_parse_selftime() { return _perf_class_parse_selftime; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
315 |
static PerfCounter* perf_sys_class_lookup_time() { return _perf_sys_class_lookup_time; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
316 |
static PerfCounter* perf_shared_classload_time() { return _perf_shared_classload_time; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
317 |
static PerfCounter* perf_sys_classload_time() { return _perf_sys_classload_time; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
318 |
static PerfCounter* perf_app_classload_time() { return _perf_app_classload_time; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
319 |
static PerfCounter* perf_app_classload_selftime() { return _perf_app_classload_selftime; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
320 |
static PerfCounter* perf_app_classload_count() { return _perf_app_classload_count; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
321 |
static PerfCounter* perf_define_appclasses() { return _perf_define_appclasses; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
322 |
static PerfCounter* perf_define_appclass_time() { return _perf_define_appclass_time; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
323 |
static PerfCounter* perf_define_appclass_selftime() { return _perf_define_appclass_selftime; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
324 |
static PerfCounter* perf_app_classfile_bytes_read() { return _perf_app_classfile_bytes_read; } |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
325 |
static PerfCounter* perf_sys_classfile_bytes_read() { return _perf_sys_classfile_bytes_read; } |
1 | 326 |
|
327 |
// Record how often system loader lock object is contended |
|
328 |
static PerfCounter* sync_systemLoaderLockContentionRate() { |
|
329 |
return _sync_systemLoaderLockContentionRate; |
|
330 |
} |
|
331 |
||
332 |
// Record how often non system loader lock object is contended |
|
333 |
static PerfCounter* sync_nonSystemLoaderLockContentionRate() { |
|
334 |
return _sync_nonSystemLoaderLockContentionRate; |
|
335 |
} |
|
336 |
||
337 |
// Record how many calls to JVM_FindLoadedClass w/o holding a lock |
|
338 |
static PerfCounter* sync_JVMFindLoadedClassLockFreeCounter() { |
|
339 |
return _sync_JVMFindLoadedClassLockFreeCounter; |
|
340 |
} |
|
341 |
||
342 |
// Record how many calls to JVM_DefineClass w/o holding a lock |
|
343 |
static PerfCounter* sync_JVMDefineClassLockFreeCounter() { |
|
344 |
return _sync_JVMDefineClassLockFreeCounter; |
|
345 |
} |
|
346 |
||
347 |
// Record how many calls to jni_DefineClass w/o holding a lock |
|
348 |
static PerfCounter* sync_JNIDefineClassLockFreeCounter() { |
|
349 |
return _sync_JNIDefineClassLockFreeCounter; |
|
350 |
} |
|
351 |
||
352 |
// Record how many calls to Unsafe_DefineClass |
|
353 |
static PerfCounter* unsafe_defineClassCallCounter() { |
|
354 |
return _unsafe_defineClassCallCounter; |
|
355 |
} |
|
356 |
||
357 |
// Record how many times SystemDictionary::load_instance_class call |
|
358 |
// fails with linkageError when Unsyncloadclass flag is set. |
|
359 |
static PerfCounter* load_instance_class_failCounter() { |
|
360 |
return _load_instance_class_failCounter; |
|
361 |
} |
|
362 |
||
40013 | 363 |
// Modular java runtime image is present vs. a build with exploded modules |
364 |
static bool has_jrt_entry() { return (_jrt_entry != NULL); } |
|
365 |
static ClassPathEntry* get_jrt_entry() { return _jrt_entry; } |
|
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
366 |
|
40013 | 367 |
// Add a module's exploded directory to the boot loader's exploded module build list |
368 |
static void add_to_exploded_build_list(Symbol* module_name, TRAPS); |
|
36508 | 369 |
|
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
370 |
// Attempt load of individual class from either the patched or exploded modules build lists |
40013 | 371 |
static ClassFileStream* search_module_entries(const GrowableArray<ModuleClassPathList*>* const module_list, |
372 |
const char* const class_name, |
|
373 |
const char* const file_name, TRAPS); |
|
36508 | 374 |
|
1 | 375 |
// Load individual .class file |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
42876
diff
changeset
|
376 |
static InstanceKlass* load_class(Symbol* class_name, bool search_append_only, TRAPS); |
1 | 377 |
|
378 |
// If the specified package has been loaded by the system, then returns |
|
379 |
// the name of the directory or ZIP file that the package was loaded from. |
|
380 |
// Returns null if the package was not loaded. |
|
381 |
// Note: The specified name can either be the name of a class or package. |
|
382 |
// If a package name is specified, then it must be "/"-separator and also |
|
383 |
// end with a trailing "/". |
|
384 |
static oop get_system_package(const char* name, TRAPS); |
|
385 |
||
386 |
// Returns an array of Java strings representing all of the currently |
|
387 |
// loaded system packages. |
|
388 |
// Note: The package names returned are "/"-separated and end with a |
|
389 |
// trailing "/". |
|
390 |
static objArrayOop get_system_packages(TRAPS); |
|
391 |
||
392 |
// Initialization |
|
393 |
static void initialize(); |
|
40013 | 394 |
static void classLoader_init2(TRAPS); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
395 |
CDS_ONLY(static void initialize_shared_path();) |
36508 | 396 |
|
1 | 397 |
static int compute_Object_vtable(); |
398 |
||
399 |
static ClassPathEntry* classpath_entry(int n) { |
|
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
400 |
assert(n >= 0 && n < _num_entries, "sanity"); |
40013 | 401 |
if (n == 0) { |
402 |
assert(has_jrt_entry(), "No class path entry at 0 for exploded module builds"); |
|
403 |
return ClassLoader::_jrt_entry; |
|
404 |
} else { |
|
405 |
// The java runtime image is always the first entry |
|
406 |
// in the FileMapInfo::_classpath_entry_table. Even though |
|
407 |
// the _jrt_entry is not included in the _first_append_entry |
|
408 |
// linked list, it must be accounted for when comparing the |
|
409 |
// class path vs. the shared archive class path. |
|
410 |
ClassPathEntry* e = ClassLoader::_first_append_entry; |
|
411 |
while (--n >= 1) { |
|
412 |
assert(e != NULL, "Not that many classpath entries."); |
|
413 |
e = e->next(); |
|
414 |
} |
|
415 |
return e; |
|
1 | 416 |
} |
417 |
} |
|
418 |
||
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
419 |
static int number_of_classpath_entries() { |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
420 |
return _num_entries; |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
421 |
} |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46630
diff
changeset
|
422 |
|
42634
7459867ebf98
8168850: Mark module entries that have been specified by --patch-module
rprotacio
parents:
41741
diff
changeset
|
423 |
static bool is_in_patch_mod_entries(Symbol* module_name); |
7459867ebf98
8168850: Mark module entries that have been specified by --patch-module
rprotacio
parents:
41741
diff
changeset
|
424 |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
425 |
#if INCLUDE_CDS |
1 | 426 |
// Sharing dump and restore |
427 |
||
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
428 |
static void check_shared_classpath(const char *path); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
429 |
static void finalize_shared_paths_misc_info(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
430 |
static int get_shared_paths_misc_info_size(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
431 |
static void* get_shared_paths_misc_info(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
432 |
static bool check_shared_paths_misc_info(void* info, int size); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
433 |
static void exit_with_path_failure(const char* error, const char* message); |
36508 | 434 |
|
435 |
static s2 module_to_classloader(const char* module_name); |
|
436 |
static void initialize_module_loader_map(JImageFile* jimage); |
|
38192
05ab1ee04bf2
8155678: ClassLoader::initialize_module_loader_map should only be called when dumping CDS archive.
jiangli
parents:
37418
diff
changeset
|
437 |
static s2 classloader_type(Symbol* class_name, ClassPathEntry* e, |
05ab1ee04bf2
8155678: ClassLoader::initialize_module_loader_map should only be called when dumping CDS archive.
jiangli
parents:
37418
diff
changeset
|
438 |
int classpath_index, TRAPS); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
439 |
#endif |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
440 |
|
36364
5971776598e5
8150103: Convert TraceClassPaths to Unified Logging
mockner
parents:
34666
diff
changeset
|
441 |
static void trace_class_path(const char* msg, const char* name = NULL); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
442 |
|
1 | 443 |
// VM monitoring and management support |
444 |
static jlong classloader_time_ms(); |
|
445 |
static jlong class_method_total_size(); |
|
446 |
static jlong class_init_count(); |
|
447 |
static jlong class_init_time_ms(); |
|
448 |
static jlong class_verify_time_ms(); |
|
449 |
static jlong class_link_count(); |
|
450 |
static jlong class_link_time_ms(); |
|
451 |
||
36508 | 452 |
static void set_first_append_entry(ClassPathEntry* entry); |
453 |
||
1 | 454 |
// indicates if class path already contains a entry (exact match by name) |
41741
2f5b8bbcb18c
8166931: Do not include classes which are unusable during run time in the classlist file
ccheung
parents:
41281
diff
changeset
|
455 |
static bool contains_append_entry(const char* name); |
1 | 456 |
|
457 |
// adds a class path list |
|
458 |
static void add_to_list(ClassPathEntry* new_entry); |
|
459 |
||
460 |
// creates a class path zip entry (returns NULL if JAR file cannot be opened) |
|
37220
ec74292c0c9c
8075253: Multiversion JAR feature: CDS does not support MV-JARs
ccheung
parents:
36508
diff
changeset
|
461 |
static ClassPathZipEntry* create_class_path_zip_entry(const char *apath, bool is_boot_append); |
1 | 462 |
|
36508 | 463 |
// add a path to class path list |
464 |
static void add_to_list(const char* apath); |
|
465 |
||
466 |
static bool string_ends_with(const char* str, const char* str_to_find); |
|
467 |
||
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
468 |
// obtain package name from a fully qualified class name |
39216
40c3d66352ae
8153858: Clean up needed when obtaining the package name from a fully qualified class name
rprotacio
parents:
38207
diff
changeset
|
469 |
// *bad_class_name is set to true if there's a problem with parsing class_name, to |
40c3d66352ae
8153858: Clean up needed when obtaining the package name from a fully qualified class name
rprotacio
parents:
38207
diff
changeset
|
470 |
// distinguish from a class_name with no package name, as both cases have a NULL return value |
40c3d66352ae
8153858: Clean up needed when obtaining the package name from a fully qualified class name
rprotacio
parents:
38207
diff
changeset
|
471 |
static const char* package_from_name(const char* const class_name, bool* bad_class_name = NULL); |
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37418
diff
changeset
|
472 |
|
36508 | 473 |
static bool is_jrt(const char* name) { return string_ends_with(name, MODULES_IMAGE_NAME); } |
474 |
||
1 | 475 |
// Debugging |
476 |
static void verify() PRODUCT_RETURN; |
|
477 |
||
478 |
// Force compilation of all methods in all classes in bootstrap class path (stress test) |
|
479 |
#ifndef PRODUCT |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25949
diff
changeset
|
480 |
protected: |
17004
4d2371d76a19
8011933: add number of classes, methods and time spent to CompileTheWorld
twisti
parents:
13963
diff
changeset
|
481 |
static int _compile_the_world_class_counter; |
4d2371d76a19
8011933: add number of classes, methods and time spent to CompileTheWorld
twisti
parents:
13963
diff
changeset
|
482 |
static int _compile_the_world_method_counter; |
1 | 483 |
public: |
484 |
static void compile_the_world(); |
|
485 |
static void compile_the_world_in(char* name, Handle loader, TRAPS); |
|
17004
4d2371d76a19
8011933: add number of classes, methods and time spent to CompileTheWorld
twisti
parents:
13963
diff
changeset
|
486 |
static int compile_the_world_counter() { return _compile_the_world_class_counter; } |
1 | 487 |
#endif //PRODUCT |
488 |
}; |
|
3575
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
489 |
|
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
490 |
// PerfClassTraceTime is used to measure time for class loading related events. |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
491 |
// This class tracks cumulative time and exclusive time for specific event types. |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
492 |
// During the execution of one event, other event types (e.g. class loading and |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
493 |
// resolution) as well as recursive calls of the same event type could happen. |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
494 |
// Only one elapsed timer (cumulative) and one thread-local self timer (exclusive) |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
495 |
// (i.e. only one event type) are active at a time even multiple PerfClassTraceTime |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
496 |
// instances have been created as multiple events are happening. |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
497 |
class PerfClassTraceTime { |
7910
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
498 |
public: |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
499 |
enum { |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
500 |
CLASS_LOAD = 0, |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
501 |
PARSE_CLASS = 1, |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
502 |
CLASS_LINK = 2, |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
503 |
CLASS_VERIFY = 3, |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
504 |
CLASS_CLINIT = 4, |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
505 |
DEFINE_CLASS = 5, |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
506 |
EVENT_TYPE_COUNT = 6 |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
507 |
}; |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
508 |
protected: |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
509 |
// _t tracks time from initialization to destruction of this timer instance |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
510 |
// including time for all other event types, and recursive calls of this type. |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
511 |
// When a timer is called recursively, the elapsedTimer _t would not be used. |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
512 |
elapsedTimer _t; |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
513 |
PerfLongCounter* _timep; |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
514 |
PerfLongCounter* _selftimep; |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
515 |
PerfLongCounter* _eventp; |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
516 |
// pointer to thread-local recursion counter and timer array |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
517 |
// The thread_local timers track cumulative time for specific event types |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
518 |
// exclusive of time for other event types, but including recursive calls |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
519 |
// of the same type. |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
520 |
int* _recursion_counters; |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
521 |
elapsedTimer* _timers; |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
522 |
int _event_type; |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
523 |
int _prev_active_event; |
3575
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
524 |
|
7910
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
525 |
public: |
3575
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
526 |
|
7910
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
527 |
inline PerfClassTraceTime(PerfLongCounter* timep, /* counter incremented with inclusive time */ |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
528 |
PerfLongCounter* selftimep, /* counter incremented with exclusive time */ |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
529 |
PerfLongCounter* eventp, /* event counter */ |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
530 |
int* recursion_counters, /* thread-local recursion counter array */ |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
531 |
elapsedTimer* timers, /* thread-local timer array */ |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
532 |
int type /* event type */ ) : |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
533 |
_timep(timep), _selftimep(selftimep), _eventp(eventp), _recursion_counters(recursion_counters), _timers(timers), _event_type(type) { |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
534 |
initialize(); |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
535 |
} |
3575
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
536 |
|
7910
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
537 |
inline PerfClassTraceTime(PerfLongCounter* timep, /* counter incremented with inclusive time */ |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
538 |
elapsedTimer* timers, /* thread-local timer array */ |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
539 |
int type /* event type */ ) : |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
540 |
_timep(timep), _selftimep(NULL), _eventp(NULL), _recursion_counters(NULL), _timers(timers), _event_type(type) { |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
541 |
initialize(); |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
542 |
} |
3575
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
543 |
|
7910
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
544 |
inline void suspend() { _t.stop(); _timers[_event_type].stop(); } |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
545 |
inline void resume() { _t.start(); _timers[_event_type].start(); } |
3575
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
546 |
|
7910
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
547 |
~PerfClassTraceTime(); |
135031ddb2bb
6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents:
7397
diff
changeset
|
548 |
void initialize(); |
3575
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
549 |
}; |
224791e7ecab
6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents:
1
diff
changeset
|
550 |
|
7397 | 551 |
#endif // SHARE_VM_CLASSFILE_CLASSLOADER_HPP |