hotspot/src/share/vm/utilities/hashtable.cpp
author coleenp
Wed, 04 Jul 2012 15:55:45 -0400
changeset 13199 025b0984feea
parent 13195 be27e1b6a4b9
child 13342 76a5de64aa62
permissions -rw-r--r--
7181200: JVM new hashing code breaks SA in product mode Summary: Made new_hash() overloaded rather than a virtual function so SA code doesn't need to be changed. Reviewed-by: kvn, acorn, dholmes, fparain
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
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: 1623
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1623
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: 1623
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"
13199
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
    26
#include "classfile/altHashing.hpp"
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
    27
#include "classfile/javaClasses.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "memory/allocation.inline.hpp"
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
    29
#include "memory/filemap.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "runtime/safepoint.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "utilities/dtrace.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "utilities/hashtable.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "utilities/hashtable.inline.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    37
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// This is a generic hashtable, designed to be used for the symbol
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// and string tables.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// It is implemented as an open hash table with a fixed number of buckets.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// %note:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
//  - HashtableEntrys are allocated in blocks to reduce the space overhead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
    46
template <MEMFLAGS F> BasicHashtableEntry<F>* BasicHashtable<F>::new_entry(unsigned int hashValue) {
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
    47
  BasicHashtableEntry<F>* entry;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  if (_free_list) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    entry = _free_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    _free_list = _free_list->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  } else {
1551
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
    53
    if (_first_free_entry + _entry_size >= _end_block) {
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
    54
      int block_size = MIN2(512, MAX2((int)_table_size / 2, (int)_number_of_entries));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
      int len = _entry_size * block_size;
1551
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
    56
      len = 1 << log2_intptr(len); // round down to power of 2
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
    57
      assert(len >= _entry_size, "");
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
    58
      _first_free_entry = NEW_C_HEAP_ARRAY2(char, len, F, CURRENT_PC);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
      _end_block = _first_free_entry + len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    }
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
    61
    entry = (BasicHashtableEntry<F>*)_first_free_entry;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    _first_free_entry += _entry_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
1551
b431de37a22c 6770949: minor tweaks before 6655638
jrose
parents: 1
diff changeset
    65
  assert(_entry_size % HeapWordSize == 0, "");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  entry->set_hash(hashValue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
    71
template <class T, MEMFLAGS F> HashtableEntry<T, F>* Hashtable<T, F>::new_entry(unsigned int hashValue, T obj) {
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
    72
  HashtableEntry<T, F>* entry;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
    74
  entry = (HashtableEntry<T, F>*)BasicHashtable<F>::new_entry(hashValue);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    75
  entry->set_literal(obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
    79
// Check to see if the hashtable is unbalanced.  The caller set a flag to
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
    80
// rehash at the next safepoint.  If this bucket is 60 times greater than the
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
    81
// expected average bucket length, it's an unbalanced hashtable.
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
    82
// This is somewhat an arbitrary heuristic but if one bucket gets to
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
    83
// rehash_count which is currently 100, there's probably something wrong.
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
    84
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
    85
template <MEMFLAGS F> bool BasicHashtable<F>::check_rehash_table(int count) {
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
    86
  assert(table_size() != 0, "underflow");
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
    87
  if (count > (((double)number_of_entries()/(double)table_size())*rehash_multiple)) {
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
    88
    // Set a flag for the next safepoint, which should be at some guaranteed
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
    89
    // safepoint interval.
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
    90
    return true;
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
    91
  }
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
    92
  return false;
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
    93
}
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
    94
13199
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
    95
template <class T, MEMFLAGS F> jint Hashtable<T, F>::_seed = 0;
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
    96
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
    97
template <class T, MEMFLAGS F> unsigned int Hashtable<T, F>::new_hash(Symbol* sym) {
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
    98
  ResourceMark rm;
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
    99
  // Use alternate hashing algorithm on this symbol.
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
   100
  return AltHashing::murmur3_32(seed(), (const jbyte*)sym->as_C_string(), sym->utf8_length());
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
   101
}
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
   102
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
   103
template <class T, MEMFLAGS F> unsigned int Hashtable<T, F>::new_hash(oop string) {
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
   104
  ResourceMark rm;
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
   105
  int length;
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
   106
  jchar* chars = java_lang_String::as_unicode_string(string, length);
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
   107
  // Use alternate hashing algorithm on the string
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
   108
  return AltHashing::murmur3_32(seed(), chars, length);
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
   109
}
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
   110
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   111
// Create a new table and using alternate hash code, populate the new table
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   112
// with the existing elements.   This can be used to change the hash code
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   113
// and could in the future change the size of the table.
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   114
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   115
template <class T, MEMFLAGS F> void Hashtable<T, F>::move_to(Hashtable<T, F>* new_table) {
13199
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
   116
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
   117
  // Initialize the global seed for hashing.
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
   118
  _seed = AltHashing::compute_seed();
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
   119
  assert(seed() != 0, "shouldn't be zero");
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
   120
025b0984feea 7181200: JVM new hashing code breaks SA in product mode
coleenp
parents: 13195
diff changeset
   121
  int saved_entry_count = this->number_of_entries();
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   122
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   123
  // Iterate through the table and create a new entry for the new table
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   124
  for (int i = 0; i < new_table->table_size(); ++i) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   125
    for (HashtableEntry<T, F>* p = bucket(i); p != NULL; ) {
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   126
      HashtableEntry<T, F>* next = p->next();
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   127
      T string = p->literal();
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   128
      // Use alternate hashing algorithm on the symbol in the first table
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   129
      unsigned int hashValue = new_hash(string);
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   130
      // Get a new index relative to the new table (can also change size)
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   131
      int index = new_table->hash_to_index(hashValue);
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   132
      p->set_hash(hashValue);
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   133
      // Keep the shared bit in the Hashtable entry to indicate that this entry
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   134
      // can't be deleted.   The shared bit is the LSB in the _next field so
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   135
      // walking the hashtable past these entries requires
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   136
      // BasicHashtableEntry::make_ptr() call.
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   137
      bool keep_shared = p->is_shared();
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   138
      unlink_entry(p);
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   139
      new_table->add_entry(index, p);
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   140
      if (keep_shared) {
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   141
        p->set_shared();
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   142
      }
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   143
      p = next;
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   144
    }
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   145
  }
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   146
  // give the new table the free list as well
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   147
  new_table->copy_freelist(this);
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   148
  assert(new_table->number_of_entries() == saved_entry_count, "lost entry on dictionary copy?");
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   149
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   150
  // Destroy memory used by the buckets in the hashtable.  The memory
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   151
  // for the elements has been used in a new table and is not
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   152
  // destroyed.  The memory reuse will benefit resizing the SystemDictionary
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   153
  // to avoid a memory allocation spike at safepoint.
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   154
  BasicHashtable<F>::free_buckets();
13087
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   155
}
673ea6efaf18 7158800: Improve storage of symbol tables
coleenp
parents: 10739
diff changeset
   156
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   157
template <MEMFLAGS F> void BasicHashtable<F>::free_buckets() {
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   158
  if (NULL != _buckets) {
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   159
    // Don't delete the buckets in the shared space.  They aren't
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   160
    // allocated by os::malloc
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   161
    if (!UseSharedSpaces ||
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   162
        !FileMapInfo::current_info()->is_in_shared_space(_buckets)) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   163
       FREE_C_HEAP_ARRAY(HashtableBucket, _buckets, F);
13097
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   164
    }
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   165
    _buckets = NULL;
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   166
  }
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   167
}
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   168
c146b608d91f 7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents: 13087
diff changeset
   169
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
// Reverse the order of elements in the hash buckets.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   172
template <MEMFLAGS F> void BasicHashtable<F>::reverse() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  for (int i = 0; i < _table_size; ++i) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   175
    BasicHashtableEntry<F>* new_list = NULL;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   176
    BasicHashtableEntry<F>* p = bucket(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    while (p != NULL) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   178
      BasicHashtableEntry<F>* next = p->next();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
      p->set_next(new_list);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
      new_list = p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
      p = next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    *bucket_addr(i) = new_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
// Copy the table to the shared space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   190
template <MEMFLAGS F> void BasicHashtable<F>::copy_table(char** top, char* end) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // Dump the hash table entries.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  intptr_t *plen = (intptr_t*)(*top);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  *top += sizeof(*plen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  for (i = 0; i < _table_size; ++i) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   199
    for (BasicHashtableEntry<F>** p = _buckets[i].entry_addr();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
                              *p != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
                               p = (*p)->next_addr()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
      if (*top + entry_size() > end) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   203
        report_out_of_shared_space(SharedMiscData);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
      }
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   205
      *p = (BasicHashtableEntry<F>*)memcpy(*top, *p, entry_size());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
      *top += entry_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  *plen = (char*)(*top) - (char*)plen - sizeof(*plen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  // Set the shared bit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  for (i = 0; i < _table_size; ++i) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   214
    for (BasicHashtableEntry<F>* p = bucket(i); p != NULL; p = p->next()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
      p->set_shared();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
// Reverse the order of elements in the hash buckets.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   224
template <class T, MEMFLAGS F> void Hashtable<T, F>::reverse(void* boundary) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   226
  for (int i = 0; i < this->table_size(); ++i) {
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   227
    HashtableEntry<T, F>* high_list = NULL;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   228
    HashtableEntry<T, F>* low_list = NULL;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   229
    HashtableEntry<T, F>* last_low_entry = NULL;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   230
    HashtableEntry<T, F>* p = bucket(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    while (p != NULL) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   232
      HashtableEntry<T, F>* next = p->next();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
      if ((void*)p->literal() >= boundary) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
        p->set_next(high_list);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
        high_list = p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
        p->set_next(low_list);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
        low_list = p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
        if (last_low_entry == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
          last_low_entry = p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
      p = next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    if (low_list != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
      *bucket_addr(i) = low_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
      last_low_entry->set_next(high_list);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
      *bucket_addr(i) = high_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    }
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
// Dump the hash table buckets.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   257
template <MEMFLAGS F> void BasicHashtable<F>::copy_buckets(char** top, char* end) {
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   258
  intptr_t len = _table_size * sizeof(HashtableBucket<F>);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  *(intptr_t*)(*top) = len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  *top += sizeof(intptr_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  *(intptr_t*)(*top) = _number_of_entries;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  *top += sizeof(intptr_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  if (*top + len > end) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   266
    report_out_of_shared_space(SharedMiscData);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  }
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   268
  _buckets = (HashtableBucket<F>*)memcpy(*top, _buckets, len);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  *top += len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   275
template <class T, MEMFLAGS F> void Hashtable<T, F>::print() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   278
  for (int i = 0; i < BasicHashtable<F>::table_size(); i++) {
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   279
    HashtableEntry<T, F>* entry = bucket(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
    while(entry != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
      tty->print("%d : ", i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
      entry->literal()->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
      tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
      entry = entry->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   290
template <MEMFLAGS F> void BasicHashtable<F>::verify() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  int count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  for (int i = 0; i < table_size(); i++) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   293
    for (BasicHashtableEntry<F>* p = bucket(i); p != NULL; p = p->next()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
      ++count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  assert(count == number_of_entries(), "number of hashtable entries incorrect");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   306
template <MEMFLAGS F> void BasicHashtable<F>::verify_lookup_length(double load) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  if ((double)_lookup_length / (double)_lookup_count > load * 2.0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    warning("Performance bug: SystemDictionary lookup_count=%d "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
            "lookup_length=%d average=%lf load=%f",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
            _lookup_count, _lookup_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
            (double) _lookup_length / _lookup_count, load);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
#endif
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   316
// Explicitly instantiate these types
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   317
template class Hashtable<constantPoolOop, mtClass>;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   318
template class Hashtable<Symbol*, mtSymbol>;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   319
template class Hashtable<klassOop, mtClass>;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   320
template class Hashtable<oop, mtClass>;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   321
#ifdef SOLARIS
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   322
template class Hashtable<oop, mtSymbol>;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   323
#endif
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   324
template class Hashtable<oopDesc*, mtSymbol>;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   325
template class Hashtable<Symbol*, mtClass>;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   326
template class HashtableEntry<Symbol*, mtSymbol>;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   327
template class HashtableEntry<Symbol*, mtClass>;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   328
template class HashtableEntry<oop, mtSymbol>;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   329
template class BasicHashtableEntry<mtSymbol>;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   330
template class BasicHashtableEntry<mtCode>;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   331
template class BasicHashtable<mtClass>;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   332
template class BasicHashtable<mtSymbol>;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   333
template class BasicHashtable<mtCode>;
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 13097
diff changeset
   334
template class BasicHashtable<mtInternal>;