annotate src/share/vm/classfile/dictionary.cpp @ 23893:50e62b688ddc

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