annotate src/share/vm/utilities/hashtable.cpp @ 6162:e9140bf80b4a

7158800: Improve storage of symbol tables Summary: Use an alternate version of hashing algorithm for symbol string tables and after a certain bucket size to improve performance Reviewed-by: pbk, kamg, dlong, kvn, fparain
author coleenp
date Wed, 13 Jun 2012 19:52:59 -0400
parents 436b4a3231bf
children 246d977b51f2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
6162
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
2 * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
0
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 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 470
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 470
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 470
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "memory/allocation.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "memory/resourceArea.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "runtime/safepoint.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "utilities/dtrace.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "utilities/hashtable.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "utilities/hashtable.inline.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
33
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
34
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2426
diff changeset
35 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
36 HS_DTRACE_PROBE_DECL4(hs_private, hashtable__new_entry,
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
37 void*, unsigned int, void*, void*);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2426
diff changeset
38 #endif /* !USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // This is a generic hashtable, designed to be used for the symbol
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // and string tables.
a61af66fc99e Initial load
duke
parents:
diff changeset
42 //
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // It is implemented as an open hash table with a fixed number of buckets.
a61af66fc99e Initial load
duke
parents:
diff changeset
44 //
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // %note:
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // - HashtableEntrys are allocated in blocks to reduce the space overhead.
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 BasicHashtableEntry* BasicHashtable::new_entry(unsigned int hashValue) {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 BasicHashtableEntry* entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 if (_free_list) {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 entry = _free_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 _free_list = _free_list->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
54 } else {
432
275a3b7ff0d6 6770949: minor tweaks before 6655638
jrose
parents: 0
diff changeset
55 if (_first_free_entry + _entry_size >= _end_block) {
275a3b7ff0d6 6770949: minor tweaks before 6655638
jrose
parents: 0
diff changeset
56 int block_size = MIN2(512, MAX2((int)_table_size / 2, (int)_number_of_entries));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
57 int len = _entry_size * block_size;
432
275a3b7ff0d6 6770949: minor tweaks before 6655638
jrose
parents: 0
diff changeset
58 len = 1 << log2_intptr(len); // round down to power of 2
275a3b7ff0d6 6770949: minor tweaks before 6655638
jrose
parents: 0
diff changeset
59 assert(len >= _entry_size, "");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
60 _first_free_entry = NEW_C_HEAP_ARRAY(char, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
61 _end_block = _first_free_entry + len;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 }
a61af66fc99e Initial load
duke
parents:
diff changeset
63 entry = (BasicHashtableEntry*)_first_free_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 _first_free_entry += _entry_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 }
a61af66fc99e Initial load
duke
parents:
diff changeset
66
432
275a3b7ff0d6 6770949: minor tweaks before 6655638
jrose
parents: 0
diff changeset
67 assert(_entry_size % HeapWordSize == 0, "");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
68 entry->set_hash(hashValue);
a61af66fc99e Initial load
duke
parents:
diff changeset
69 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 }
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
73 template <class T> HashtableEntry<T>* Hashtable<T>::new_entry(unsigned int hashValue, T obj) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
74 HashtableEntry<T>* entry;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
75
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
76 entry = (HashtableEntry<T>*)BasicHashtable::new_entry(hashValue);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
77 entry->set_literal(obj);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2426
diff changeset
78 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
79 HS_DTRACE_PROBE4(hs_private, hashtable__new_entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
80 this, hashValue, obj, entry);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2426
diff changeset
81 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2426
diff changeset
82 HS_PRIVATE_HASHTABLE_NEW_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2426
diff changeset
83 this, hashValue, (uintptr_t) obj, entry);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2426
diff changeset
84 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
85 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 }
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88
6162
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
89 // Check to see if the hashtable is unbalanced. The caller set a flag to
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
90 // rehash at the next safepoint. If this bucket is 60 times greater than the
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
91 // expected average bucket length, it's an unbalanced hashtable.
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
92 // This is somewhat an arbitrary heuristic but if one bucket gets to
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
93 // rehash_count which is currently 100, there's probably something wrong.
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
94
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
95 bool BasicHashtable::check_rehash_table(int count) {
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
96 assert(table_size() != 0, "underflow");
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
97 if (count > (((double)number_of_entries()/(double)table_size())*rehash_multiple)) {
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
98 // Set a flag for the next safepoint, which should be at some guaranteed
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
99 // safepoint interval.
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
100 return true;
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
101 }
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
102 return false;
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
103 }
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
104
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
105 // Create a new table and using alternate hash code, populate the new table
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
106 // with the existing elements. This can be used to change the hash code
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
107 // and could in the future change the size of the table.
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
108
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
109 template <class T> void Hashtable<T>::move_to(Hashtable<T>* new_table) {
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
110 int saved_entry_count = number_of_entries();
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
111
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
112 // Iterate through the table and create a new entry for the new table
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
113 for (int i = 0; i < new_table->table_size(); ++i) {
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
114 for (HashtableEntry<T>* p = bucket(i); p != NULL; ) {
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
115 HashtableEntry<T>* next = p->next();
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
116 T string = p->literal();
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
117 // Use alternate hashing algorithm on the symbol in the first table
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
118 unsigned int hashValue = new_hash(string);
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
119 // Get a new index relative to the new table (can also change size)
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
120 int index = new_table->hash_to_index(hashValue);
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
121 p->set_hash(hashValue);
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
122 unlink_entry(p);
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
123 new_table->add_entry(index, p);
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
124 p = next;
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
125 }
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
126 }
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
127 // give the new table the free list as well
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
128 new_table->copy_freelist(this);
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
129 assert(new_table->number_of_entries() == saved_entry_count, "lost entry on dictionary copy?");
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
130
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
131 // Destroy memory used by the buckets in the hashtable. The memory
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
132 // for the elements has been used in a new table and is not
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
133 // destroyed. The memory reuse will benefit resizing the SystemDictionary
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
134 // to avoid a memory allocation spike at safepoint.
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
135 free_buckets();
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
136 }
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 4006
diff changeset
137
0
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // Reverse the order of elements in the hash buckets.
a61af66fc99e Initial load
duke
parents:
diff changeset
139
a61af66fc99e Initial load
duke
parents:
diff changeset
140 void BasicHashtable::reverse() {
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 for (int i = 0; i < _table_size; ++i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
143 BasicHashtableEntry* new_list = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 BasicHashtableEntry* p = bucket(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
145 while (p != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
146 BasicHashtableEntry* next = p->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
147 p->set_next(new_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
148 new_list = p;
a61af66fc99e Initial load
duke
parents:
diff changeset
149 p = next;
a61af66fc99e Initial load
duke
parents:
diff changeset
150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
151 *bucket_addr(i) = new_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153 }
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // Copy the table to the shared space.
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 void BasicHashtable::copy_table(char** top, char* end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // Dump the hash table entries.
a61af66fc99e Initial load
duke
parents:
diff changeset
161
a61af66fc99e Initial load
duke
parents:
diff changeset
162 intptr_t *plen = (intptr_t*)(*top);
a61af66fc99e Initial load
duke
parents:
diff changeset
163 *top += sizeof(*plen);
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
166 for (i = 0; i < _table_size; ++i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
167 for (BasicHashtableEntry** p = _buckets[i].entry_addr();
a61af66fc99e Initial load
duke
parents:
diff changeset
168 *p != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
169 p = (*p)->next_addr()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
170 if (*top + entry_size() > end) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
171 report_out_of_shared_space(SharedMiscData);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
172 }
a61af66fc99e Initial load
duke
parents:
diff changeset
173 *p = (BasicHashtableEntry*)memcpy(*top, *p, entry_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
174 *top += entry_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
175 }
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177 *plen = (char*)(*top) - (char*)plen - sizeof(*plen);
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // Set the shared bit.
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 for (i = 0; i < _table_size; ++i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
182 for (BasicHashtableEntry* p = bucket(i); p != NULL; p = p->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
183 p->set_shared();
a61af66fc99e Initial load
duke
parents:
diff changeset
184 }
a61af66fc99e Initial load
duke
parents:
diff changeset
185 }
a61af66fc99e Initial load
duke
parents:
diff changeset
186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // Reverse the order of elements in the hash buckets.
a61af66fc99e Initial load
duke
parents:
diff changeset
191
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
192 template <class T> void Hashtable<T>::reverse(void* boundary) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 for (int i = 0; i < table_size(); ++i) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
195 HashtableEntry<T>* high_list = NULL;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
196 HashtableEntry<T>* low_list = NULL;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
197 HashtableEntry<T>* last_low_entry = NULL;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
198 HashtableEntry<T>* p = bucket(i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
199 while (p != NULL) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
200 HashtableEntry<T>* next = p->next();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
201 if ((void*)p->literal() >= boundary) {
a61af66fc99e Initial load
duke
parents:
diff changeset
202 p->set_next(high_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
203 high_list = p;
a61af66fc99e Initial load
duke
parents:
diff changeset
204 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
205 p->set_next(low_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
206 low_list = p;
a61af66fc99e Initial load
duke
parents:
diff changeset
207 if (last_low_entry == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
208 last_low_entry = p;
a61af66fc99e Initial load
duke
parents:
diff changeset
209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
210 }
a61af66fc99e Initial load
duke
parents:
diff changeset
211 p = next;
a61af66fc99e Initial load
duke
parents:
diff changeset
212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
213 if (low_list != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
214 *bucket_addr(i) = low_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
215 last_low_entry->set_next(high_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
216 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
217 *bucket_addr(i) = high_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
219 }
a61af66fc99e Initial load
duke
parents:
diff changeset
220 }
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222
a61af66fc99e Initial load
duke
parents:
diff changeset
223 // Dump the hash table buckets.
a61af66fc99e Initial load
duke
parents:
diff changeset
224
a61af66fc99e Initial load
duke
parents:
diff changeset
225 void BasicHashtable::copy_buckets(char** top, char* end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
226 intptr_t len = _table_size * sizeof(HashtableBucket);
a61af66fc99e Initial load
duke
parents:
diff changeset
227 *(intptr_t*)(*top) = len;
a61af66fc99e Initial load
duke
parents:
diff changeset
228 *top += sizeof(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230 *(intptr_t*)(*top) = _number_of_entries;
a61af66fc99e Initial load
duke
parents:
diff changeset
231 *top += sizeof(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
232
a61af66fc99e Initial load
duke
parents:
diff changeset
233 if (*top + len > end) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
234 report_out_of_shared_space(SharedMiscData);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
236 _buckets = (HashtableBucket*)memcpy(*top, _buckets, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
237 *top += len;
a61af66fc99e Initial load
duke
parents:
diff changeset
238 }
a61af66fc99e Initial load
duke
parents:
diff changeset
239
a61af66fc99e Initial load
duke
parents:
diff changeset
240
a61af66fc99e Initial load
duke
parents:
diff changeset
241 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
242
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
243 template <class T> void Hashtable<T>::print() {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
244 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
245
a61af66fc99e Initial load
duke
parents:
diff changeset
246 for (int i = 0; i < table_size(); i++) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
247 HashtableEntry<T>* entry = bucket(i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
248 while(entry != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
249 tty->print("%d : ", i);
a61af66fc99e Initial load
duke
parents:
diff changeset
250 entry->literal()->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
251 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
252 entry = entry->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
253 }
a61af66fc99e Initial load
duke
parents:
diff changeset
254 }
a61af66fc99e Initial load
duke
parents:
diff changeset
255 }
a61af66fc99e Initial load
duke
parents:
diff changeset
256
a61af66fc99e Initial load
duke
parents:
diff changeset
257
a61af66fc99e Initial load
duke
parents:
diff changeset
258 void BasicHashtable::verify() {
a61af66fc99e Initial load
duke
parents:
diff changeset
259 int count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
260 for (int i = 0; i < table_size(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
261 for (BasicHashtableEntry* p = bucket(i); p != NULL; p = p->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
262 ++count;
a61af66fc99e Initial load
duke
parents:
diff changeset
263 }
a61af66fc99e Initial load
duke
parents:
diff changeset
264 }
a61af66fc99e Initial load
duke
parents:
diff changeset
265 assert(count == number_of_entries(), "number of hashtable entries incorrect");
a61af66fc99e Initial load
duke
parents:
diff changeset
266 }
a61af66fc99e Initial load
duke
parents:
diff changeset
267
a61af66fc99e Initial load
duke
parents:
diff changeset
268
a61af66fc99e Initial load
duke
parents:
diff changeset
269 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
270
a61af66fc99e Initial load
duke
parents:
diff changeset
271
a61af66fc99e Initial load
duke
parents:
diff changeset
272 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
273
a61af66fc99e Initial load
duke
parents:
diff changeset
274 void BasicHashtable::verify_lookup_length(double load) {
a61af66fc99e Initial load
duke
parents:
diff changeset
275 if ((double)_lookup_length / (double)_lookup_count > load * 2.0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
276 warning("Performance bug: SystemDictionary lookup_count=%d "
a61af66fc99e Initial load
duke
parents:
diff changeset
277 "lookup_length=%d average=%lf load=%f",
a61af66fc99e Initial load
duke
parents:
diff changeset
278 _lookup_count, _lookup_length,
a61af66fc99e Initial load
duke
parents:
diff changeset
279 (double) _lookup_length / _lookup_count, load);
a61af66fc99e Initial load
duke
parents:
diff changeset
280 }
a61af66fc99e Initial load
duke
parents:
diff changeset
281 }
a61af66fc99e Initial load
duke
parents:
diff changeset
282
a61af66fc99e Initial load
duke
parents:
diff changeset
283 #endif
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
284
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
285 // Explicitly instantiate these types
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
286 template class Hashtable<constantPoolOop>;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
287 template class Hashtable<Symbol*>;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
288 template class Hashtable<klassOop>;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
289 template class Hashtable<oop>;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
290