author | jiangli |
Wed, 08 Jun 2016 18:47:05 -0400 | |
changeset 39224 | 7c26725c0813 |
parent 38192 | 05ab1ee04bf2 |
child 40013 | 943cf01a6b82 |
permissions | -rw-r--r-- |
26135 | 1 |
/* |
36508 | 2 |
* Copyright (c) 2014, 2016, 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" |
|
29199
db7ae483ecb2
8073388: Get rid of the depenecy from handles.hpp to oop.inline.hpp
stefank
parents:
27672
diff
changeset
|
29 |
#include "oops/instanceKlass.hpp" |
db7ae483ecb2
8073388: Get rid of the depenecy from handles.hpp to oop.inline.hpp
stefank
parents:
27672
diff
changeset
|
30 |
#include "runtime/handles.hpp" |
26135 | 31 |
|
34257
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
29199
diff
changeset
|
32 |
class ClassListParser; |
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
29199
diff
changeset
|
33 |
|
26135 | 34 |
class ClassLoaderExt: public ClassLoader { // AllStatic |
35 |
public: |
|
36 |
||
37 |
class Context { |
|
38 |
const char* _file_name; |
|
39 |
public: |
|
40 |
Context(const char* class_name, const char* file_name, TRAPS) { |
|
41 |
_file_name = file_name; |
|
42 |
} |
|
43 |
||
34666 | 44 |
bool check(const ClassFileStream* stream, const int classpath_index) { |
26135 | 45 |
return true; |
46 |
} |
|
47 |
||
48 |
bool should_verify(int classpath_index) { |
|
49 |
return false; |
|
50 |
} |
|
51 |
||
38192
05ab1ee04bf2
8155678: ClassLoader::initialize_module_loader_map should only be called when dumping CDS archive.
jiangli
parents:
36508
diff
changeset
|
52 |
instanceKlassHandle record_result(Symbol* class_name, |
05ab1ee04bf2
8155678: ClassLoader::initialize_module_loader_map should only be called when dumping CDS archive.
jiangli
parents:
36508
diff
changeset
|
53 |
ClassPathEntry* e, |
05ab1ee04bf2
8155678: ClassLoader::initialize_module_loader_map should only be called when dumping CDS archive.
jiangli
parents:
36508
diff
changeset
|
54 |
const s2 classpath_index, |
34666 | 55 |
instanceKlassHandle result, TRAPS) { |
26135 | 56 |
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
|
57 |
#if INCLUDE_CDS |
26135 | 58 |
if (DumpSharedSpaces) { |
38192
05ab1ee04bf2
8155678: ClassLoader::initialize_module_loader_map should only be called when dumping CDS archive.
jiangli
parents:
36508
diff
changeset
|
59 |
s2 classloader_type = ClassLoader::classloader_type( |
05ab1ee04bf2
8155678: ClassLoader::initialize_module_loader_map should only be called when dumping CDS archive.
jiangli
parents:
36508
diff
changeset
|
60 |
class_name, e, classpath_index, CHECK_(result)); |
26135 | 61 |
result->set_shared_classpath_index(classpath_index); |
36508 | 62 |
result->set_class_loader_type(classloader_type); |
26135 | 63 |
} |
39224
7c26725c0813
8158681: ClassLoader::classloader_type() is called from code not included under #if INCLUDE_CDS.
jiangli
parents:
38192
diff
changeset
|
64 |
#endif |
26135 | 65 |
return result; |
66 |
} else { |
|
67 |
return instanceKlassHandle(); // NULL |
|
68 |
} |
|
69 |
} |
|
70 |
}; |
|
71 |
||
72 |
||
26419 | 73 |
static void add_class_path_entry(const char* path, bool check_for_duplicates, |
36508 | 74 |
ClassPathEntry* new_entry, bool prepend_entry) { |
75 |
if (prepend_entry) { |
|
76 |
ClassLoader::prepend_to_list(new_entry); |
|
77 |
} else { |
|
78 |
ClassLoader::add_to_list(new_entry); |
|
79 |
} |
|
26135 | 80 |
} |
27672
d24adedd3655
8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents:
26419
diff
changeset
|
81 |
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
|
82 |
ClassLoader::add_to_list(new_entry); |
36508 | 83 |
// During jvmti live phase an entry can be appended to the boot |
84 |
// loader's ClassPathEntry instances. Need to mark the start |
|
85 |
// of the boot loader's append path in case there was no reason |
|
86 |
// to mark it initially in setup_bootstrap_search_path. |
|
87 |
if (ClassLoader::_first_append_entry == NULL) { |
|
88 |
ClassLoader::set_first_append_entry(new_entry); |
|
89 |
} |
|
27672
d24adedd3655
8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents:
26419
diff
changeset
|
90 |
} |
26135 | 91 |
static void setup_search_paths() {} |
36508 | 92 |
static bool is_boot_classpath(int classpath_index) { |
93 |
return true; |
|
94 |
} |
|
34257
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
29199
diff
changeset
|
95 |
static Klass* load_one_class(ClassListParser* parser, TRAPS); |
26135 | 96 |
}; |
97 |
||
98 |
#endif // SHARE_VM_CLASSFILE_CLASSLOADEREXT_HPP |