author | mgronlun |
Tue, 08 Dec 2015 20:04:03 +0100 | |
changeset 34666 | 1c7168ea0034 |
parent 34257 | 4be3504cc03b |
child 36508 | 5f9eee6b383b |
permissions | -rw-r--r-- |
26135 | 1 |
/* |
34257
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
29199
diff
changeset
|
2 |
* Copyright (c) 2014, 2015, 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 |
||
52 |
instanceKlassHandle record_result(const int classpath_index, |
|
34666 | 53 |
const ClassPathEntry* e, |
54 |
instanceKlassHandle result, TRAPS) { |
|
26135 | 55 |
if (ClassLoader::add_package(_file_name, classpath_index, THREAD)) { |
56 |
if (DumpSharedSpaces) { |
|
57 |
result->set_shared_classpath_index(classpath_index); |
|
58 |
} |
|
59 |
return result; |
|
60 |
} else { |
|
61 |
return instanceKlassHandle(); // NULL |
|
62 |
} |
|
63 |
} |
|
64 |
}; |
|
65 |
||
66 |
||
26419 | 67 |
static void add_class_path_entry(const char* path, bool check_for_duplicates, |
68 |
ClassPathEntry* new_entry) { |
|
26135 | 69 |
ClassLoader::add_to_list(new_entry); |
70 |
} |
|
27672
d24adedd3655
8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI
iklam
parents:
26419
diff
changeset
|
71 |
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
|
72 |
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
|
73 |
} |
26135 | 74 |
static void setup_search_paths() {} |
34257
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
29199
diff
changeset
|
75 |
static Klass* load_one_class(ClassListParser* parser, TRAPS); |
26135 | 76 |
}; |
77 |
||
78 |
#endif // SHARE_VM_CLASSFILE_CLASSLOADEREXT_HPP |