src/share/vm/classfile/dictionary.cpp

Tue, 29 Apr 2014 15:17:27 +0200

author
goetz
date
Tue, 29 Apr 2014 15:17:27 +0200
changeset 6911
ce8f6bb717c9
parent 6680
78bbf4d43a14
child 6992
2c6ef90f030a
permissions
-rw-r--r--

8042195: Introduce umbrella header orderAccess.inline.hpp.
Reviewed-by: dholmes, kvn, stefank, twisti

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

mercurial