hotspot/src/share/vm/classfile/dictionary.cpp
author coleenp
Mon, 24 Jun 2013 18:55:46 -0400
changeset 18439 725ce18186b3
parent 17373 7d8bb2a8787e
child 20405 3321f6b16639
permissions -rw-r--r--
8016325: JVM hangs verifying system dictionary Summary: Minimize redundant verifications of Klasses. Reviewed-by: hseigel, jmasa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
11628
13155c0c00b4 7114376: Make system dictionary hashtable bucket array size configurable
acorn
parents: 8921
diff changeset
     2
 * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5426
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5426
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5426
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "classfile/dictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "prims/jvmtiRedefineClassesTrace.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "utilities/hashtable.inline.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
DictionaryEntry*  Dictionary::_current_class_entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
int               Dictionary::_current_class_index =    0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
Dictionary::Dictionary(int table_size)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    38
  : TwoOopHashtable<Klass*, mtClass>(table_size, sizeof(DictionaryEntry)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  _current_class_index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  _current_class_entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11628
diff changeset
    45
Dictionary::Dictionary(int table_size, HashtableBucket<mtClass>* t,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
                       int number_of_entries)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    47
  : TwoOopHashtable<Klass*, mtClass>(table_size, sizeof(DictionaryEntry), t, number_of_entries) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  _current_class_index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  _current_class_entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    53
DictionaryEntry* Dictionary::new_entry(unsigned int hash, Klass* klass,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    54
                                       ClassLoaderData* loader_data) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    55
  DictionaryEntry* entry = (DictionaryEntry*)Hashtable<Klass*, mtClass>::new_entry(hash, klass);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    56
  entry->set_loader_data(loader_data);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  entry->set_pd_set(NULL);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    58
  assert(klass->oop_is_instance(), "Must be");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
void Dictionary::free_entry(DictionaryEntry* entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // avoid recursion when deleting linked list
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  while (entry->pd_set() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    ProtectionDomainEntry* to_delete = entry->pd_set();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    entry->set_pd_set(to_delete->next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    delete to_delete;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    70
  Hashtable<Klass*, mtClass>::free_entry(entry);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
bool DictionaryEntry::contains_protection_domain(oop protection_domain) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
#ifdef ASSERT
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    76
  if (protection_domain == InstanceKlass::cast(klass())->protection_domain()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    // Ensure this doesn't show up in the pd_set (invariant)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    bool in_pd_set = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    for (ProtectionDomainEntry* current = _pd_set;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
                                current != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
                                current = current->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
      if (current->protection_domain() == protection_domain) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
        in_pd_set = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    if (in_pd_set) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
      assert(false, "A klass's protection domain should not show up "
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
                    "in its sys. dict. PD set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
#endif /* ASSERT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    94
  if (protection_domain == InstanceKlass::cast(klass())->protection_domain()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    // Succeeds trivially
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  for (ProtectionDomainEntry* current = _pd_set;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
                              current != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
                              current = current->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    if (current->protection_domain() == protection_domain) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
void DictionaryEntry::add_protection_domain(oop protection_domain) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  assert_locked_or_safepoint(SystemDictionary_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  if (!contains_protection_domain(protection_domain)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    ProtectionDomainEntry* new_head =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
                new ProtectionDomainEntry(protection_domain, _pd_set);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    // Warning: Preserve store ordering.  The SystemDictionary is read
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    //          without locks.  The new ProtectionDomainEntry must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    //          complete before other threads can be allowed to see it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    //          via a store to _pd_set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    OrderAccess::release_store_ptr(&_pd_set, new_head);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  if (TraceProtectionDomainVerification && WizardMode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   125
bool Dictionary::do_unloading() {
5402
c51fd0c1d005 6888953: some calls to function-like macros are missing semicolons
jcoomes
parents: 2534
diff changeset
   126
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  bool class_was_unloaded = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  int  index = 0; // Defined here for portability! Do not move
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // Remove unloadable entries and classes from system dictionary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // The placeholder array has been handled in always_strong_oops_do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  DictionaryEntry* probe = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  for (index = 0; index < table_size(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    for (DictionaryEntry** p = bucket_addr(index); *p != NULL; ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
      probe = *p;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   136
      Klass* e = probe->klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   137
      ClassLoaderData* loader_data = probe->loader_data();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   139
      InstanceKlass* ik = InstanceKlass::cast(e);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
      // Non-unloadable classes were handled in always_strong_oops_do
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   142
      if (!is_strongly_reachable(loader_data, e)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
        // Entry was not visited in phase1 (negated test from phase1)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   144
        assert(!loader_data->is_the_null_class_loader_data(), "unloading entry with null class loader");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   145
        ClassLoaderData* k_def_class_loader_data = ik->class_loader_data();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
        // Do we need to delete this system dictionary entry?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
        bool purge_entry = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
        // Do we need to delete this system dictionary entry?
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   151
        if (loader_data->is_unloading()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
          // If the loader is not live this entry should always be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
          // removed (will never be looked up again). Note that this is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
          // not the same as unloading the referred class.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   155
          if (k_def_class_loader_data == loader_data) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
            // This is the defining entry, so the referred class is about
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
            // to be unloaded.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
            class_was_unloaded = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
          // Also remove this system dictionary entry.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
          purge_entry = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
          // The loader in this entry is alive. If the klass is dead,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   165
          // (determined by checking the defining class loader)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
          // the loader must be an initiating loader (rather than the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
          // defining loader). Remove this entry.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   168
          if (k_def_class_loader_data->is_unloading()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   169
            // If we get here, the class_loader_data must not be the defining
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
            // loader, it must be an initiating one.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   171
            assert(k_def_class_loader_data != loader_data,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
                   "cannot have live defining loader and unreachable klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
            // Loader is live, but class and its defining loader are dead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
            // Remove the entry. The class is going away.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
            purge_entry = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
        if (purge_entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
          *p = probe->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
          if (probe == _current_class_entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
            _current_class_entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
          free_entry(probe);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
      p = probe->next_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  return class_was_unloaded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   195
void Dictionary::always_strong_oops_do(OopClosure* blk) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // Follow all system classes and temporary placeholders in dictionary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  for (int index = 0; index < table_size(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    for (DictionaryEntry *probe = bucket(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
                          probe != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
                          probe = probe->next()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   201
      Klass* e = probe->klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   202
      ClassLoaderData* loader_data = probe->loader_data();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   203
      if (is_strongly_reachable(loader_data, e)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
        probe->protection_domain_set_oops_do(blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   211
void Dictionary::always_strong_classes_do(KlassClosure* closure) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   212
  // Follow all system classes and temporary placeholders in dictionary
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  for (int index = 0; index < table_size(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    for (DictionaryEntry* probe = bucket(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
                          probe != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
                          probe = probe->next()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   217
      Klass* e = probe->klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   218
      ClassLoaderData* loader_data = probe->loader_data();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   219
      if (is_strongly_reachable(loader_data, e)) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   220
        closure->do_klass(e);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   221
      }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   222
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   223
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   224
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   225
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   226
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   227
//   Just the classes from defining class loaders
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   228
void Dictionary::classes_do(void f(Klass*)) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   229
  for (int index = 0; index < table_size(); index++) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   230
    for (DictionaryEntry* probe = bucket(index);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   231
                          probe != NULL;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   232
                          probe = probe->next()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   233
      Klass* k = probe->klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   234
      if (probe->loader_data() == InstanceKlass::cast(k)->class_loader_data()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
        f(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
// Added for initialize_itable_for_klass to handle exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
//   Just the classes from defining class loaders
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   243
void Dictionary::classes_do(void f(Klass*, TRAPS), TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  for (int index = 0; index < table_size(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    for (DictionaryEntry* probe = bucket(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
                          probe != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
                          probe = probe->next()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   248
      Klass* k = probe->klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   249
      if (probe->loader_data() == InstanceKlass::cast(k)->class_loader_data()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
        f(k, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
//   All classes, and their class loaders
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
// Don't iterate over placeholders
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   258
void Dictionary::classes_do(void f(Klass*, ClassLoaderData*)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  for (int index = 0; index < table_size(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    for (DictionaryEntry* probe = bucket(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
                          probe != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
                          probe = probe->next()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   263
      Klass* k = probe->klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   264
      f(k, probe->loader_data());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
void Dictionary::oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  for (int index = 0; index < table_size(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
    for (DictionaryEntry* probe = bucket(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
                          probe != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
                          probe = probe->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
      probe->protection_domain_set_oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   281
void Dictionary::methods_do(void f(Method*)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  for (int index = 0; index < table_size(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
    for (DictionaryEntry* probe = bucket(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
                          probe != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
                          probe = probe->next()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   286
      Klass* k = probe->klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   287
      if (probe->loader_data() == InstanceKlass::cast(k)->class_loader_data()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
        // only take klass is we have the entry with the defining class loader
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   289
        InstanceKlass::cast(k)->methods_do(f);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   296
Klass* Dictionary::try_get_next_class() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    if (_current_class_entry != NULL) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   299
      Klass* k = _current_class_entry->klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
      _current_class_entry = _current_class_entry->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
      return k;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
    _current_class_index = (_current_class_index + 1) % table_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
    _current_class_entry = bucket(_current_class_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  // never reached
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
// Add a loaded class to the system dictionary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
// Readers of the SystemDictionary aren't always locked, so _buckets
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
// is volatile. The store of the next field in the constructor is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
// also cast to volatile;  we do this to ensure store order is maintained
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
// by the compilers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   316
void Dictionary::add_klass(Symbol* class_name, ClassLoaderData* loader_data,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
                           KlassHandle obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  assert_locked_or_safepoint(SystemDictionary_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  assert(obj() != NULL, "adding NULL obj");
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 13728
diff changeset
   320
  assert(obj()->name() == class_name, "sanity check on name");
15847
f9ce2cd20dee 8008549: NPG: SystemDictionary::find(...) unnecessarily keeps class loaders alive
stefank
parents: 14588
diff changeset
   321
  assert(loader_data != NULL, "Must be non-NULL");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   323
  unsigned int hash = compute_hash(class_name, loader_data);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  int index = hash_to_index(hash);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   325
  DictionaryEntry* entry = new_entry(hash, obj(), loader_data);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  add_entry(index, entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
// This routine does not lock the system dictionary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
// Since readers don't hold a lock, we must make sure that system
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
// dictionary entries are only removed at a safepoint (when only one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
// thread is running), and are added to in a safe way (all links must
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
// be updated in an MT-safe manner).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
// Callers should be aware that an entry could be added just after
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
// _buckets[index] is read here, so the caller will not see the new entry.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
DictionaryEntry* Dictionary::get_entry(int index, unsigned int hash,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   340
                                       Symbol* class_name,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   341
                                       ClassLoaderData* loader_data) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  debug_only(_lookup_count++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  for (DictionaryEntry* entry = bucket(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
                        entry != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
                        entry = entry->next()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   346
    if (entry->hash() == hash && entry->equals(class_name, loader_data)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
      return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
    debug_only(_lookup_length++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   355
Klass* Dictionary::find(int index, unsigned int hash, Symbol* name,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   356
                          ClassLoaderData* loader_data, Handle protection_domain, TRAPS) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   357
  DictionaryEntry* entry = get_entry(index, hash, name, loader_data);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  if (entry != NULL && entry->is_valid_protection_domain(protection_domain)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    return entry->klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   366
Klass* Dictionary::find_class(int index, unsigned int hash,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   367
                                Symbol* name, ClassLoaderData* loader_data) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  assert_locked_or_safepoint(SystemDictionary_lock);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   369
  assert (index == index_for(name, loader_data), "incorrect index?");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   371
  DictionaryEntry* entry = get_entry(index, hash, name, loader_data);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   372
  return (entry != NULL) ? entry->klass() : (Klass*)NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
// Variant of find_class for shared classes.  No locking required, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
// that table is static.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   379
Klass* Dictionary::find_shared_class(int index, unsigned int hash,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   380
                                       Symbol* name) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   381
  assert (index == index_for(name, NULL), "incorrect index?");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   383
  DictionaryEntry* entry = get_entry(index, hash, name, NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   384
  return (entry != NULL) ? entry->klass() : (Klass*)NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
void Dictionary::add_protection_domain(int index, unsigned int hash,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
                                       instanceKlassHandle klass,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   390
                                       ClassLoaderData* loader_data, Handle protection_domain,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
                                       TRAPS) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   392
  Symbol*  klass_name = klass->name();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   393
  DictionaryEntry* entry = get_entry(index, hash, klass_name, loader_data);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  assert(entry != NULL,"entry must be present, we just created it");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  assert(protection_domain() != NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
         "real protection domain should be present");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  entry->add_protection_domain(protection_domain());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  assert(entry->contains_protection_domain(protection_domain()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
         "now protection domain should be present");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
bool Dictionary::is_valid_protection_domain(int index, unsigned int hash,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   407
                                            Symbol* name,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   408
                                            ClassLoaderData* loader_data,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
                                            Handle protection_domain) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   410
  DictionaryEntry* entry = get_entry(index, hash, name, loader_data);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  return entry->is_valid_protection_domain(protection_domain);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
void Dictionary::reorder_dictionary() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  // Copy all the dictionary entries into a single master list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  DictionaryEntry* master_list = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  for (int i = 0; i < table_size(); ++i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
    DictionaryEntry* p = bucket(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    while (p != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
      DictionaryEntry* tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
      tmp = p->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
      p->set_next(master_list);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
      master_list = p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
      p = tmp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
    set_entry(i, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  // Add the dictionary entries back to the list in the correct buckets.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  while (master_list != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
    DictionaryEntry* p = master_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
    master_list = master_list->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
    p->set_next(NULL);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   437
    Symbol* class_name = InstanceKlass::cast((Klass*)(p->klass()))->name();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   438
    // Since the null class loader data isn't copied to the CDS archive,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   439
    // compute the hash with NULL for loader data.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   440
    unsigned int hash = compute_hash(class_name, NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
    int index = hash_to_index(hash);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
    p->set_hash(hash);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   443
    p->set_loader_data(NULL);   // loader_data isn't copied to CDS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
    p->set_next(bucket(index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
    set_entry(index, p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   449
SymbolPropertyTable::SymbolPropertyTable(int table_size)
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11628
diff changeset
   450
  : Hashtable<Symbol*, mtSymbol>(table_size, sizeof(SymbolPropertyEntry))
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   451
{
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   452
}
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11628
diff changeset
   453
SymbolPropertyTable::SymbolPropertyTable(int table_size, HashtableBucket<mtSymbol>* t,
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   454
                                         int number_of_entries)
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11628
diff changeset
   455
  : Hashtable<Symbol*, mtSymbol>(table_size, sizeof(SymbolPropertyEntry), t, number_of_entries)
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   456
{
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   457
}
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   458
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   459
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   460
SymbolPropertyEntry* SymbolPropertyTable::find_entry(int index, unsigned int hash,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   461
                                                     Symbol* sym,
5420
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 2534
diff changeset
   462
                                                     intptr_t sym_mode) {
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 2534
diff changeset
   463
  assert(index == index_for(sym, sym_mode), "incorrect index?");
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   464
  for (SymbolPropertyEntry* p = bucket(index); p != NULL; p = p->next()) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   465
    if (p->hash() == hash && p->symbol() == sym && p->symbol_mode() == sym_mode) {
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   466
      return p;
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   467
    }
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   468
  }
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   469
  return NULL;
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   470
}
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   471
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   472
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   473
SymbolPropertyEntry* SymbolPropertyTable::add_entry(int index, unsigned int hash,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   474
                                                    Symbol* sym, intptr_t sym_mode) {
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   475
  assert_locked_or_safepoint(SystemDictionary_lock);
5420
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 2534
diff changeset
   476
  assert(index == index_for(sym, sym_mode), "incorrect index?");
586d3988e72b 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 2534
diff changeset
   477
  assert(find_entry(index, hash, sym, sym_mode) == NULL, "no double entry");
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   478
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   479
  SymbolPropertyEntry* p = new_entry(hash, sym, sym_mode);
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11628
diff changeset
   480
  Hashtable<Symbol*, mtSymbol>::add_entry(index, p);
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   481
  return p;
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   482
}
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   483
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   484
void SymbolPropertyTable::oops_do(OopClosure* f) {
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   485
  for (int index = 0; index < table_size(); index++) {
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   486
    for (SymbolPropertyEntry* p = bucket(index); p != NULL; p = p->next()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   487
      if (p->method_type() != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   488
        f->do_oop(p->method_type_addr());
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   489
      }
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   490
    }
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   491
  }
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   492
}
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   493
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   494
void SymbolPropertyTable::methods_do(void f(Method*)) {
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   495
  for (int index = 0; index < table_size(); index++) {
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   496
    for (SymbolPropertyEntry* p = bucket(index); p != NULL; p = p->next()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   497
      Method* prop = p->method();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   498
      if (prop != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   499
        f((Method*)prop);
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   500
      }
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   501
    }
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   502
  }
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   503
}
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 670
diff changeset
   504
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
// ----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
void Dictionary::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  HandleMark   hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
11628
13155c0c00b4 7114376: Make system dictionary hashtable bucket array size configurable
acorn
parents: 8921
diff changeset
   513
  tty->print_cr("Java system dictionary (table_size=%d, classes=%d)",
13155c0c00b4 7114376: Make system dictionary hashtable bucket array size configurable
acorn
parents: 8921
diff changeset
   514
                 table_size(), number_of_entries());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  tty->print_cr("^ indicates that initiating loader is different from "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
                "defining loader");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  for (int index = 0; index < table_size(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
    for (DictionaryEntry* probe = bucket(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
                          probe != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
                          probe = probe->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
      if (Verbose) tty->print("%4d: ", index);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   523
      Klass* e = probe->klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   524
      ClassLoaderData* loader_data =  probe->loader_data();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
      bool is_defining_class =
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   526
         (loader_data == InstanceKlass::cast(e)->class_loader_data());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
      tty->print("%s%s", is_defining_class ? " " : "^",
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 13728
diff changeset
   528
                   e->external_name());
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   529
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
        tty->print(", loader ");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   531
      loader_data->print_value();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
      tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   539
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
void Dictionary::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  guarantee(number_of_entries() >= 0, "Verify of system dictionary failed");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   542
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  int element_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  for (int index = 0; index < table_size(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
    for (DictionaryEntry* probe = bucket(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
                          probe != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
                          probe = probe->next()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   548
      Klass* e = probe->klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   549
      ClassLoaderData* loader_data = probe->loader_data();
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 13728
diff changeset
   550
      guarantee(e->oop_is_instance(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
                              "Verify of system dictionary failed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
      // class loader must be present;  a null class loader is the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
      // boostrap loader
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   554
      guarantee(loader_data != NULL || DumpSharedSpaces ||
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   555
                loader_data->class_loader() == NULL ||
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   556
                loader_data->class_loader()->is_instance(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
                "checking type of class_loader");
18439
725ce18186b3 8016325: JVM hangs verifying system dictionary
coleenp
parents: 17373
diff changeset
   558
      e->verify(/*check_dictionary*/false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
      probe->verify_protection_domain_set();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
      element_count++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  guarantee(number_of_entries() == element_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
            "Verify of system dictionary failed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  debug_only(verify_lookup_length((double)number_of_entries() / table_size()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
}
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   567