annotate src/share/vm/classfile/dictionary.cpp @ 10215:31a4e55f8c9d

8004095: Add support for JMX interface to Diagnostic Framework and Commands Reviewed-by: acorn, sla
author fparain
date Fri, 03 May 2013 05:05:31 -0700
parents d587a5c30bd8
children 43083e670adf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
4864
b2cd0ee8f778 7114376: Make system dictionary hashtable bucket array size configurable
acorn
parents: 2426
diff changeset
2 * Copyright (c) 2003, 2012, 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"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "prims/jvmtiRedefineClassesTrace.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "utilities/hashtable.inline.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 DictionaryEntry* Dictionary::_current_class_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 int Dictionary::_current_class_index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 Dictionary::Dictionary(int table_size)
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
38 : TwoOopHashtable<Klass*, mtClass>(table_size, sizeof(DictionaryEntry)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
39 _current_class_index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 _current_class_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 };
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 4864
diff changeset
45 Dictionary::Dictionary(int table_size, HashtableBucket<mtClass>* t,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
46 int number_of_entries)
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
47 : TwoOopHashtable<Klass*, mtClass>(table_size, sizeof(DictionaryEntry), t, number_of_entries) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
48 _current_class_index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 _current_class_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 };
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
53 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
54 ClassLoaderData* loader_data) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
55 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
56 entry->set_loader_data(loader_data);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
57 entry->set_pd_set(NULL);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
58 assert(klass->oop_is_instance(), "Must be");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
59 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 }
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 void Dictionary::free_entry(DictionaryEntry* entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // avoid recursion when deleting linked list
a61af66fc99e Initial load
duke
parents:
diff changeset
65 while (entry->pd_set() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
66 ProtectionDomainEntry* to_delete = entry->pd_set();
a61af66fc99e Initial load
duke
parents:
diff changeset
67 entry->set_pd_set(to_delete->next());
a61af66fc99e Initial load
duke
parents:
diff changeset
68 delete to_delete;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
70 Hashtable<Klass*, mtClass>::free_entry(entry);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
71 }
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 bool DictionaryEntry::contains_protection_domain(oop protection_domain) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
75 #ifdef ASSERT
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
76 if (protection_domain == InstanceKlass::cast(klass())->protection_domain()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // Ensure this doesn't show up in the pd_set (invariant)
a61af66fc99e Initial load
duke
parents:
diff changeset
78 bool in_pd_set = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 for (ProtectionDomainEntry* current = _pd_set;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 current != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
81 current = current->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
82 if (current->protection_domain() == protection_domain) {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 in_pd_set = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 }
a61af66fc99e Initial load
duke
parents:
diff changeset
86 }
a61af66fc99e Initial load
duke
parents:
diff changeset
87 if (in_pd_set) {
a61af66fc99e Initial load
duke
parents:
diff changeset
88 assert(false, "A klass's protection domain should not show up "
a61af66fc99e Initial load
duke
parents:
diff changeset
89 "in its sys. dict. PD set");
a61af66fc99e Initial load
duke
parents:
diff changeset
90 }
a61af66fc99e Initial load
duke
parents:
diff changeset
91 }
a61af66fc99e Initial load
duke
parents:
diff changeset
92 #endif /* ASSERT */
a61af66fc99e Initial load
duke
parents:
diff changeset
93
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 // Succeeds trivially
a61af66fc99e Initial load
duke
parents:
diff changeset
96 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 }
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 for (ProtectionDomainEntry* current = _pd_set;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 current != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 current = current->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
102 if (current->protection_domain() == protection_domain) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 void DictionaryEntry::add_protection_domain(oop protection_domain) {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 assert_locked_or_safepoint(SystemDictionary_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
110 if (!contains_protection_domain(protection_domain)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
111 ProtectionDomainEntry* new_head =
a61af66fc99e Initial load
duke
parents:
diff changeset
112 new ProtectionDomainEntry(protection_domain, _pd_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // Warning: Preserve store ordering. The SystemDictionary is read
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // without locks. The new ProtectionDomainEntry must be
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // complete before other threads can be allowed to see it
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // via a store to _pd_set.
a61af66fc99e Initial load
duke
parents:
diff changeset
117 OrderAccess::release_store_ptr(&_pd_set, new_head);
a61af66fc99e Initial load
duke
parents:
diff changeset
118 }
a61af66fc99e Initial load
duke
parents:
diff changeset
119 if (TraceProtectionDomainVerification && WizardMode) {
a61af66fc99e Initial load
duke
parents:
diff changeset
120 print();
a61af66fc99e Initial load
duke
parents:
diff changeset
121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
122 }
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
125 bool Dictionary::do_unloading() {
1489
cff162798819 6888953: some calls to function-like macros are missing semicolons
jcoomes
parents: 710
diff changeset
126 assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
127 bool class_was_unloaded = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 int index = 0; // Defined here for portability! Do not move
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // Remove unloadable entries and classes from system dictionary
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // The placeholder array has been handled in always_strong_oops_do.
a61af66fc99e Initial load
duke
parents:
diff changeset
132 DictionaryEntry* probe = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 for (index = 0; index < table_size(); index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
134 for (DictionaryEntry** p = bucket_addr(index); *p != NULL; ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
135 probe = *p;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
136 Klass* e = probe->klass();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
137 ClassLoaderData* loader_data = probe->loader_data();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
138
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
139 InstanceKlass* ik = InstanceKlass::cast(e);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 // 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
142 if (!is_strongly_reachable(loader_data, e)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
143 // 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
144 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
145 ClassLoaderData* k_def_class_loader_data = ik->class_loader_data();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 // Do we need to delete this system dictionary entry?
a61af66fc99e Initial load
duke
parents:
diff changeset
148 bool purge_entry = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 // 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
151 if (loader_data->is_unloading()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // If the loader is not live this entry should always be
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // removed (will never be looked up again). Note that this is
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // not the same as unloading the referred class.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
155 if (k_def_class_loader_data == loader_data) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // This is the defining entry, so the referred class is about
a61af66fc99e Initial load
duke
parents:
diff changeset
157 // to be unloaded.
a61af66fc99e Initial load
duke
parents:
diff changeset
158 class_was_unloaded = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
159 }
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // Also remove this system dictionary entry.
a61af66fc99e Initial load
duke
parents:
diff changeset
161 purge_entry = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
164 // 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
165 // (determined by checking the defining class loader)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
166 // the loader must be an initiating loader (rather than the
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // defining loader). Remove this entry.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
168 if (k_def_class_loader_data->is_unloading()) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
169 // If we get here, the class_loader_data must not be the defining
0
a61af66fc99e Initial load
duke
parents:
diff changeset
170 // loader, it must be an initiating one.
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
171 assert(k_def_class_loader_data != loader_data,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
172 "cannot have live defining loader and unreachable klass");
a61af66fc99e Initial load
duke
parents:
diff changeset
173 // Loader is live, but class and its defining loader are dead.
a61af66fc99e Initial load
duke
parents:
diff changeset
174 // Remove the entry. The class is going away.
a61af66fc99e Initial load
duke
parents:
diff changeset
175 purge_entry = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177 }
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 if (purge_entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
180 *p = probe->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
181 if (probe == _current_class_entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
182 _current_class_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
183 }
a61af66fc99e Initial load
duke
parents:
diff changeset
184 free_entry(probe);
a61af66fc99e Initial load
duke
parents:
diff changeset
185 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
188 p = probe->next_addr();
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
190 }
a61af66fc99e Initial load
duke
parents:
diff changeset
191 return class_was_unloaded;
a61af66fc99e Initial load
duke
parents:
diff changeset
192 }
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
195 void Dictionary::always_strong_oops_do(OopClosure* blk) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
196 // Follow all system classes and temporary placeholders in dictionary
a61af66fc99e Initial load
duke
parents:
diff changeset
197 for (int index = 0; index < table_size(); index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
198 for (DictionaryEntry *probe = bucket(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
199 probe != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
200 probe = probe->next()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
201 Klass* e = probe->klass();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
202 ClassLoaderData* loader_data = probe->loader_data();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
203 if (is_strongly_reachable(loader_data, e)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
204 probe->protection_domain_set_oops_do(blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
205 }
a61af66fc99e Initial load
duke
parents:
diff changeset
206 }
a61af66fc99e Initial load
duke
parents:
diff changeset
207 }
a61af66fc99e Initial load
duke
parents:
diff changeset
208 }
a61af66fc99e Initial load
duke
parents:
diff changeset
209
a61af66fc99e Initial load
duke
parents:
diff changeset
210
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
211 void Dictionary::always_strong_classes_do(KlassClosure* closure) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
212 // Follow all system classes and temporary placeholders in dictionary
0
a61af66fc99e Initial load
duke
parents:
diff changeset
213 for (int index = 0; index < table_size(); index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
214 for (DictionaryEntry* probe = bucket(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
215 probe != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
216 probe = probe->next()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
217 Klass* e = probe->klass();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
218 ClassLoaderData* loader_data = probe->loader_data();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
219 if (is_strongly_reachable(loader_data, e)) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
220 closure->do_klass(e);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
221 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
222 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
223 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
224 }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
225
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
226
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
227 // Just the classes from defining class loaders
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
228 void Dictionary::classes_do(void f(Klass*)) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
229 for (int index = 0; index < table_size(); index++) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
230 for (DictionaryEntry* probe = bucket(index);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
231 probe != NULL;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
232 probe = probe->next()) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
233 Klass* k = probe->klass();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
234 if (probe->loader_data() == InstanceKlass::cast(k)->class_loader_data()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
235 f(k);
a61af66fc99e Initial load
duke
parents:
diff changeset
236 }
a61af66fc99e Initial load
duke
parents:
diff changeset
237 }
a61af66fc99e Initial load
duke
parents:
diff changeset
238 }
a61af66fc99e Initial load
duke
parents:
diff changeset
239 }
a61af66fc99e Initial load
duke
parents:
diff changeset
240
a61af66fc99e Initial load
duke
parents:
diff changeset
241 // Added for initialize_itable_for_klass to handle exceptions
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // Just the classes from defining class loaders
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
243 void Dictionary::classes_do(void f(Klass*, TRAPS), TRAPS) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
244 for (int index = 0; index < table_size(); index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
245 for (DictionaryEntry* probe = bucket(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
246 probe != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
247 probe = probe->next()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
248 Klass* k = probe->klass();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
249 if (probe->loader_data() == InstanceKlass::cast(k)->class_loader_data()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
250 f(k, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
251 }
a61af66fc99e Initial load
duke
parents:
diff changeset
252 }
a61af66fc99e Initial load
duke
parents:
diff changeset
253 }
a61af66fc99e Initial load
duke
parents:
diff changeset
254 }
a61af66fc99e Initial load
duke
parents:
diff changeset
255
a61af66fc99e Initial load
duke
parents:
diff changeset
256
a61af66fc99e Initial load
duke
parents:
diff changeset
257 // All classes, and their class loaders
a61af66fc99e Initial load
duke
parents:
diff changeset
258 // (added for helpers that use HandleMarks and ResourceMarks)
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // Don't iterate over placeholders
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
260 void Dictionary::classes_do(void f(Klass*, ClassLoaderData*, TRAPS), TRAPS) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
261 for (int index = 0; index < table_size(); index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
262 for (DictionaryEntry* probe = bucket(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
263 probe != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
264 probe = probe->next()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
265 Klass* k = probe->klass();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
266 f(k, probe->loader_data(), CHECK);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
267 }
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269 }
a61af66fc99e Initial load
duke
parents:
diff changeset
270
a61af66fc99e Initial load
duke
parents:
diff changeset
271
a61af66fc99e Initial load
duke
parents:
diff changeset
272 // All classes, and their class loaders
a61af66fc99e Initial load
duke
parents:
diff changeset
273 // Don't iterate over placeholders
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
274 void Dictionary::classes_do(void f(Klass*, ClassLoaderData*)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
275 for (int index = 0; index < table_size(); index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
276 for (DictionaryEntry* probe = bucket(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
277 probe != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
278 probe = probe->next()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
279 Klass* k = probe->klass();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
280 f(k, probe->loader_data());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
281 }
a61af66fc99e Initial load
duke
parents:
diff changeset
282 }
a61af66fc99e Initial load
duke
parents:
diff changeset
283 }
a61af66fc99e Initial load
duke
parents:
diff changeset
284
a61af66fc99e Initial load
duke
parents:
diff changeset
285
a61af66fc99e Initial load
duke
parents:
diff changeset
286 void Dictionary::oops_do(OopClosure* f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
287 for (int index = 0; index < table_size(); index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
288 for (DictionaryEntry* probe = bucket(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
289 probe != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
290 probe = probe->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
291 probe->protection_domain_set_oops_do(f);
a61af66fc99e Initial load
duke
parents:
diff changeset
292 }
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
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
297 void Dictionary::methods_do(void f(Method*)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
298 for (int index = 0; index < table_size(); index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
299 for (DictionaryEntry* probe = bucket(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
300 probe != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
301 probe = probe->next()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
302 Klass* k = probe->klass();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
303 if (probe->loader_data() == InstanceKlass::cast(k)->class_loader_data()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
304 // 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
305 InstanceKlass::cast(k)->methods_do(f);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
306 }
a61af66fc99e Initial load
duke
parents:
diff changeset
307 }
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
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
312 Klass* Dictionary::try_get_next_class() {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
313 while (true) {
a61af66fc99e Initial load
duke
parents:
diff changeset
314 if (_current_class_entry != NULL) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
315 Klass* k = _current_class_entry->klass();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
316 _current_class_entry = _current_class_entry->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
317 return k;
a61af66fc99e Initial load
duke
parents:
diff changeset
318 }
a61af66fc99e Initial load
duke
parents:
diff changeset
319 _current_class_index = (_current_class_index + 1) % table_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
320 _current_class_entry = bucket(_current_class_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
321 }
a61af66fc99e Initial load
duke
parents:
diff changeset
322 // never reached
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 // Add a loaded class to the system dictionary.
a61af66fc99e Initial load
duke
parents:
diff changeset
327 // Readers of the SystemDictionary aren't always locked, so _buckets
a61af66fc99e Initial load
duke
parents:
diff changeset
328 // is volatile. The store of the next field in the constructor is
a61af66fc99e Initial load
duke
parents:
diff changeset
329 // also cast to volatile; we do this to ensure store order is maintained
a61af66fc99e Initial load
duke
parents:
diff changeset
330 // by the compilers.
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::add_klass(Symbol* class_name, ClassLoaderData* loader_data,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
333 KlassHandle obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
334 assert_locked_or_safepoint(SystemDictionary_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
335 assert(obj() != NULL, "adding NULL obj");
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6725
diff changeset
336 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
337 assert(loader_data != NULL, "Must be non-NULL");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
338
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
339 unsigned int hash = compute_hash(class_name, loader_data);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
340 int index = hash_to_index(hash);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
341 DictionaryEntry* entry = new_entry(hash, obj(), loader_data);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
342 add_entry(index, entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
343 }
a61af66fc99e Initial load
duke
parents:
diff changeset
344
a61af66fc99e Initial load
duke
parents:
diff changeset
345
a61af66fc99e Initial load
duke
parents:
diff changeset
346 // This routine does not lock the system dictionary.
a61af66fc99e Initial load
duke
parents:
diff changeset
347 //
a61af66fc99e Initial load
duke
parents:
diff changeset
348 // Since readers don't hold a lock, we must make sure that system
a61af66fc99e Initial load
duke
parents:
diff changeset
349 // dictionary entries are only removed at a safepoint (when only one
a61af66fc99e Initial load
duke
parents:
diff changeset
350 // thread is running), and are added to in a safe way (all links must
a61af66fc99e Initial load
duke
parents:
diff changeset
351 // be updated in an MT-safe manner).
a61af66fc99e Initial load
duke
parents:
diff changeset
352 //
a61af66fc99e Initial load
duke
parents:
diff changeset
353 // Callers should be aware that an entry could be added just after
a61af66fc99e Initial load
duke
parents:
diff changeset
354 // _buckets[index] is read here, so the caller will not see the new entry.
a61af66fc99e Initial load
duke
parents:
diff changeset
355 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
356 Symbol* class_name,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
357 ClassLoaderData* loader_data) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
358 debug_only(_lookup_count++);
a61af66fc99e Initial load
duke
parents:
diff changeset
359 for (DictionaryEntry* entry = bucket(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
360 entry != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
361 entry = entry->next()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
362 if (entry->hash() == hash && entry->equals(class_name, loader_data)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
363 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
364 }
a61af66fc99e Initial load
duke
parents:
diff changeset
365 debug_only(_lookup_length++);
a61af66fc99e Initial load
duke
parents:
diff changeset
366 }
a61af66fc99e Initial load
duke
parents:
diff changeset
367 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
368 }
a61af66fc99e Initial load
duke
parents:
diff changeset
369
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 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
372 ClassLoaderData* loader_data, Handle protection_domain, TRAPS) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
373 DictionaryEntry* entry = get_entry(index, hash, name, loader_data);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
374 if (entry != NULL && entry->is_valid_protection_domain(protection_domain)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
375 return entry->klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
376 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
377 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
378 }
a61af66fc99e Initial load
duke
parents:
diff changeset
379 }
a61af66fc99e Initial load
duke
parents:
diff changeset
380
a61af66fc99e Initial load
duke
parents:
diff changeset
381
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
382 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
383 Symbol* name, ClassLoaderData* loader_data) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
384 assert_locked_or_safepoint(SystemDictionary_lock);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
385 assert (index == index_for(name, loader_data), "incorrect index?");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
386
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
387 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
388 return (entry != NULL) ? entry->klass() : (Klass*)NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
389 }
a61af66fc99e Initial load
duke
parents:
diff changeset
390
a61af66fc99e Initial load
duke
parents:
diff changeset
391
a61af66fc99e Initial load
duke
parents:
diff changeset
392 // Variant of find_class for shared classes. No locking required, as
a61af66fc99e Initial load
duke
parents:
diff changeset
393 // that table is static.
a61af66fc99e Initial load
duke
parents:
diff changeset
394
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
395 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
396 Symbol* name) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
397 assert (index == index_for(name, NULL), "incorrect index?");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
398
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
399 DictionaryEntry* entry = get_entry(index, hash, name, NULL);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
400 return (entry != NULL) ? entry->klass() : (Klass*)NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
401 }
a61af66fc99e Initial load
duke
parents:
diff changeset
402
a61af66fc99e Initial load
duke
parents:
diff changeset
403
a61af66fc99e Initial load
duke
parents:
diff changeset
404 void Dictionary::add_protection_domain(int index, unsigned int hash,
a61af66fc99e Initial load
duke
parents:
diff changeset
405 instanceKlassHandle klass,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
406 ClassLoaderData* loader_data, Handle protection_domain,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
407 TRAPS) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
408 Symbol* klass_name = klass->name();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
409 DictionaryEntry* entry = get_entry(index, hash, klass_name, loader_data);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
410
a61af66fc99e Initial load
duke
parents:
diff changeset
411 assert(entry != NULL,"entry must be present, we just created it");
a61af66fc99e Initial load
duke
parents:
diff changeset
412 assert(protection_domain() != NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
413 "real protection domain should be present");
a61af66fc99e Initial load
duke
parents:
diff changeset
414
a61af66fc99e Initial load
duke
parents:
diff changeset
415 entry->add_protection_domain(protection_domain());
a61af66fc99e Initial load
duke
parents:
diff changeset
416
a61af66fc99e Initial load
duke
parents:
diff changeset
417 assert(entry->contains_protection_domain(protection_domain()),
a61af66fc99e Initial load
duke
parents:
diff changeset
418 "now protection domain should be present");
a61af66fc99e Initial load
duke
parents:
diff changeset
419 }
a61af66fc99e Initial load
duke
parents:
diff changeset
420
a61af66fc99e Initial load
duke
parents:
diff changeset
421
a61af66fc99e Initial load
duke
parents:
diff changeset
422 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
423 Symbol* name,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
424 ClassLoaderData* loader_data,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
425 Handle protection_domain) {
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);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
427 return entry->is_valid_protection_domain(protection_domain);
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 void Dictionary::reorder_dictionary() {
a61af66fc99e Initial load
duke
parents:
diff changeset
432
a61af66fc99e Initial load
duke
parents:
diff changeset
433 // Copy all the dictionary entries into a single master list.
a61af66fc99e Initial load
duke
parents:
diff changeset
434
a61af66fc99e Initial load
duke
parents:
diff changeset
435 DictionaryEntry* master_list = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
436 for (int i = 0; i < table_size(); ++i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
437 DictionaryEntry* p = bucket(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
438 while (p != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
439 DictionaryEntry* tmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
440 tmp = p->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
441 p->set_next(master_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
442 master_list = p;
a61af66fc99e Initial load
duke
parents:
diff changeset
443 p = tmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
444 }
a61af66fc99e Initial load
duke
parents:
diff changeset
445 set_entry(i, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
446 }
a61af66fc99e Initial load
duke
parents:
diff changeset
447
a61af66fc99e Initial load
duke
parents:
diff changeset
448 // Add the dictionary entries back to the list in the correct buckets.
a61af66fc99e Initial load
duke
parents:
diff changeset
449 while (master_list != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
450 DictionaryEntry* p = master_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
451 master_list = master_list->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
452 p->set_next(NULL);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
453 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
454 // 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
455 // compute the hash with NULL for loader data.
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
456 unsigned int hash = compute_hash(class_name, NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
457 int index = hash_to_index(hash);
a61af66fc99e Initial load
duke
parents:
diff changeset
458 p->set_hash(hash);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
459 p->set_loader_data(NULL); // loader_data isn't copied to CDS
0
a61af66fc99e Initial load
duke
parents:
diff changeset
460 p->set_next(bucket(index));
a61af66fc99e Initial load
duke
parents:
diff changeset
461 set_entry(index, p);
a61af66fc99e Initial load
duke
parents:
diff changeset
462 }
a61af66fc99e Initial load
duke
parents:
diff changeset
463 }
a61af66fc99e Initial load
duke
parents:
diff changeset
464
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
465 SymbolPropertyTable::SymbolPropertyTable(int table_size)
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 4864
diff changeset
466 : Hashtable<Symbol*, mtSymbol>(table_size, sizeof(SymbolPropertyEntry))
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
467 {
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
468 }
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 4864
diff changeset
469 SymbolPropertyTable::SymbolPropertyTable(int table_size, HashtableBucket<mtSymbol>* t,
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
470 int number_of_entries)
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 4864
diff changeset
471 : Hashtable<Symbol*, mtSymbol>(table_size, sizeof(SymbolPropertyEntry), t, number_of_entries)
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
472 {
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
473 }
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
474
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
475
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
476 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
477 Symbol* sym,
1507
cd5dbf694d45 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 710
diff changeset
478 intptr_t sym_mode) {
cd5dbf694d45 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 710
diff changeset
479 assert(index == index_for(sym, sym_mode), "incorrect index?");
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
480 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
481 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
482 return p;
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
483 }
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
484 }
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
485 return NULL;
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
486 }
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
487
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
488
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
489 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
490 Symbol* sym, intptr_t sym_mode) {
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
491 assert_locked_or_safepoint(SystemDictionary_lock);
1507
cd5dbf694d45 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 710
diff changeset
492 assert(index == index_for(sym, sym_mode), "incorrect index?");
cd5dbf694d45 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 710
diff changeset
493 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
494
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
495 SymbolPropertyEntry* p = new_entry(hash, sym, sym_mode);
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 4864
diff changeset
496 Hashtable<Symbol*, mtSymbol>::add_entry(index, p);
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
497 return p;
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
498 }
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
499
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
500 void SymbolPropertyTable::oops_do(OopClosure* f) {
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
501 for (int index = 0; index < table_size(); index++) {
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
502 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
503 if (p->method_type() != NULL) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
504 f->do_oop(p->method_type_addr());
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
505 }
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
506 }
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
507 }
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
508 }
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
509
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
510 void SymbolPropertyTable::methods_do(void f(Method*)) {
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
511 for (int index = 0; index < table_size(); index++) {
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
512 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
513 Method* prop = p->method();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
514 if (prop != NULL) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
515 f((Method*)prop);
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
516 }
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
517 }
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
518 }
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
519 }
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
520
0
a61af66fc99e Initial load
duke
parents:
diff changeset
521
a61af66fc99e Initial load
duke
parents:
diff changeset
522 // ----------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
523 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
524
a61af66fc99e Initial load
duke
parents:
diff changeset
525 void Dictionary::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
526 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
527 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
528
4864
b2cd0ee8f778 7114376: Make system dictionary hashtable bucket array size configurable
acorn
parents: 2426
diff changeset
529 tty->print_cr("Java system dictionary (table_size=%d, classes=%d)",
b2cd0ee8f778 7114376: Make system dictionary hashtable bucket array size configurable
acorn
parents: 2426
diff changeset
530 table_size(), number_of_entries());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
531 tty->print_cr("^ indicates that initiating loader is different from "
a61af66fc99e Initial load
duke
parents:
diff changeset
532 "defining loader");
a61af66fc99e Initial load
duke
parents:
diff changeset
533
a61af66fc99e Initial load
duke
parents:
diff changeset
534 for (int index = 0; index < table_size(); index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
535 for (DictionaryEntry* probe = bucket(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
536 probe != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
537 probe = probe->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
538 if (Verbose) tty->print("%4d: ", index);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
539 Klass* e = probe->klass();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
540 ClassLoaderData* loader_data = probe->loader_data();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
541 bool is_defining_class =
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
542 (loader_data == InstanceKlass::cast(e)->class_loader_data());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
543 tty->print("%s%s", is_defining_class ? " " : "^",
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6725
diff changeset
544 e->external_name());
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
545
0
a61af66fc99e Initial load
duke
parents:
diff changeset
546 tty->print(", loader ");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
547 loader_data->print_value();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
548 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
549 }
a61af66fc99e Initial load
duke
parents:
diff changeset
550 }
a61af66fc99e Initial load
duke
parents:
diff changeset
551 }
a61af66fc99e Initial load
duke
parents:
diff changeset
552
a61af66fc99e Initial load
duke
parents:
diff changeset
553 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
554
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
555
0
a61af66fc99e Initial load
duke
parents:
diff changeset
556 void Dictionary::verify() {
a61af66fc99e Initial load
duke
parents:
diff changeset
557 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
558
0
a61af66fc99e Initial load
duke
parents:
diff changeset
559 int element_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
560 for (int index = 0; index < table_size(); index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
561 for (DictionaryEntry* probe = bucket(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
562 probe != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
563 probe = probe->next()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
564 Klass* e = probe->klass();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
565 ClassLoaderData* loader_data = probe->loader_data();
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6725
diff changeset
566 guarantee(e->oop_is_instance(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
567 "Verify of system dictionary failed");
a61af66fc99e Initial load
duke
parents:
diff changeset
568 // class loader must be present; a null class loader is the
a61af66fc99e Initial load
duke
parents:
diff changeset
569 // boostrap loader
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
570 guarantee(loader_data != NULL || DumpSharedSpaces ||
7185
90273fc0a981 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 6983
diff changeset
571 loader_data->class_loader() == NULL ||
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
572 loader_data->class_loader()->is_instance(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
573 "checking type of class_loader");
a61af66fc99e Initial load
duke
parents:
diff changeset
574 e->verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
575 probe->verify_protection_domain_set();
a61af66fc99e Initial load
duke
parents:
diff changeset
576 element_count++;
a61af66fc99e Initial load
duke
parents:
diff changeset
577 }
a61af66fc99e Initial load
duke
parents:
diff changeset
578 }
a61af66fc99e Initial load
duke
parents:
diff changeset
579 guarantee(number_of_entries() == element_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
580 "Verify of system dictionary failed");
a61af66fc99e Initial load
duke
parents:
diff changeset
581 debug_only(verify_lookup_length((double)number_of_entries() / table_size()));
a61af66fc99e Initial load
duke
parents:
diff changeset
582 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
583