author | alanb |
Tue, 03 May 2016 09:09:20 +0100 | |
changeset 37773 | e5b3e9732c3c |
parent 37503 | 77531df4dad3 |
child 38733 | 2b65f4db449e |
permissions | -rw-r--r-- |
36508 | 1 |
/* |
2 |
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. |
|
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_MODULEENTRY_HPP |
|
26 |
#define SHARE_VM_CLASSFILE_MODULEENTRY_HPP |
|
27 |
||
28 |
#include "classfile/classLoaderData.hpp" |
|
29 |
#include "classfile/vmSymbols.hpp" |
|
30 |
#include "oops/symbol.hpp" |
|
31 |
#include "prims/jni.h" |
|
32 |
#include "runtime/mutexLocker.hpp" |
|
33 |
#include "trace/traceMacros.hpp" |
|
34 |
#include "utilities/growableArray.hpp" |
|
35 |
#include "utilities/hashtable.hpp" |
|
37503
77531df4dad3
8152845: Improve PackageEntry and ModuleEntry print methods for future logging
rprotacio
parents:
36508
diff
changeset
|
36 |
#include "utilities/ostream.hpp" |
36508 | 37 |
|
38 |
#define UNNAMED_MODULE "Unnamed Module" |
|
39 |
||
40 |
class ModuleClosure; |
|
41 |
||
42 |
// A ModuleEntry describes a module that has been defined by a call to JVM_DefineModule. |
|
43 |
// It contains: |
|
44 |
// - Symbol* containing the module's name. |
|
45 |
// - pointer to the java.lang.reflect.Module for this module. |
|
46 |
// - ClassLoaderData*, class loader of this module. |
|
47 |
// - a growable array containg other module entries that this module can read. |
|
48 |
// - a flag indicating if this module can read all unnamed modules. |
|
49 |
// |
|
50 |
// The Mutex Module_lock is shared between ModuleEntry and PackageEntry, to lock either |
|
51 |
// data structure. |
|
52 |
class ModuleEntry : public HashtableEntry<Symbol*, mtClass> { |
|
53 |
private: |
|
54 |
jobject _module; // java.lang.reflect.Module |
|
55 |
jobject _pd; // java.security.ProtectionDomain, cached |
|
56 |
// for shared classes from this module |
|
57 |
ClassLoaderData* _loader; |
|
58 |
GrowableArray<ModuleEntry*>* _reads; // list of modules that are readable by this module |
|
59 |
Symbol* _version; // module version number |
|
60 |
Symbol* _location; // module location |
|
61 |
bool _can_read_all_unnamed; |
|
62 |
bool _has_default_read_edges; // JVMTI redefine/retransform support |
|
63 |
TRACE_DEFINE_TRACE_ID_FIELD; |
|
64 |
enum {MODULE_READS_SIZE = 101}; // Initial size of list of modules that the module can read. |
|
65 |
||
66 |
public: |
|
67 |
void init() { |
|
68 |
_module = NULL; |
|
69 |
_loader = NULL; |
|
70 |
_pd = NULL; |
|
71 |
_reads = NULL; |
|
72 |
_version = NULL; |
|
73 |
_location = NULL; |
|
74 |
_can_read_all_unnamed = false; |
|
75 |
_has_default_read_edges = false; |
|
76 |
} |
|
77 |
||
78 |
Symbol* name() const { return literal(); } |
|
79 |
void set_name(Symbol* n) { set_literal(n); } |
|
80 |
||
81 |
jobject module() const { return _module; } |
|
82 |
void set_module(jobject j) { _module = j; } |
|
83 |
||
84 |
// The shared ProtectionDomain reference is set once the VM loads a shared class |
|
85 |
// originated from the current Module. The referenced ProtectionDomain object is |
|
86 |
// created by the ClassLoader when loading a class (shared or non-shared) from the |
|
87 |
// Module for the first time. This ProtectionDomain object is used for all |
|
88 |
// classes from the Module loaded by the same ClassLoader. |
|
89 |
Handle shared_protection_domain(); |
|
90 |
void set_shared_protection_domain(ClassLoaderData *loader_data, |
|
91 |
Handle pd); |
|
92 |
||
93 |
ClassLoaderData* loader() const { return _loader; } |
|
94 |
void set_loader(ClassLoaderData* l) { _loader = l; } |
|
95 |
||
96 |
Symbol* version() const { return _version; } |
|
97 |
void set_version(Symbol* version); |
|
98 |
||
99 |
Symbol* location() const { return _location; } |
|
100 |
void set_location(Symbol* location); |
|
101 |
||
102 |
bool can_read(ModuleEntry* m) const; |
|
103 |
bool has_reads() const; |
|
104 |
void add_read(ModuleEntry* m); |
|
105 |
||
106 |
bool is_named() const { return (literal() != NULL); } |
|
107 |
||
108 |
bool can_read_all_unnamed() const { |
|
109 |
assert(is_named() || _can_read_all_unnamed == true, |
|
110 |
"unnamed modules can always read all unnamed modules"); |
|
111 |
return _can_read_all_unnamed; |
|
112 |
} |
|
113 |
||
114 |
// Modules can only go from strict to loose. |
|
115 |
void set_can_read_all_unnamed() { _can_read_all_unnamed = true; } |
|
116 |
||
117 |
bool has_default_read_edges() const { |
|
118 |
return _has_default_read_edges; |
|
119 |
} |
|
120 |
||
121 |
// Sets true and returns the previous value. |
|
122 |
bool set_has_default_read_edges() { |
|
123 |
MutexLocker ml(Module_lock); |
|
124 |
bool prev = _has_default_read_edges; |
|
125 |
_has_default_read_edges = true; |
|
126 |
return prev; |
|
127 |
} |
|
128 |
||
129 |
ModuleEntry* next() const { |
|
130 |
return (ModuleEntry*)HashtableEntry<Symbol*, mtClass>::next(); |
|
131 |
} |
|
132 |
ModuleEntry** next_addr() { |
|
133 |
return (ModuleEntry**)HashtableEntry<Symbol*, mtClass>::next_addr(); |
|
134 |
} |
|
135 |
||
136 |
// iteration support for readability |
|
137 |
void module_reads_do(ModuleClosure* const f); |
|
138 |
||
139 |
TRACE_DEFINE_TRACE_ID_METHODS; |
|
140 |
||
141 |
// Purge dead weak references out of reads list when any given class loader is unloaded. |
|
142 |
void purge_reads(); |
|
143 |
void delete_reads(); |
|
144 |
||
37503
77531df4dad3
8152845: Improve PackageEntry and ModuleEntry print methods for future logging
rprotacio
parents:
36508
diff
changeset
|
145 |
void print(outputStream* st = tty); |
36508 | 146 |
void verify(); |
147 |
}; |
|
148 |
||
149 |
// Iterator interface |
|
150 |
class ModuleClosure: public StackObj { |
|
151 |
public: |
|
152 |
virtual void do_module(ModuleEntry* const module) = 0; |
|
153 |
}; |
|
154 |
||
155 |
||
156 |
// The ModuleEntryTable is a Hashtable containing a list of all modules defined |
|
157 |
// by a particular class loader. Each module is represented as a ModuleEntry node. |
|
158 |
// |
|
159 |
// Each ModuleEntryTable contains a _javabase_module field which allows for the |
|
160 |
// creation of java.base's ModuleEntry very early in bootstrapping before the |
|
161 |
// corresponding JVM_DefineModule call for java.base occurs during module system |
|
162 |
// initialization. Setting up java.base's ModuleEntry early enables classes, |
|
163 |
// loaded prior to the module system being initialized to be created with their |
|
164 |
// PackageEntry node's correctly pointing at java.base's ModuleEntry. No class |
|
165 |
// outside of java.base is allowed to be loaded pre-module system initialization. |
|
166 |
// |
|
167 |
// The ModuleEntryTable's lookup is lock free. |
|
168 |
// |
|
169 |
class ModuleEntryTable : public Hashtable<Symbol*, mtClass> { |
|
170 |
friend class VMStructs; |
|
171 |
public: |
|
172 |
enum Constants { |
|
173 |
_moduletable_entry_size = 109 // number of entries in module entry table |
|
174 |
}; |
|
175 |
||
176 |
private: |
|
177 |
static ModuleEntry* _javabase_module; |
|
178 |
ModuleEntry* _unnamed_module; |
|
179 |
||
180 |
ModuleEntry* new_entry(unsigned int hash, Handle module_handle, Symbol* name, Symbol* version, |
|
181 |
Symbol* location, ClassLoaderData* class_loader); |
|
182 |
void add_entry(int index, ModuleEntry* new_entry); |
|
183 |
||
184 |
int entry_size() const { return BasicHashtable<mtClass>::entry_size(); } |
|
185 |
||
186 |
ModuleEntry** bucket_addr(int i) { |
|
187 |
return (ModuleEntry**)Hashtable<Symbol*, mtClass>::bucket_addr(i); |
|
188 |
} |
|
189 |
||
190 |
static unsigned int compute_hash(Symbol* name) { return ((name == NULL) ? 0 : (unsigned int)(name->identity_hash())); } |
|
191 |
int index_for(Symbol* name) const { return hash_to_index(compute_hash(name)); } |
|
192 |
||
193 |
public: |
|
194 |
ModuleEntryTable(int table_size); |
|
195 |
~ModuleEntryTable(); |
|
196 |
||
197 |
ModuleEntry* bucket(int i) { |
|
198 |
return (ModuleEntry*)Hashtable<Symbol*, mtClass>::bucket(i); |
|
199 |
} |
|
200 |
||
201 |
// Create module in loader's module entry table, if already exists then |
|
202 |
// return null. Assume Module_lock has been locked by caller. |
|
203 |
ModuleEntry* locked_create_entry_or_null(Handle module_handle, |
|
204 |
Symbol* module_name, |
|
205 |
Symbol* module_version, |
|
206 |
Symbol* module_location, |
|
207 |
ClassLoaderData* loader_data); |
|
208 |
||
209 |
// Only lookup module within loader's module entry table. The table read is lock-free. |
|
210 |
ModuleEntry* lookup_only(Symbol* name); |
|
211 |
||
212 |
// purge dead weak references out of reads list |
|
213 |
void purge_all_module_reads(); |
|
214 |
||
215 |
// Special handling for unnamed module, one per class loader's ModuleEntryTable |
|
216 |
void create_unnamed_module(ClassLoaderData* loader_data); |
|
217 |
ModuleEntry* unnamed_module() { return _unnamed_module; } |
|
218 |
||
219 |
// Special handling for java.base |
|
220 |
static ModuleEntry* javabase_module() { return _javabase_module; } |
|
221 |
static void set_javabase_module(ModuleEntry* java_base) { _javabase_module = java_base; } |
|
222 |
static bool javabase_defined() { return ((_javabase_module != NULL) && |
|
223 |
(_javabase_module->module() != NULL)); } |
|
224 |
static void finalize_javabase(Handle module_handle, Symbol* version, Symbol* location); |
|
225 |
static void patch_javabase_entries(Handle module_handle); |
|
226 |
||
37503
77531df4dad3
8152845: Improve PackageEntry and ModuleEntry print methods for future logging
rprotacio
parents:
36508
diff
changeset
|
227 |
void print(outputStream* st = tty); |
36508 | 228 |
void verify(); |
229 |
}; |
|
230 |
||
231 |
#endif // SHARE_VM_CLASSFILE_MODULEENTRY_HPP |