author | ccheung |
Mon, 28 Aug 2017 15:34:04 -0700 | |
changeset 47103 | a993ec29ec75 |
parent 46329 | 53ccc37bda19 |
permissions | -rw-r--r-- |
26135 | 1 |
/* |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
40013
diff
changeset
|
2 |
* Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved. |
26135 | 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 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
#ifndef SHARE_VM_CLASSFILE_CLASSLOADEREXT_HPP |
|
26 |
#define SHARE_VM_CLASSFILE_CLASSLOADEREXT_HPP |
|
27 |
||
28 |
#include "classfile/classLoader.hpp" |
|
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46329
diff
changeset
|
29 |
#include "classfile/systemDictionary.hpp" |
29199
db7ae483ecb2
8073388: Get rid of the depenecy from handles.hpp to oop.inline.hpp
stefank
parents:
27672
diff
changeset
|
30 |
#include "oops/instanceKlass.hpp" |
db7ae483ecb2
8073388: Get rid of the depenecy from handles.hpp to oop.inline.hpp
stefank
parents:
27672
diff
changeset
|
31 |
#include "runtime/handles.hpp" |
26135 | 32 |
|
34257
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
29199
diff
changeset
|
33 |
class ClassListParser; |
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
29199
diff
changeset
|
34 |
|
26135 | 35 |
class ClassLoaderExt: public ClassLoader { // AllStatic |
36 |
public: |
|
37 |
||
38 |
class Context { |
|
39 |
const char* _file_name; |
|
40 |
public: |
|
41 |
Context(const char* class_name, const char* file_name, TRAPS) { |
|
42 |
_file_name = file_name; |
|
43 |
} |
|
44 |
||
34666 | 45 |
bool check(const ClassFileStream* stream, const int classpath_index) { |
26135 | 46 |
return true; |
47 |
} |
|
48 |
||
49 |
bool should_verify(int classpath_index) { |
|
50 |
return false; |
|
51 |
} |
|
52 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
40013
diff
changeset
|
53 |
InstanceKlass* record_result(Symbol* class_name, |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
40013
diff
changeset
|
54 |
ClassPathEntry* e, |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
40013
diff
changeset
|
55 |
const s2 classpath_index, |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
40013
diff
changeset
|
56 |
InstanceKlass* result, TRAPS) { |
26135 | 57 |
if (ClassLoader::add_package(_file_name, classpath_index, THREAD)) { |
39224
7c26725c0813
8158681: ClassLoader::classloader_type() is called from code not included under #if INCLUDE_CDS.
jiangli
parents:
38192
diff
changeset
|
58 |
#if INCLUDE_CDS |
26135 | 59 |
if (DumpSharedSpaces) { |
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46329
diff
changeset
|
60 |
oop loader = result->class_loader(); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46329
diff
changeset
|
61 |
s2 classloader_type = ClassLoader::BOOT_LOADER; |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46329
diff
changeset
|
62 |
if (SystemDictionary::is_system_class_loader(loader)) { |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46329
diff
changeset
|
63 |
classloader_type = ClassLoader::APP_LOADER; |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46329
diff
changeset
|
64 |
ClassLoaderExt::set_has_app_classes(); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46329
diff
changeset
|
65 |
} else if (SystemDictionary::is_platform_class_loader(loader)) { |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46329
diff
changeset
|
66 |
classloader_type = ClassLoader::PLATFORM_LOADER; |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46329
diff
changeset
|
67 |
ClassLoaderExt::set_has_platform_classes(); |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46329
diff
changeset
|
68 |
} |
26135 | 69 |
result->set_shared_classpath_index(classpath_index); |
36508 | 70 |
result->set_class_loader_type(classloader_type); |
26135 | 71 |
} |
39224
7c26725c0813
8158681: ClassLoader::classloader_type() is called from code not included under #if INCLUDE_CDS.
jiangli
parents:
38192
diff
changeset
|
72 |
#endif |
26135 | 73 |
return result; |
74 |
} else { |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
40013
diff
changeset
|
75 |
return NULL; |
26135 | 76 |
} |
77 |
} |
|
78 |
}; |
|
79 |
||
80 |
||
26419 | 81 |
static void add_class_path_entry(const char* path, bool check_for_duplicates, |
40013 | 82 |
ClassPathEntry* new_entry) { |
83 |
ClassLoader::add_to_list(new_entry); |
|
26135 | 84 |
} |
27672
d24adedd3655
8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents:
26419
diff
changeset
|
85 |
static void append_boot_classpath(ClassPathEntry* new_entry) { |
d24adedd3655
8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents:
26419
diff
changeset
|
86 |
ClassLoader::add_to_list(new_entry); |
d24adedd3655
8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents:
26419
diff
changeset
|
87 |
} |
26135 | 88 |
static void setup_search_paths() {} |
36508 | 89 |
static bool is_boot_classpath(int classpath_index) { |
90 |
return true; |
|
91 |
} |
|
34257
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
29199
diff
changeset
|
92 |
static Klass* load_one_class(ClassListParser* parser, TRAPS); |
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46329
diff
changeset
|
93 |
#if INCLUDE_CDS |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46329
diff
changeset
|
94 |
static void set_has_app_classes() {} |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46329
diff
changeset
|
95 |
static void set_has_platform_classes() {} |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46329
diff
changeset
|
96 |
static char* read_manifest(ClassPathEntry* entry, jint *manifest_size, TRAPS) { |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46329
diff
changeset
|
97 |
return NULL; |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46329
diff
changeset
|
98 |
} |
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46329
diff
changeset
|
99 |
#endif |
26135 | 100 |
}; |
101 |
||
102 |
#endif // SHARE_VM_CLASSFILE_CLASSLOADEREXT_HPP |