annotate src/share/vm/utilities/hashtable.cpp @ 2426:1d1603768966

7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass Summary: Update the copyright to be 2010 on all changed files in OpenJDK Reviewed-by: ohair
author trims
date Tue, 05 Apr 2011 14:12:31 -0700
parents 3582bf76420e
children 436b4a3231bf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2426
1d1603768966 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 2177
diff changeset
2 * Copyright (c) 2003, 2011, 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
0
a61af66fc99e Initial load
duke
parents:
diff changeset
35 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
36 void*, unsigned int, void*, void*);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // This is a generic hashtable, designed to be used for the symbol
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // and string tables.
a61af66fc99e Initial load
duke
parents:
diff changeset
40 //
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // It is implemented as an open hash table with a fixed number of buckets.
a61af66fc99e Initial load
duke
parents:
diff changeset
42 //
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // %note:
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // - HashtableEntrys are allocated in blocks to reduce the space overhead.
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 BasicHashtableEntry* BasicHashtable::new_entry(unsigned int hashValue) {
a61af66fc99e Initial load
duke
parents:
diff changeset
47 BasicHashtableEntry* entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 if (_free_list) {
a61af66fc99e Initial load
duke
parents:
diff changeset
50 entry = _free_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 _free_list = _free_list->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
52 } else {
432
275a3b7ff0d6 6770949: minor tweaks before 6655638
jrose
parents: 0
diff changeset
53 if (_first_free_entry + _entry_size >= _end_block) {
275a3b7ff0d6 6770949: minor tweaks before 6655638
jrose
parents: 0
diff changeset
54 int block_size = MIN2(512, MAX2((int)_table_size / 2, (int)_number_of_entries));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
55 int len = _entry_size * block_size;
432
275a3b7ff0d6 6770949: minor tweaks before 6655638
jrose
parents: 0
diff changeset
56 len = 1 << log2_intptr(len); // round down to power of 2
275a3b7ff0d6 6770949: minor tweaks before 6655638
jrose
parents: 0
diff changeset
57 assert(len >= _entry_size, "");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
58 _first_free_entry = NEW_C_HEAP_ARRAY(char, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
59 _end_block = _first_free_entry + len;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 }
a61af66fc99e Initial load
duke
parents:
diff changeset
61 entry = (BasicHashtableEntry*)_first_free_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 _first_free_entry += _entry_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64
432
275a3b7ff0d6 6770949: minor tweaks before 6655638
jrose
parents: 0
diff changeset
65 assert(_entry_size % HeapWordSize == 0, "");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
66 entry->set_hash(hashValue);
a61af66fc99e Initial load
duke
parents:
diff changeset
67 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
71 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
72 HashtableEntry<T>* entry;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
73
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
74 entry = (HashtableEntry<T>*)BasicHashtable::new_entry(hashValue);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
75 entry->set_literal(obj);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
76 HS_DTRACE_PROBE4(hs_private, hashtable__new_entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
77 this, hashValue, obj, entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // Reverse the order of elements in the hash buckets.
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 void BasicHashtable::reverse() {
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 for (int i = 0; i < _table_size; ++i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 BasicHashtableEntry* new_list = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 BasicHashtableEntry* p = bucket(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
89 while (p != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
90 BasicHashtableEntry* next = p->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
91 p->set_next(new_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
92 new_list = p;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 p = next;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95 *bucket_addr(i) = new_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 }
a61af66fc99e Initial load
duke
parents:
diff changeset
97 }
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // Copy the table to the shared space.
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 void BasicHashtable::copy_table(char** top, char* end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // Dump the hash table entries.
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 intptr_t *plen = (intptr_t*)(*top);
a61af66fc99e Initial load
duke
parents:
diff changeset
107 *top += sizeof(*plen);
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
110 for (i = 0; i < _table_size; ++i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
111 for (BasicHashtableEntry** p = _buckets[i].entry_addr();
a61af66fc99e Initial load
duke
parents:
diff changeset
112 *p != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 p = (*p)->next_addr()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
114 if (*top + entry_size() > end) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
115 report_out_of_shared_space(SharedMiscData);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
116 }
a61af66fc99e Initial load
duke
parents:
diff changeset
117 *p = (BasicHashtableEntry*)memcpy(*top, *p, entry_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
118 *top += entry_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
119 }
a61af66fc99e Initial load
duke
parents:
diff changeset
120 }
a61af66fc99e Initial load
duke
parents:
diff changeset
121 *plen = (char*)(*top) - (char*)plen - sizeof(*plen);
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 // Set the shared bit.
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 for (i = 0; i < _table_size; ++i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
126 for (BasicHashtableEntry* p = bucket(i); p != NULL; p = p->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
127 p->set_shared();
a61af66fc99e Initial load
duke
parents:
diff changeset
128 }
a61af66fc99e Initial load
duke
parents:
diff changeset
129 }
a61af66fc99e Initial load
duke
parents:
diff changeset
130 }
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // Reverse the order of elements in the hash buckets.
a61af66fc99e Initial load
duke
parents:
diff changeset
135
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
136 template <class T> void Hashtable<T>::reverse(void* boundary) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138 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
139 HashtableEntry<T>* high_list = NULL;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
140 HashtableEntry<T>* low_list = NULL;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
141 HashtableEntry<T>* last_low_entry = NULL;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
142 HashtableEntry<T>* p = bucket(i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
143 while (p != NULL) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
144 HashtableEntry<T>* next = p->next();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
145 if ((void*)p->literal() >= boundary) {
a61af66fc99e Initial load
duke
parents:
diff changeset
146 p->set_next(high_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
147 high_list = p;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 p->set_next(low_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
150 low_list = p;
a61af66fc99e Initial load
duke
parents:
diff changeset
151 if (last_low_entry == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
152 last_low_entry = p;
a61af66fc99e Initial load
duke
parents:
diff changeset
153 }
a61af66fc99e Initial load
duke
parents:
diff changeset
154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
155 p = next;
a61af66fc99e Initial load
duke
parents:
diff changeset
156 }
a61af66fc99e Initial load
duke
parents:
diff changeset
157 if (low_list != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
158 *bucket_addr(i) = low_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
159 last_low_entry->set_next(high_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
160 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 *bucket_addr(i) = high_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
162 }
a61af66fc99e Initial load
duke
parents:
diff changeset
163 }
a61af66fc99e Initial load
duke
parents:
diff changeset
164 }
a61af66fc99e Initial load
duke
parents:
diff changeset
165
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // Dump the hash table buckets.
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 void BasicHashtable::copy_buckets(char** top, char* end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
170 intptr_t len = _table_size * sizeof(HashtableBucket);
a61af66fc99e Initial load
duke
parents:
diff changeset
171 *(intptr_t*)(*top) = len;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 *top += sizeof(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
173
a61af66fc99e Initial load
duke
parents:
diff changeset
174 *(intptr_t*)(*top) = _number_of_entries;
a61af66fc99e Initial load
duke
parents:
diff changeset
175 *top += sizeof(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
176
a61af66fc99e Initial load
duke
parents:
diff changeset
177 if (*top + len > end) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
178 report_out_of_shared_space(SharedMiscData);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
180 _buckets = (HashtableBucket*)memcpy(*top, _buckets, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
181 *top += len;
a61af66fc99e Initial load
duke
parents:
diff changeset
182 }
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
186
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
187 template <class T> void Hashtable<T>::print() {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
188 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 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
191 HashtableEntry<T>* entry = bucket(i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
192 while(entry != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
193 tty->print("%d : ", i);
a61af66fc99e Initial load
duke
parents:
diff changeset
194 entry->literal()->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
195 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
196 entry = entry->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
197 }
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201
a61af66fc99e Initial load
duke
parents:
diff changeset
202 void BasicHashtable::verify() {
a61af66fc99e Initial load
duke
parents:
diff changeset
203 int count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
204 for (int i = 0; i < table_size(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
205 for (BasicHashtableEntry* p = bucket(i); p != NULL; p = p->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
206 ++count;
a61af66fc99e Initial load
duke
parents:
diff changeset
207 }
a61af66fc99e Initial load
duke
parents:
diff changeset
208 }
a61af66fc99e Initial load
duke
parents:
diff changeset
209 assert(count == number_of_entries(), "number of hashtable entries incorrect");
a61af66fc99e Initial load
duke
parents:
diff changeset
210 }
a61af66fc99e Initial load
duke
parents:
diff changeset
211
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
217
a61af66fc99e Initial load
duke
parents:
diff changeset
218 void BasicHashtable::verify_lookup_length(double load) {
a61af66fc99e Initial load
duke
parents:
diff changeset
219 if ((double)_lookup_length / (double)_lookup_count > load * 2.0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
220 warning("Performance bug: SystemDictionary lookup_count=%d "
a61af66fc99e Initial load
duke
parents:
diff changeset
221 "lookup_length=%d average=%lf load=%f",
a61af66fc99e Initial load
duke
parents:
diff changeset
222 _lookup_count, _lookup_length,
a61af66fc99e Initial load
duke
parents:
diff changeset
223 (double) _lookup_length / _lookup_count, load);
a61af66fc99e Initial load
duke
parents:
diff changeset
224 }
a61af66fc99e Initial load
duke
parents:
diff changeset
225 }
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227 #endif
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
228
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
229 // Explicitly instantiate these types
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
230 template class Hashtable<constantPoolOop>;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
231 template class Hashtable<Symbol*>;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
232 template class Hashtable<klassOop>;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
233 template class Hashtable<oop>;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
234