hotspot/src/share/vm/utilities/hashtable.inline.hpp
author coleenp
Thu, 27 Jan 2011 16:11:27 -0800
changeset 8076 96d498ec7ae1
parent 7397 5b173b4ca846
child 8921 14bfe81f2a9d
permissions -rw-r--r--
6990754: Use native memory and reference counting to implement SymbolTable Summary: move symbols from permgen into C heap and reference count them Reviewed-by: never, acorn, jmasa, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
     2
 * Copyright (c) 2003, 2010, 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: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
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: 1
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
#ifndef SHARE_VM_UTILITIES_HASHTABLE_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_UTILITIES_HASHTABLE_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "utilities/hashtable.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// Inline function definitions for hashtable.hpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// --------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// Hash function
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// We originally used hashpjw, but hash P(31) gives just as good results
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// and is slighly faster. We would like a hash function that looks at every
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// character, since package names have large common prefixes, and also because
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// hash_or_fail does error checking while iterating.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// hash P(31) from Kernighan & Ritchie
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    44
inline unsigned int BasicHashtable::hash_symbol(const char* s, int len) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  unsigned int h = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  while (len-- > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    h = 31*h + (unsigned) *s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    s++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  return h;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// --------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// Initialize a table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
inline BasicHashtable::BasicHashtable(int table_size, int entry_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // Called on startup, no locking needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  initialize(table_size, entry_size, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  _buckets = NEW_C_HEAP_ARRAY(HashtableBucket, table_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  for (int index = 0; index < _table_size; index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    _buckets[index].clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
inline BasicHashtable::BasicHashtable(int table_size, int entry_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
                                      HashtableBucket* buckets,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
                                      int number_of_entries) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // Called on startup, no locking needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  initialize(table_size, entry_size, number_of_entries);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  _buckets = buckets;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
inline void BasicHashtable::initialize(int table_size, int entry_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
                                       int number_of_entries) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // Called on startup, no locking needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  _table_size = table_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  _entry_size = entry_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  _free_list = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  _first_free_entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  _end_block = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  _number_of_entries = number_of_entries;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  _lookup_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  _lookup_length = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
// The following method is MT-safe and may be used with caution.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
inline BasicHashtableEntry* BasicHashtable::bucket(int i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  return _buckets[i].get_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
inline void HashtableBucket::set_entry(BasicHashtableEntry* l) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // Warning: Preserve store ordering.  The SystemDictionary is read
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  //          without locks.  The new SystemDictionaryEntry must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  //          complete before other threads can be allowed to see it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  //          via a store to _buckets[index].
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  OrderAccess::release_store_ptr(&_entry, l);
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
inline BasicHashtableEntry* HashtableBucket::get_entry() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // Warning: Preserve load ordering.  The SystemDictionary is read
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  //          without locks.  The new SystemDictionaryEntry must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  //          complete before other threads can be allowed to see it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  //          via a store to _buckets[index].
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  return (BasicHashtableEntry*) OrderAccess::load_ptr_acquire(&_entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
inline void BasicHashtable::set_entry(int index, BasicHashtableEntry* entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  _buckets[index].set_entry(entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
inline void BasicHashtable::add_entry(int index, BasicHashtableEntry* entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  entry->set_next(bucket(index));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  _buckets[index].set_entry(entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  ++_number_of_entries;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
inline void BasicHashtable::free_entry(BasicHashtableEntry* entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  entry->set_next(_free_list);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  _free_list = entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  --_number_of_entries;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
}
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   133
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   134
#endif // SHARE_VM_UTILITIES_HASHTABLE_INLINE_HPP