author | alanb |
Thu, 17 Mar 2016 19:04:01 +0000 | |
changeset 36508 | 5f9eee6b383b |
parent 36381 | b9ed6bef9364 |
child 37242 | 91e5f98fff6f |
permissions | -rw-r--r-- |
1 | 1 |
/* |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34257
diff
changeset
|
2 |
* Copyright (c) 2003, 2016, 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:
5426
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5426
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:
5426
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34257
diff
changeset
|
26 |
#include "classfile/classLoaderData.inline.hpp" |
34257
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
33611
diff
changeset
|
27 |
#include "classfile/sharedClassUtil.hpp" |
7397 | 28 |
#include "classfile/dictionary.hpp" |
29 |
#include "classfile/systemDictionary.hpp" |
|
34257
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
33611
diff
changeset
|
30 |
#include "classfile/systemDictionaryShared.hpp" |
20405 | 31 |
#include "memory/iterator.hpp" |
7397 | 32 |
#include "oops/oop.inline.hpp" |
33 |
#include "prims/jvmtiRedefineClassesTrace.hpp" |
|
24351
61b33cc6d3cf
8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents:
22794
diff
changeset
|
34 |
#include "runtime/orderAccess.inline.hpp" |
7397 | 35 |
#include "utilities/hashtable.inline.hpp" |
1 | 36 |
|
37 |
DictionaryEntry* Dictionary::_current_class_entry = NULL; |
|
38 |
int Dictionary::_current_class_index = 0; |
|
39 |
||
34257
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
33611
diff
changeset
|
40 |
size_t Dictionary::entry_size() { |
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
33611
diff
changeset
|
41 |
if (DumpSharedSpaces) { |
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
33611
diff
changeset
|
42 |
return SystemDictionaryShared::dictionary_entry_size(); |
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
33611
diff
changeset
|
43 |
} else { |
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
33611
diff
changeset
|
44 |
return sizeof(DictionaryEntry); |
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
33611
diff
changeset
|
45 |
} |
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
33611
diff
changeset
|
46 |
} |
1 | 47 |
|
48 |
Dictionary::Dictionary(int table_size) |
|
34257
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
33611
diff
changeset
|
49 |
: TwoOopHashtable<Klass*, mtClass>(table_size, (int)entry_size()) { |
1 | 50 |
_current_class_index = 0; |
51 |
_current_class_entry = NULL; |
|
20405 | 52 |
_pd_cache_table = new ProtectionDomainCacheTable(defaultProtectionDomainCacheSize); |
1 | 53 |
}; |
54 |
||
55 |
||
13195 | 56 |
Dictionary::Dictionary(int table_size, HashtableBucket<mtClass>* t, |
1 | 57 |
int number_of_entries) |
34257
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
33611
diff
changeset
|
58 |
: TwoOopHashtable<Klass*, mtClass>(table_size, (int)entry_size(), t, number_of_entries) { |
1 | 59 |
_current_class_index = 0; |
60 |
_current_class_entry = NULL; |
|
20405 | 61 |
_pd_cache_table = new ProtectionDomainCacheTable(defaultProtectionDomainCacheSize); |
1 | 62 |
}; |
63 |
||
20405 | 64 |
ProtectionDomainCacheEntry* Dictionary::cache_get(oop protection_domain) { |
65 |
return _pd_cache_table->get(protection_domain); |
|
66 |
} |
|
1 | 67 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
68 |
DictionaryEntry* Dictionary::new_entry(unsigned int hash, Klass* klass, |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
69 |
ClassLoaderData* loader_data) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
70 |
DictionaryEntry* entry = (DictionaryEntry*)Hashtable<Klass*, mtClass>::new_entry(hash, klass); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
71 |
entry->set_loader_data(loader_data); |
1 | 72 |
entry->set_pd_set(NULL); |
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
33602
diff
changeset
|
73 |
assert(klass->is_instance_klass(), "Must be"); |
34257
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
33611
diff
changeset
|
74 |
if (DumpSharedSpaces) { |
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
33611
diff
changeset
|
75 |
SystemDictionaryShared::init_shared_dictionary_entry(klass, entry); |
4be3504cc03b
8140802: Clean up and refactor of class loading code for CDS
iklam
parents:
33611
diff
changeset
|
76 |
} |
1 | 77 |
return entry; |
78 |
} |
|
79 |
||
80 |
||
81 |
void Dictionary::free_entry(DictionaryEntry* entry) { |
|
82 |
// avoid recursion when deleting linked list |
|
83 |
while (entry->pd_set() != NULL) { |
|
84 |
ProtectionDomainEntry* to_delete = entry->pd_set(); |
|
85 |
entry->set_pd_set(to_delete->next()); |
|
86 |
delete to_delete; |
|
87 |
} |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
88 |
Hashtable<Klass*, mtClass>::free_entry(entry); |
1 | 89 |
} |
90 |
||
91 |
||
92 |
bool DictionaryEntry::contains_protection_domain(oop protection_domain) const { |
|
93 |
#ifdef ASSERT |
|
33602 | 94 |
if (protection_domain == klass()->protection_domain()) { |
1 | 95 |
// Ensure this doesn't show up in the pd_set (invariant) |
96 |
bool in_pd_set = false; |
|
97 |
for (ProtectionDomainEntry* current = _pd_set; |
|
98 |
current != NULL; |
|
99 |
current = current->next()) { |
|
100 |
if (current->protection_domain() == protection_domain) { |
|
101 |
in_pd_set = true; |
|
102 |
break; |
|
103 |
} |
|
104 |
} |
|
105 |
if (in_pd_set) { |
|
106 |
assert(false, "A klass's protection domain should not show up " |
|
107 |
"in its sys. dict. PD set"); |
|
108 |
} |
|
109 |
} |
|
110 |
#endif /* ASSERT */ |
|
111 |
||
33602 | 112 |
if (protection_domain == klass()->protection_domain()) { |
1 | 113 |
// Succeeds trivially |
114 |
return true; |
|
115 |
} |
|
116 |
||
117 |
for (ProtectionDomainEntry* current = _pd_set; |
|
118 |
current != NULL; |
|
119 |
current = current->next()) { |
|
120 |
if (current->protection_domain() == protection_domain) return true; |
|
121 |
} |
|
122 |
return false; |
|
123 |
} |
|
124 |
||
125 |
||
20405 | 126 |
void DictionaryEntry::add_protection_domain(Dictionary* dict, oop protection_domain) { |
1 | 127 |
assert_locked_or_safepoint(SystemDictionary_lock); |
128 |
if (!contains_protection_domain(protection_domain)) { |
|
20405 | 129 |
ProtectionDomainCacheEntry* entry = dict->cache_get(protection_domain); |
1 | 130 |
ProtectionDomainEntry* new_head = |
20405 | 131 |
new ProtectionDomainEntry(entry, _pd_set); |
1 | 132 |
// Warning: Preserve store ordering. The SystemDictionary is read |
133 |
// without locks. The new ProtectionDomainEntry must be |
|
134 |
// complete before other threads can be allowed to see it |
|
135 |
// via a store to _pd_set. |
|
136 |
OrderAccess::release_store_ptr(&_pd_set, new_head); |
|
137 |
} |
|
36381
b9ed6bef9364
8149064: TraceProtectionDomainVerification has been converted to Unified Logging.
mockner
parents:
35498
diff
changeset
|
138 |
if (log_is_enabled(Trace, protectiondomain)) { |
b9ed6bef9364
8149064: TraceProtectionDomainVerification has been converted to Unified Logging.
mockner
parents:
35498
diff
changeset
|
139 |
ResourceMark rm; |
b9ed6bef9364
8149064: TraceProtectionDomainVerification has been converted to Unified Logging.
mockner
parents:
35498
diff
changeset
|
140 |
outputStream* log = LogHandle(protectiondomain)::trace_stream(); |
b9ed6bef9364
8149064: TraceProtectionDomainVerification has been converted to Unified Logging.
mockner
parents:
35498
diff
changeset
|
141 |
print_count(log); |
1 | 142 |
} |
143 |
} |
|
144 |
||
145 |
||
26174
ca46a107cb78
8054402: "klass->is_loader_alive(_is_alive)) failed: must be alive" for anonymous classes
thartmann
parents:
25492
diff
changeset
|
146 |
void Dictionary::do_unloading() { |
5402
c51fd0c1d005
6888953: some calls to function-like macros are missing semicolons
jcoomes
parents:
2534
diff
changeset
|
147 |
assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint"); |
1 | 148 |
|
149 |
// Remove unloadable entries and classes from system dictionary |
|
150 |
// The placeholder array has been handled in always_strong_oops_do. |
|
151 |
DictionaryEntry* probe = NULL; |
|
26174
ca46a107cb78
8054402: "klass->is_loader_alive(_is_alive)) failed: must be alive" for anonymous classes
thartmann
parents:
25492
diff
changeset
|
152 |
for (int index = 0; index < table_size(); index++) { |
1 | 153 |
for (DictionaryEntry** p = bucket_addr(index); *p != NULL; ) { |
154 |
probe = *p; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
155 |
Klass* e = probe->klass(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
156 |
ClassLoaderData* loader_data = probe->loader_data(); |
1 | 157 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
158 |
InstanceKlass* ik = InstanceKlass::cast(e); |
1 | 159 |
|
160 |
// Non-unloadable classes were handled in always_strong_oops_do |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
161 |
if (!is_strongly_reachable(loader_data, e)) { |
1 | 162 |
// Entry was not visited in phase1 (negated test from phase1) |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
163 |
assert(!loader_data->is_the_null_class_loader_data(), "unloading entry with null class loader"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
164 |
ClassLoaderData* k_def_class_loader_data = ik->class_loader_data(); |
1 | 165 |
|
166 |
// Do we need to delete this system dictionary entry? |
|
167 |
bool purge_entry = false; |
|
168 |
||
169 |
// Do we need to delete this system dictionary entry? |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
170 |
if (loader_data->is_unloading()) { |
1 | 171 |
// If the loader is not live this entry should always be |
26174
ca46a107cb78
8054402: "klass->is_loader_alive(_is_alive)) failed: must be alive" for anonymous classes
thartmann
parents:
25492
diff
changeset
|
172 |
// removed (will never be looked up again). |
1 | 173 |
purge_entry = true; |
174 |
} else { |
|
175 |
// The loader in this entry is alive. If the klass is dead, |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
176 |
// (determined by checking the defining class loader) |
1 | 177 |
// the loader must be an initiating loader (rather than the |
178 |
// defining loader). Remove this entry. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
179 |
if (k_def_class_loader_data->is_unloading()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
180 |
// If we get here, the class_loader_data must not be the defining |
1 | 181 |
// loader, it must be an initiating one. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
182 |
assert(k_def_class_loader_data != loader_data, |
1 | 183 |
"cannot have live defining loader and unreachable klass"); |
184 |
// Loader is live, but class and its defining loader are dead. |
|
185 |
// Remove the entry. The class is going away. |
|
186 |
purge_entry = true; |
|
187 |
} |
|
188 |
} |
|
189 |
||
190 |
if (purge_entry) { |
|
191 |
*p = probe->next(); |
|
192 |
if (probe == _current_class_entry) { |
|
193 |
_current_class_entry = NULL; |
|
194 |
} |
|
195 |
free_entry(probe); |
|
196 |
continue; |
|
197 |
} |
|
198 |
} |
|
199 |
p = probe->next_addr(); |
|
200 |
} |
|
201 |
} |
|
202 |
} |
|
203 |
||
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
204 |
void Dictionary::roots_oops_do(OopClosure* strong, OopClosure* weak) { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
205 |
// Skip the strong roots probe marking if the closures are the same. |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
206 |
if (strong == weak) { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
207 |
oops_do(strong); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
208 |
return; |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
209 |
} |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
210 |
|
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
211 |
for (int index = 0; index < table_size(); index++) { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
212 |
for (DictionaryEntry *probe = bucket(index); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
213 |
probe != NULL; |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
214 |
probe = probe->next()) { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
215 |
Klass* e = probe->klass(); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
216 |
ClassLoaderData* loader_data = probe->loader_data(); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
217 |
if (is_strongly_reachable(loader_data, e)) { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
218 |
probe->set_strongly_reachable(); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
219 |
} |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
220 |
} |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
221 |
} |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
222 |
_pd_cache_table->roots_oops_do(strong, weak); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
223 |
} |
1 | 224 |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
225 |
void Dictionary::remove_classes_in_error_state() { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
226 |
assert(DumpSharedSpaces, "supported only when dumping"); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
227 |
DictionaryEntry* probe = NULL; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
228 |
for (int index = 0; index < table_size(); index++) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
229 |
for (DictionaryEntry** p = bucket_addr(index); *p != NULL; ) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
230 |
probe = *p; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
231 |
InstanceKlass* ik = InstanceKlass::cast(probe->klass()); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
232 |
if (ik->is_in_error_state()) { // purge this entry |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
233 |
*p = probe->next(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
234 |
if (probe == _current_class_entry) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
235 |
_current_class_entry = NULL; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
236 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
237 |
free_entry(probe); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
238 |
ResourceMark rm; |
27618
790a8bf5488b
8064375: Change certain errors to warnings in CDS output.
jiangli
parents:
26181
diff
changeset
|
239 |
tty->print_cr("Preload Warning: Removed error class: %s", ik->external_name()); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
240 |
continue; |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
241 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
242 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
243 |
p = probe->next_addr(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
244 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
245 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
246 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
247 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
248 |
void Dictionary::always_strong_oops_do(OopClosure* blk) { |
20405 | 249 |
// Follow all system classes and temporary placeholders in dictionary; only |
250 |
// protection domain oops contain references into the heap. In a first |
|
251 |
// pass over the system dictionary determine which need to be treated as |
|
252 |
// strongly reachable and mark them as such. |
|
1 | 253 |
for (int index = 0; index < table_size(); index++) { |
254 |
for (DictionaryEntry *probe = bucket(index); |
|
255 |
probe != NULL; |
|
256 |
probe = probe->next()) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
257 |
Klass* e = probe->klass(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
258 |
ClassLoaderData* loader_data = probe->loader_data(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
259 |
if (is_strongly_reachable(loader_data, e)) { |
20405 | 260 |
probe->set_strongly_reachable(); |
1 | 261 |
} |
262 |
} |
|
263 |
} |
|
20405 | 264 |
// Then iterate over the protection domain cache to apply the closure on the |
265 |
// previously marked ones. |
|
266 |
_pd_cache_table->always_strong_oops_do(blk); |
|
1 | 267 |
} |
268 |
||
269 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
270 |
void Dictionary::always_strong_classes_do(KlassClosure* closure) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
271 |
// Follow all system classes and temporary placeholders in dictionary |
1 | 272 |
for (int index = 0; index < table_size(); index++) { |
273 |
for (DictionaryEntry* probe = bucket(index); |
|
274 |
probe != NULL; |
|
275 |
probe = probe->next()) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
276 |
Klass* e = probe->klass(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
277 |
ClassLoaderData* loader_data = probe->loader_data(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
278 |
if (is_strongly_reachable(loader_data, e)) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
279 |
closure->do_klass(e); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
280 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
281 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
282 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
283 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
284 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
285 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
286 |
// Just the classes from defining class loaders |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
287 |
void Dictionary::classes_do(void f(Klass*)) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
288 |
for (int index = 0; index < table_size(); index++) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
289 |
for (DictionaryEntry* probe = bucket(index); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
290 |
probe != NULL; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
291 |
probe = probe->next()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
292 |
Klass* k = probe->klass(); |
33602 | 293 |
if (probe->loader_data() == k->class_loader_data()) { |
1 | 294 |
f(k); |
295 |
} |
|
296 |
} |
|
297 |
} |
|
298 |
} |
|
299 |
||
300 |
// Added for initialize_itable_for_klass to handle exceptions |
|
301 |
// Just the classes from defining class loaders |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
302 |
void Dictionary::classes_do(void f(Klass*, TRAPS), TRAPS) { |
1 | 303 |
for (int index = 0; index < table_size(); index++) { |
304 |
for (DictionaryEntry* probe = bucket(index); |
|
305 |
probe != NULL; |
|
306 |
probe = probe->next()) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
307 |
Klass* k = probe->klass(); |
33602 | 308 |
if (probe->loader_data() == k->class_loader_data()) { |
1 | 309 |
f(k, CHECK); |
310 |
} |
|
311 |
} |
|
312 |
} |
|
313 |
} |
|
314 |
||
315 |
// All classes, and their class loaders |
|
316 |
// Don't iterate over placeholders |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
317 |
void Dictionary::classes_do(void f(Klass*, ClassLoaderData*)) { |
1 | 318 |
for (int index = 0; index < table_size(); index++) { |
319 |
for (DictionaryEntry* probe = bucket(index); |
|
320 |
probe != NULL; |
|
321 |
probe = probe->next()) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
322 |
Klass* k = probe->klass(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
323 |
f(k, probe->loader_data()); |
1 | 324 |
} |
325 |
} |
|
326 |
} |
|
327 |
||
328 |
void Dictionary::oops_do(OopClosure* f) { |
|
20405 | 329 |
// Only the protection domain oops contain references into the heap. Iterate |
330 |
// over all of them. |
|
331 |
_pd_cache_table->oops_do(f); |
|
1 | 332 |
} |
333 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
334 |
void Dictionary::methods_do(void f(Method*)) { |
1 | 335 |
for (int index = 0; index < table_size(); index++) { |
336 |
for (DictionaryEntry* probe = bucket(index); |
|
337 |
probe != NULL; |
|
338 |
probe = probe->next()) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
339 |
Klass* k = probe->klass(); |
33602 | 340 |
if (probe->loader_data() == k->class_loader_data()) { |
1 | 341 |
// only take klass is we have the entry with the defining class loader |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
342 |
InstanceKlass::cast(k)->methods_do(f); |
1 | 343 |
} |
344 |
} |
|
345 |
} |
|
346 |
} |
|
347 |
||
20405 | 348 |
void Dictionary::unlink(BoolObjectClosure* is_alive) { |
349 |
// Only the protection domain cache table may contain references to the heap |
|
350 |
// that need to be unlinked. |
|
351 |
_pd_cache_table->unlink(is_alive); |
|
352 |
} |
|
1 | 353 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
354 |
Klass* Dictionary::try_get_next_class() { |
1 | 355 |
while (true) { |
356 |
if (_current_class_entry != NULL) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
357 |
Klass* k = _current_class_entry->klass(); |
1 | 358 |
_current_class_entry = _current_class_entry->next(); |
359 |
return k; |
|
360 |
} |
|
361 |
_current_class_index = (_current_class_index + 1) % table_size(); |
|
362 |
_current_class_entry = bucket(_current_class_index); |
|
363 |
} |
|
364 |
// never reached |
|
365 |
} |
|
366 |
||
367 |
// Add a loaded class to the system dictionary. |
|
368 |
// Readers of the SystemDictionary aren't always locked, so _buckets |
|
369 |
// is volatile. The store of the next field in the constructor is |
|
370 |
// also cast to volatile; we do this to ensure store order is maintained |
|
371 |
// by the compilers. |
|
372 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
373 |
void Dictionary::add_klass(Symbol* class_name, ClassLoaderData* loader_data, |
1 | 374 |
KlassHandle obj) { |
375 |
assert_locked_or_safepoint(SystemDictionary_lock); |
|
376 |
assert(obj() != NULL, "adding NULL obj"); |
|
14488 | 377 |
assert(obj()->name() == class_name, "sanity check on name"); |
15847
f9ce2cd20dee
8008549: NPG: SystemDictionary::find(...) unnecessarily keeps class loaders alive
stefank
parents:
14588
diff
changeset
|
378 |
assert(loader_data != NULL, "Must be non-NULL"); |
1 | 379 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
380 |
unsigned int hash = compute_hash(class_name, loader_data); |
1 | 381 |
int index = hash_to_index(hash); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
382 |
DictionaryEntry* entry = new_entry(hash, obj(), loader_data); |
1 | 383 |
add_entry(index, entry); |
384 |
} |
|
385 |
||
386 |
||
387 |
// This routine does not lock the system dictionary. |
|
388 |
// |
|
389 |
// Since readers don't hold a lock, we must make sure that system |
|
390 |
// dictionary entries are only removed at a safepoint (when only one |
|
391 |
// thread is running), and are added to in a safe way (all links must |
|
392 |
// be updated in an MT-safe manner). |
|
393 |
// |
|
394 |
// Callers should be aware that an entry could be added just after |
|
395 |
// _buckets[index] is read here, so the caller will not see the new entry. |
|
396 |
DictionaryEntry* Dictionary::get_entry(int index, unsigned int hash, |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
397 |
Symbol* class_name, |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
398 |
ClassLoaderData* loader_data) { |
1 | 399 |
debug_only(_lookup_count++); |
400 |
for (DictionaryEntry* entry = bucket(index); |
|
401 |
entry != NULL; |
|
402 |
entry = entry->next()) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
403 |
if (entry->hash() == hash && entry->equals(class_name, loader_data)) { |
1 | 404 |
return entry; |
405 |
} |
|
406 |
debug_only(_lookup_length++); |
|
407 |
} |
|
408 |
return NULL; |
|
409 |
} |
|
410 |
||
411 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
412 |
Klass* Dictionary::find(int index, unsigned int hash, Symbol* name, |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
413 |
ClassLoaderData* loader_data, Handle protection_domain, TRAPS) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
414 |
DictionaryEntry* entry = get_entry(index, hash, name, loader_data); |
1 | 415 |
if (entry != NULL && entry->is_valid_protection_domain(protection_domain)) { |
416 |
return entry->klass(); |
|
417 |
} else { |
|
418 |
return NULL; |
|
419 |
} |
|
420 |
} |
|
421 |
||
422 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
423 |
Klass* Dictionary::find_class(int index, unsigned int hash, |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
424 |
Symbol* name, ClassLoaderData* loader_data) { |
1 | 425 |
assert_locked_or_safepoint(SystemDictionary_lock); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
426 |
assert (index == index_for(name, loader_data), "incorrect index?"); |
1 | 427 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
428 |
DictionaryEntry* entry = get_entry(index, hash, name, loader_data); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
429 |
return (entry != NULL) ? entry->klass() : (Klass*)NULL; |
1 | 430 |
} |
431 |
||
432 |
||
433 |
// Variant of find_class for shared classes. No locking required, as |
|
434 |
// that table is static. |
|
435 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
436 |
Klass* Dictionary::find_shared_class(int index, unsigned int hash, |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
437 |
Symbol* name) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
438 |
assert (index == index_for(name, NULL), "incorrect index?"); |
1 | 439 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
440 |
DictionaryEntry* entry = get_entry(index, hash, name, NULL); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
441 |
return (entry != NULL) ? entry->klass() : (Klass*)NULL; |
1 | 442 |
} |
443 |
||
444 |
||
445 |
void Dictionary::add_protection_domain(int index, unsigned int hash, |
|
446 |
instanceKlassHandle klass, |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
447 |
ClassLoaderData* loader_data, Handle protection_domain, |
1 | 448 |
TRAPS) { |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
449 |
Symbol* klass_name = klass->name(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
450 |
DictionaryEntry* entry = get_entry(index, hash, klass_name, loader_data); |
1 | 451 |
|
452 |
assert(entry != NULL,"entry must be present, we just created it"); |
|
453 |
assert(protection_domain() != NULL, |
|
454 |
"real protection domain should be present"); |
|
455 |
||
20405 | 456 |
entry->add_protection_domain(this, protection_domain()); |
1 | 457 |
|
458 |
assert(entry->contains_protection_domain(protection_domain()), |
|
459 |
"now protection domain should be present"); |
|
460 |
} |
|
461 |
||
462 |
||
463 |
bool Dictionary::is_valid_protection_domain(int index, unsigned int hash, |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
464 |
Symbol* name, |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
465 |
ClassLoaderData* loader_data, |
1 | 466 |
Handle protection_domain) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
467 |
DictionaryEntry* entry = get_entry(index, hash, name, loader_data); |
1 | 468 |
return entry->is_valid_protection_domain(protection_domain); |
469 |
} |
|
470 |
||
471 |
||
472 |
void Dictionary::reorder_dictionary() { |
|
473 |
||
474 |
// Copy all the dictionary entries into a single master list. |
|
475 |
||
476 |
DictionaryEntry* master_list = NULL; |
|
477 |
for (int i = 0; i < table_size(); ++i) { |
|
478 |
DictionaryEntry* p = bucket(i); |
|
479 |
while (p != NULL) { |
|
480 |
DictionaryEntry* tmp; |
|
481 |
tmp = p->next(); |
|
482 |
p->set_next(master_list); |
|
483 |
master_list = p; |
|
484 |
p = tmp; |
|
485 |
} |
|
486 |
set_entry(i, NULL); |
|
487 |
} |
|
488 |
||
489 |
// Add the dictionary entries back to the list in the correct buckets. |
|
490 |
while (master_list != NULL) { |
|
491 |
DictionaryEntry* p = master_list; |
|
492 |
master_list = master_list->next(); |
|
493 |
p->set_next(NULL); |
|
33602 | 494 |
Symbol* class_name = p->klass()->name(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
495 |
// Since the null class loader data isn't copied to the CDS archive, |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
496 |
// compute the hash with NULL for loader data. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
497 |
unsigned int hash = compute_hash(class_name, NULL); |
1 | 498 |
int index = hash_to_index(hash); |
499 |
p->set_hash(hash); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
500 |
p->set_loader_data(NULL); // loader_data isn't copied to CDS |
1 | 501 |
p->set_next(bucket(index)); |
502 |
set_entry(index, p); |
|
503 |
} |
|
504 |
} |
|
505 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34257
diff
changeset
|
506 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34257
diff
changeset
|
507 |
unsigned int ProtectionDomainCacheTable::compute_hash(oop protection_domain) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34257
diff
changeset
|
508 |
return (unsigned int)(protection_domain->identity_hash()); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34257
diff
changeset
|
509 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34257
diff
changeset
|
510 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34257
diff
changeset
|
511 |
int ProtectionDomainCacheTable::index_for(oop protection_domain) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34257
diff
changeset
|
512 |
return hash_to_index(compute_hash(protection_domain)); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34257
diff
changeset
|
513 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34257
diff
changeset
|
514 |
|
20405 | 515 |
ProtectionDomainCacheTable::ProtectionDomainCacheTable(int table_size) |
516 |
: Hashtable<oop, mtClass>(table_size, sizeof(ProtectionDomainCacheEntry)) |
|
517 |
{ |
|
518 |
} |
|
519 |
||
520 |
void ProtectionDomainCacheTable::unlink(BoolObjectClosure* is_alive) { |
|
521 |
assert(SafepointSynchronize::is_at_safepoint(), "must be"); |
|
522 |
for (int i = 0; i < table_size(); ++i) { |
|
523 |
ProtectionDomainCacheEntry** p = bucket_addr(i); |
|
524 |
ProtectionDomainCacheEntry* entry = bucket(i); |
|
525 |
while (entry != NULL) { |
|
526 |
if (is_alive->do_object_b(entry->literal())) { |
|
527 |
p = entry->next_addr(); |
|
528 |
} else { |
|
529 |
*p = entry->next(); |
|
530 |
free_entry(entry); |
|
531 |
} |
|
532 |
entry = *p; |
|
533 |
} |
|
534 |
} |
|
535 |
} |
|
536 |
||
537 |
void ProtectionDomainCacheTable::oops_do(OopClosure* f) { |
|
538 |
for (int index = 0; index < table_size(); index++) { |
|
539 |
for (ProtectionDomainCacheEntry* probe = bucket(index); |
|
540 |
probe != NULL; |
|
541 |
probe = probe->next()) { |
|
542 |
probe->oops_do(f); |
|
543 |
} |
|
544 |
} |
|
545 |
} |
|
546 |
||
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
547 |
void ProtectionDomainCacheTable::roots_oops_do(OopClosure* strong, OopClosure* weak) { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
548 |
for (int index = 0; index < table_size(); index++) { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
549 |
for (ProtectionDomainCacheEntry* probe = bucket(index); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
550 |
probe != NULL; |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
551 |
probe = probe->next()) { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
552 |
if (probe->is_strongly_reachable()) { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
553 |
probe->reset_strongly_reachable(); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
554 |
probe->oops_do(strong); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
555 |
} else { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
556 |
if (weak != NULL) { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
557 |
probe->oops_do(weak); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
558 |
} |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
559 |
} |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
560 |
} |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
561 |
} |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
562 |
} |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
563 |
|
20405 | 564 |
uint ProtectionDomainCacheTable::bucket_size() { |
565 |
return sizeof(ProtectionDomainCacheEntry); |
|
566 |
} |
|
567 |
||
568 |
#ifndef PRODUCT |
|
569 |
void ProtectionDomainCacheTable::print() { |
|
570 |
tty->print_cr("Protection domain cache table (table_size=%d, classes=%d)", |
|
571 |
table_size(), number_of_entries()); |
|
572 |
for (int index = 0; index < table_size(); index++) { |
|
573 |
for (ProtectionDomainCacheEntry* probe = bucket(index); |
|
574 |
probe != NULL; |
|
575 |
probe = probe->next()) { |
|
576 |
probe->print(); |
|
577 |
} |
|
578 |
} |
|
579 |
} |
|
580 |
||
581 |
void ProtectionDomainCacheEntry::print() { |
|
31592
43f48e165466
8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents:
27618
diff
changeset
|
582 |
tty->print_cr("entry " PTR_FORMAT " value " PTR_FORMAT " strongly_reachable %d next " PTR_FORMAT, |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
583 |
p2i(this), p2i(literal()), _strongly_reachable, p2i(next())); |
20405 | 584 |
} |
585 |
#endif |
|
586 |
||
587 |
void ProtectionDomainCacheTable::verify() { |
|
588 |
int element_count = 0; |
|
589 |
for (int index = 0; index < table_size(); index++) { |
|
590 |
for (ProtectionDomainCacheEntry* probe = bucket(index); |
|
591 |
probe != NULL; |
|
592 |
probe = probe->next()) { |
|
593 |
probe->verify(); |
|
594 |
element_count++; |
|
595 |
} |
|
596 |
} |
|
597 |
guarantee(number_of_entries() == element_count, |
|
598 |
"Verify of protection domain cache table failed"); |
|
599 |
debug_only(verify_lookup_length((double)number_of_entries() / table_size())); |
|
600 |
} |
|
601 |
||
602 |
void ProtectionDomainCacheEntry::verify() { |
|
603 |
guarantee(literal()->is_oop(), "must be an oop"); |
|
604 |
} |
|
605 |
||
606 |
void ProtectionDomainCacheTable::always_strong_oops_do(OopClosure* f) { |
|
607 |
// the caller marked the protection domain cache entries that we need to apply |
|
608 |
// the closure on. Only process them. |
|
609 |
for (int index = 0; index < table_size(); index++) { |
|
610 |
for (ProtectionDomainCacheEntry* probe = bucket(index); |
|
611 |
probe != NULL; |
|
612 |
probe = probe->next()) { |
|
613 |
if (probe->is_strongly_reachable()) { |
|
614 |
probe->reset_strongly_reachable(); |
|
615 |
probe->oops_do(f); |
|
616 |
} |
|
617 |
} |
|
618 |
} |
|
619 |
} |
|
620 |
||
621 |
ProtectionDomainCacheEntry* ProtectionDomainCacheTable::get(oop protection_domain) { |
|
622 |
unsigned int hash = compute_hash(protection_domain); |
|
623 |
int index = hash_to_index(hash); |
|
624 |
||
625 |
ProtectionDomainCacheEntry* entry = find_entry(index, protection_domain); |
|
626 |
if (entry == NULL) { |
|
627 |
entry = add_entry(index, hash, protection_domain); |
|
628 |
} |
|
629 |
return entry; |
|
630 |
} |
|
631 |
||
632 |
ProtectionDomainCacheEntry* ProtectionDomainCacheTable::find_entry(int index, oop protection_domain) { |
|
633 |
for (ProtectionDomainCacheEntry* e = bucket(index); e != NULL; e = e->next()) { |
|
634 |
if (e->protection_domain() == protection_domain) { |
|
635 |
return e; |
|
636 |
} |
|
637 |
} |
|
638 |
||
639 |
return NULL; |
|
640 |
} |
|
641 |
||
642 |
ProtectionDomainCacheEntry* ProtectionDomainCacheTable::add_entry(int index, unsigned int hash, oop protection_domain) { |
|
643 |
assert_locked_or_safepoint(SystemDictionary_lock); |
|
644 |
assert(index == index_for(protection_domain), "incorrect index?"); |
|
645 |
assert(find_entry(index, protection_domain) == NULL, "no double entry"); |
|
646 |
||
647 |
ProtectionDomainCacheEntry* p = new_entry(hash, protection_domain); |
|
648 |
Hashtable<oop, mtClass>::add_entry(index, p); |
|
649 |
return p; |
|
650 |
} |
|
651 |
||
652 |
void ProtectionDomainCacheTable::free(ProtectionDomainCacheEntry* to_delete) { |
|
653 |
unsigned int hash = compute_hash(to_delete->protection_domain()); |
|
654 |
int index = hash_to_index(hash); |
|
655 |
||
656 |
ProtectionDomainCacheEntry** p = bucket_addr(index); |
|
657 |
ProtectionDomainCacheEntry* entry = bucket(index); |
|
658 |
while (true) { |
|
659 |
assert(entry != NULL, "sanity"); |
|
660 |
||
661 |
if (entry == to_delete) { |
|
662 |
*p = entry->next(); |
|
663 |
Hashtable<oop, mtClass>::free_entry(entry); |
|
664 |
break; |
|
665 |
} else { |
|
666 |
p = entry->next_addr(); |
|
667 |
entry = *p; |
|
668 |
} |
|
669 |
} |
|
670 |
} |
|
671 |
||
2534 | 672 |
SymbolPropertyTable::SymbolPropertyTable(int table_size) |
13195 | 673 |
: Hashtable<Symbol*, mtSymbol>(table_size, sizeof(SymbolPropertyEntry)) |
2534 | 674 |
{ |
675 |
} |
|
13195 | 676 |
SymbolPropertyTable::SymbolPropertyTable(int table_size, HashtableBucket<mtSymbol>* t, |
2534 | 677 |
int number_of_entries) |
13195 | 678 |
: Hashtable<Symbol*, mtSymbol>(table_size, sizeof(SymbolPropertyEntry), t, number_of_entries) |
2534 | 679 |
{ |
680 |
} |
|
681 |
||
682 |
||
683 |
SymbolPropertyEntry* SymbolPropertyTable::find_entry(int index, unsigned int hash, |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
684 |
Symbol* sym, |
5420
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
2534
diff
changeset
|
685 |
intptr_t sym_mode) { |
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
2534
diff
changeset
|
686 |
assert(index == index_for(sym, sym_mode), "incorrect index?"); |
2534 | 687 |
for (SymbolPropertyEntry* p = bucket(index); p != NULL; p = p->next()) { |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
688 |
if (p->hash() == hash && p->symbol() == sym && p->symbol_mode() == sym_mode) { |
2534 | 689 |
return p; |
690 |
} |
|
691 |
} |
|
692 |
return NULL; |
|
693 |
} |
|
694 |
||
695 |
||
696 |
SymbolPropertyEntry* SymbolPropertyTable::add_entry(int index, unsigned int hash, |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
697 |
Symbol* sym, intptr_t sym_mode) { |
2534 | 698 |
assert_locked_or_safepoint(SystemDictionary_lock); |
5420
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
2534
diff
changeset
|
699 |
assert(index == index_for(sym, sym_mode), "incorrect index?"); |
586d3988e72b
6939134: JSR 292 adjustments to method handle invocation
jrose
parents:
2534
diff
changeset
|
700 |
assert(find_entry(index, hash, sym, sym_mode) == NULL, "no double entry"); |
2534 | 701 |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
702 |
SymbolPropertyEntry* p = new_entry(hash, sym, sym_mode); |
13195 | 703 |
Hashtable<Symbol*, mtSymbol>::add_entry(index, p); |
2534 | 704 |
return p; |
705 |
} |
|
706 |
||
707 |
void SymbolPropertyTable::oops_do(OopClosure* f) { |
|
708 |
for (int index = 0; index < table_size(); index++) { |
|
709 |
for (SymbolPropertyEntry* p = bucket(index); p != NULL; p = p->next()) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
710 |
if (p->method_type() != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
711 |
f->do_oop(p->method_type_addr()); |
2534 | 712 |
} |
713 |
} |
|
714 |
} |
|
715 |
} |
|
716 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
717 |
void SymbolPropertyTable::methods_do(void f(Method*)) { |
2534 | 718 |
for (int index = 0; index < table_size(); index++) { |
719 |
for (SymbolPropertyEntry* p = bucket(index); p != NULL; p = p->next()) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
720 |
Method* prop = p->method(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
721 |
if (prop != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
722 |
f((Method*)prop); |
2534 | 723 |
} |
724 |
} |
|
725 |
} |
|
726 |
} |
|
727 |
||
1 | 728 |
|
729 |
// ---------------------------------------------------------------------------- |
|
730 |
||
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
731 |
void Dictionary::print(bool details) { |
1 | 732 |
ResourceMark rm; |
733 |
HandleMark hm; |
|
734 |
||
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
735 |
if (details) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
736 |
tty->print_cr("Java system dictionary (table_size=%d, classes=%d)", |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
737 |
table_size(), number_of_entries()); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
738 |
tty->print_cr("^ indicates that initiating loader is different from " |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
739 |
"defining loader"); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
740 |
} |
1 | 741 |
|
742 |
for (int index = 0; index < table_size(); index++) { |
|
743 |
for (DictionaryEntry* probe = bucket(index); |
|
744 |
probe != NULL; |
|
745 |
probe = probe->next()) { |
|
746 |
if (Verbose) tty->print("%4d: ", index); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
747 |
Klass* e = probe->klass(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
748 |
ClassLoaderData* loader_data = probe->loader_data(); |
1 | 749 |
bool is_defining_class = |
33602 | 750 |
(loader_data == e->class_loader_data()); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
751 |
tty->print("%s%s", ((!details) || is_defining_class) ? " " : "^", |
14488 | 752 |
e->external_name()); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
753 |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
754 |
if (details) { |
1 | 755 |
tty->print(", loader "); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
756 |
if (loader_data != NULL) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
757 |
loader_data->print_value(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
758 |
} else { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
759 |
tty->print("NULL"); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
760 |
} |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
761 |
} |
1 | 762 |
tty->cr(); |
763 |
} |
|
764 |
} |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
765 |
|
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
766 |
if (details) { |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
767 |
tty->cr(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
768 |
_pd_cache_table->print(); |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25492
diff
changeset
|
769 |
} |
20405 | 770 |
tty->cr(); |
1 | 771 |
} |
772 |
||
773 |
void Dictionary::verify() { |
|
774 |
guarantee(number_of_entries() >= 0, "Verify of system dictionary failed"); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
775 |
|
1 | 776 |
int element_count = 0; |
777 |
for (int index = 0; index < table_size(); index++) { |
|
778 |
for (DictionaryEntry* probe = bucket(index); |
|
779 |
probe != NULL; |
|
780 |
probe = probe->next()) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
781 |
Klass* e = probe->klass(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
782 |
ClassLoaderData* loader_data = probe->loader_data(); |
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
33602
diff
changeset
|
783 |
guarantee(e->is_instance_klass(), |
1 | 784 |
"Verify of system dictionary failed"); |
785 |
// class loader must be present; a null class loader is the |
|
786 |
// boostrap loader |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
787 |
guarantee(loader_data != NULL || DumpSharedSpaces || |
14588
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14488
diff
changeset
|
788 |
loader_data->class_loader() == NULL || |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
789 |
loader_data->class_loader()->is_instance(), |
1 | 790 |
"checking type of class_loader"); |
22794
f1c014ad3754
8027146: Class loading verification failure if GC occurs in Universe::flush_dependents_on
coleenp
parents:
20408
diff
changeset
|
791 |
e->verify(); |
1 | 792 |
probe->verify_protection_domain_set(); |
793 |
element_count++; |
|
794 |
} |
|
795 |
} |
|
796 |
guarantee(number_of_entries() == element_count, |
|
797 |
"Verify of system dictionary failed"); |
|
798 |
debug_only(verify_lookup_length((double)number_of_entries() / table_size())); |
|
20405 | 799 |
|
800 |
_pd_cache_table->verify(); |
|
1 | 801 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
802 |