annotate src/share/vm/utilities/hashtable.inline.hpp @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children c18cbe5936b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // Inline function definitions for hashtable.hpp.
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // --------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // Hash function
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // We originally used hashpjw, but hash P(31) gives just as good results
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // and is slighly faster. We would like a hash function that looks at every
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // character, since package names have large common prefixes, and also because
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // hash_or_fail does error checking while iterating.
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // hash P(31) from Kernighan & Ritchie
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38 inline unsigned int Hashtable::hash_symbol(const char* s, int len) {
a61af66fc99e Initial load
duke
parents:
diff changeset
39 unsigned int h = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 while (len-- > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
41 h = 31*h + (unsigned) *s;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 s++;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 }
a61af66fc99e Initial load
duke
parents:
diff changeset
44 return h;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 }
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // --------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // Initialize a table.
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 inline BasicHashtable::BasicHashtable(int table_size, int entry_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // Called on startup, no locking needed
a61af66fc99e Initial load
duke
parents:
diff changeset
54 initialize(table_size, entry_size, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
55 _buckets = NEW_C_HEAP_ARRAY(HashtableBucket, table_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
56 for (int index = 0; index < _table_size; index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
57 _buckets[index].clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
58 }
a61af66fc99e Initial load
duke
parents:
diff changeset
59 }
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 inline BasicHashtable::BasicHashtable(int table_size, int entry_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
63 HashtableBucket* buckets,
a61af66fc99e Initial load
duke
parents:
diff changeset
64 int number_of_entries) {
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // Called on startup, no locking needed
a61af66fc99e Initial load
duke
parents:
diff changeset
66 initialize(table_size, entry_size, number_of_entries);
a61af66fc99e Initial load
duke
parents:
diff changeset
67 _buckets = buckets;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71 inline void BasicHashtable::initialize(int table_size, int entry_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
72 int number_of_entries) {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // Called on startup, no locking needed
a61af66fc99e Initial load
duke
parents:
diff changeset
74 _table_size = table_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 _entry_size = entry_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 _free_list = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 _first_free_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 _end_block = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 _number_of_entries = number_of_entries;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
81 _lookup_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 _lookup_length = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
84 }
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // The following method is MT-safe and may be used with caution.
a61af66fc99e Initial load
duke
parents:
diff changeset
88 inline BasicHashtableEntry* BasicHashtable::bucket(int i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 return _buckets[i].get_entry();
a61af66fc99e Initial load
duke
parents:
diff changeset
90 }
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 inline void HashtableBucket::set_entry(BasicHashtableEntry* l) {
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // Warning: Preserve store ordering. The SystemDictionary is read
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // without locks. The new SystemDictionaryEntry must be
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // complete before other threads can be allowed to see it
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // via a store to _buckets[index].
a61af66fc99e Initial load
duke
parents:
diff changeset
98 OrderAccess::release_store_ptr(&_entry, l);
a61af66fc99e Initial load
duke
parents:
diff changeset
99 }
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 inline BasicHashtableEntry* HashtableBucket::get_entry() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // Warning: Preserve load ordering. The SystemDictionary is read
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // without locks. The new SystemDictionaryEntry must be
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // complete before other threads can be allowed to see it
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // via a store to _buckets[index].
a61af66fc99e Initial load
duke
parents:
diff changeset
107 return (BasicHashtableEntry*) OrderAccess::load_ptr_acquire(&_entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 inline void BasicHashtable::set_entry(int index, BasicHashtableEntry* entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
112 _buckets[index].set_entry(entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 inline void BasicHashtable::add_entry(int index, BasicHashtableEntry* entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 entry->set_next(bucket(index));
a61af66fc99e Initial load
duke
parents:
diff changeset
118 _buckets[index].set_entry(entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
119 ++_number_of_entries;
a61af66fc99e Initial load
duke
parents:
diff changeset
120 }
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 inline void BasicHashtable::free_entry(BasicHashtableEntry* entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
123 entry->set_next(_free_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
124 _free_list = entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 --_number_of_entries;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 }