annotate src/share/vm/classfile/symbolTable.cpp @ 605:98cb887364d3

6810672: Comment typos Summary: I have collected some typos I have found while looking at the code. Reviewed-by: kvn, never
author twisti
date Fri, 27 Feb 2009 13:27:09 -0800
parents a61af66fc99e
children c89f86385056
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 1997-2006 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 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_symbolTable.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // --------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 SymbolTable* SymbolTable::_the_table = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // Lookup a symbol in a bucket.
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 symbolOop SymbolTable::lookup(int index, const char* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
35 int len, unsigned int hash) {
a61af66fc99e Initial load
duke
parents:
diff changeset
36 for (HashtableEntry* e = bucket(index); e != NULL; e = e->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
37 if (e->hash() == hash) {
a61af66fc99e Initial load
duke
parents:
diff changeset
38 symbolOop sym = symbolOop(e->literal());
a61af66fc99e Initial load
duke
parents:
diff changeset
39 if (sym->equals(name, len)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
40 return sym;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 }
a61af66fc99e Initial load
duke
parents:
diff changeset
42 }
a61af66fc99e Initial load
duke
parents:
diff changeset
43 }
a61af66fc99e Initial load
duke
parents:
diff changeset
44 return NULL;
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 // We take care not to be blocking while holding the
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // SymbolTable_lock. Otherwise, the system might deadlock, since the
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // symboltable is used during compilation (VM_thread) The lock free
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // synchronization is simplified by the fact that we do not delete
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // entries in the symbol table during normal execution (only during
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // safepoints).
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 symbolOop SymbolTable::lookup(const char* name, int len, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
56 unsigned int hashValue = hash_symbol(name, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
57 int index = the_table()->hash_to_index(hashValue);
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 symbolOop s = the_table()->lookup(index, name, len, hashValue);
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // Found
a61af66fc99e Initial load
duke
parents:
diff changeset
62 if (s != NULL) return s;
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // Otherwise, add to symbol to table
a61af66fc99e Initial load
duke
parents:
diff changeset
65 return the_table()->basic_add(index, (u1*)name, len, hashValue, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
66 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 symbolOop SymbolTable::lookup(symbolHandle sym, int begin, int end, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
69 char* buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 int index, len;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 unsigned int hashValue;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 char* name;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 {
a61af66fc99e Initial load
duke
parents:
diff changeset
74 debug_only(No_Safepoint_Verifier nsv;)
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 name = (char*)sym->base() + begin;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 len = end - begin;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 hashValue = hash_symbol(name, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
79 index = the_table()->hash_to_index(hashValue);
a61af66fc99e Initial load
duke
parents:
diff changeset
80 symbolOop s = the_table()->lookup(index, name, len, hashValue);
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // Found
a61af66fc99e Initial load
duke
parents:
diff changeset
83 if (s != NULL) return s;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 }
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // Otherwise, add to symbol to table. Copy to a C string first.
a61af66fc99e Initial load
duke
parents:
diff changeset
87 char stack_buf[128];
a61af66fc99e Initial load
duke
parents:
diff changeset
88 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
89 if (len <= 128) {
a61af66fc99e Initial load
duke
parents:
diff changeset
90 buffer = stack_buf;
a61af66fc99e Initial load
duke
parents:
diff changeset
91 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
92 buffer = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94 for (int i=0; i<len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
95 buffer[i] = name[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
96 }
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // Make sure there is no safepoint in the code above since name can't move.
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // We can't include the code in No_Safepoint_Verifier because of the
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // ResourceMark.
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 return the_table()->basic_add(index, (u1*)buffer, len, hashValue, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 symbolOop SymbolTable::lookup_only(const char* name, int len,
a61af66fc99e Initial load
duke
parents:
diff changeset
105 unsigned int& hash) {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 hash = hash_symbol(name, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
107 int index = the_table()->hash_to_index(hash);
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 return the_table()->lookup(index, name, len, hash);
a61af66fc99e Initial load
duke
parents:
diff changeset
110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 void SymbolTable::add(constantPoolHandle cp, int names_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
113 const char** names, int* lengths, int* cp_indices,
a61af66fc99e Initial load
duke
parents:
diff changeset
114 unsigned int* hashValues, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
115 SymbolTable* table = the_table();
a61af66fc99e Initial load
duke
parents:
diff changeset
116 bool added = table->basic_add(cp, names_count, names, lengths,
a61af66fc99e Initial load
duke
parents:
diff changeset
117 cp_indices, hashValues, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
118 if (!added) {
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // do it the hard way
a61af66fc99e Initial load
duke
parents:
diff changeset
120 for (int i=0; i<names_count; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
121 int index = table->hash_to_index(hashValues[i]);
a61af66fc99e Initial load
duke
parents:
diff changeset
122 symbolOop sym = table->basic_add(index, (u1*)names[i], lengths[i],
a61af66fc99e Initial load
duke
parents:
diff changeset
123 hashValues[i], CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
124 cp->symbol_at_put(cp_indices[i], sym);
a61af66fc99e Initial load
duke
parents:
diff changeset
125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
127 }
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // Needed for preloading classes in signatures when compiling.
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 symbolOop SymbolTable::probe(const char* name, int len) {
a61af66fc99e Initial load
duke
parents:
diff changeset
132 unsigned int hashValue = hash_symbol(name, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
133 int index = the_table()->hash_to_index(hashValue);
a61af66fc99e Initial load
duke
parents:
diff changeset
134 return the_table()->lookup(index, name, len, hashValue);
a61af66fc99e Initial load
duke
parents:
diff changeset
135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138 symbolOop SymbolTable::basic_add(int index, u1 *name, int len,
a61af66fc99e Initial load
duke
parents:
diff changeset
139 unsigned int hashValue, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
140 assert(!Universe::heap()->is_in_reserved(name) || GC_locker::is_active(),
a61af66fc99e Initial load
duke
parents:
diff changeset
141 "proposed name of symbol must be stable");
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143 // We assume that lookup() has been called already, that it failed,
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // and symbol was not found. We create the symbol here.
a61af66fc99e Initial load
duke
parents:
diff changeset
145 symbolKlass* sk = (symbolKlass*) Universe::symbolKlassObj()->klass_part();
a61af66fc99e Initial load
duke
parents:
diff changeset
146 symbolOop s_oop = sk->allocate_symbol(name, len, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
147 symbolHandle sym (THREAD, s_oop);
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // Allocation must be done before grapping the SymbolTable_lock lock
a61af66fc99e Initial load
duke
parents:
diff changeset
150 MutexLocker ml(SymbolTable_lock, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
151
a61af66fc99e Initial load
duke
parents:
diff changeset
152 assert(sym->equals((char*)name, len), "symbol must be properly initialized");
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // Since look-up was done lock-free, we need to check if another
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // thread beat us in the race to insert the symbol.
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 symbolOop test = lookup(index, (char*)name, len, hashValue);
a61af66fc99e Initial load
duke
parents:
diff changeset
158 if (test != NULL) {
605
98cb887364d3 6810672: Comment typos
twisti
parents: 0
diff changeset
159 // A race occurred and another thread introduced the symbol, this one
0
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // will be dropped and collected.
a61af66fc99e Initial load
duke
parents:
diff changeset
161 return test;
a61af66fc99e Initial load
duke
parents:
diff changeset
162 }
a61af66fc99e Initial load
duke
parents:
diff changeset
163
a61af66fc99e Initial load
duke
parents:
diff changeset
164 HashtableEntry* entry = new_entry(hashValue, sym());
a61af66fc99e Initial load
duke
parents:
diff changeset
165 add_entry(index, entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
166 return sym();
a61af66fc99e Initial load
duke
parents:
diff changeset
167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 bool SymbolTable::basic_add(constantPoolHandle cp, int names_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
170 const char** names, int* lengths,
a61af66fc99e Initial load
duke
parents:
diff changeset
171 int* cp_indices, unsigned int* hashValues,
a61af66fc99e Initial load
duke
parents:
diff changeset
172 TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
173 symbolKlass* sk = (symbolKlass*) Universe::symbolKlassObj()->klass_part();
a61af66fc99e Initial load
duke
parents:
diff changeset
174 symbolOop sym_oops[symbol_alloc_batch_size];
a61af66fc99e Initial load
duke
parents:
diff changeset
175 bool allocated = sk->allocate_symbols(names_count, names, lengths,
a61af66fc99e Initial load
duke
parents:
diff changeset
176 sym_oops, CHECK_false);
a61af66fc99e Initial load
duke
parents:
diff changeset
177 if (!allocated) {
a61af66fc99e Initial load
duke
parents:
diff changeset
178 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
180 symbolHandle syms[symbol_alloc_batch_size];
a61af66fc99e Initial load
duke
parents:
diff changeset
181 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
182 for (i=0; i<names_count; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
183 syms[i] = symbolHandle(THREAD, sym_oops[i]);
a61af66fc99e Initial load
duke
parents:
diff changeset
184 }
a61af66fc99e Initial load
duke
parents:
diff changeset
185
a61af66fc99e Initial load
duke
parents:
diff changeset
186 // Allocation must be done before grabbing the SymbolTable_lock lock
a61af66fc99e Initial load
duke
parents:
diff changeset
187 MutexLocker ml(SymbolTable_lock, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 for (i=0; i<names_count; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
190 assert(syms[i]->equals(names[i], lengths[i]), "symbol must be properly initialized");
a61af66fc99e Initial load
duke
parents:
diff changeset
191 // Since look-up was done lock-free, we need to check if another
a61af66fc99e Initial load
duke
parents:
diff changeset
192 // thread beat us in the race to insert the symbol.
a61af66fc99e Initial load
duke
parents:
diff changeset
193 int index = hash_to_index(hashValues[i]);
a61af66fc99e Initial load
duke
parents:
diff changeset
194 symbolOop test = lookup(index, names[i], lengths[i], hashValues[i]);
a61af66fc99e Initial load
duke
parents:
diff changeset
195 if (test != NULL) {
605
98cb887364d3 6810672: Comment typos
twisti
parents: 0
diff changeset
196 // A race occurred and another thread introduced the symbol, this one
0
a61af66fc99e Initial load
duke
parents:
diff changeset
197 // will be dropped and collected. Use test instead.
a61af66fc99e Initial load
duke
parents:
diff changeset
198 cp->symbol_at_put(cp_indices[i], test);
a61af66fc99e Initial load
duke
parents:
diff changeset
199 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
200 symbolOop sym = syms[i]();
a61af66fc99e Initial load
duke
parents:
diff changeset
201 HashtableEntry* entry = new_entry(hashValues[i], sym);
a61af66fc99e Initial load
duke
parents:
diff changeset
202 add_entry(index, entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
203 cp->symbol_at_put(cp_indices[i], sym);
a61af66fc99e Initial load
duke
parents:
diff changeset
204 }
a61af66fc99e Initial load
duke
parents:
diff changeset
205 }
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
208 }
a61af66fc99e Initial load
duke
parents:
diff changeset
209
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 void SymbolTable::verify() {
a61af66fc99e Initial load
duke
parents:
diff changeset
212 for (int i = 0; i < the_table()->table_size(); ++i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
213 HashtableEntry* p = the_table()->bucket(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
214 for ( ; p != NULL; p = p->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
215 symbolOop s = symbolOop(p->literal());
a61af66fc99e Initial load
duke
parents:
diff changeset
216 guarantee(s != NULL, "symbol is NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
217 s->verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
218 guarantee(s->is_perm(), "symbol not in permspace");
a61af66fc99e Initial load
duke
parents:
diff changeset
219 unsigned int h = hash_symbol((char*)s->bytes(), s->utf8_length());
a61af66fc99e Initial load
duke
parents:
diff changeset
220 guarantee(p->hash() == h, "broken hash in symbol table entry");
a61af66fc99e Initial load
duke
parents:
diff changeset
221 guarantee(the_table()->hash_to_index(h) == i,
a61af66fc99e Initial load
duke
parents:
diff changeset
222 "wrong index in symbol table");
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
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
a61af66fc99e Initial load
duke
parents:
diff changeset
228 //---------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
229 // Non-product code
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
232
a61af66fc99e Initial load
duke
parents:
diff changeset
233 void SymbolTable::print_histogram() {
a61af66fc99e Initial load
duke
parents:
diff changeset
234 MutexLocker ml(SymbolTable_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
235 const int results_length = 100;
a61af66fc99e Initial load
duke
parents:
diff changeset
236 int results[results_length];
a61af66fc99e Initial load
duke
parents:
diff changeset
237 int i,j;
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 // initialize results to zero
a61af66fc99e Initial load
duke
parents:
diff changeset
240 for (j = 0; j < results_length; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
241 results[j] = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
242 }
a61af66fc99e Initial load
duke
parents:
diff changeset
243
a61af66fc99e Initial load
duke
parents:
diff changeset
244 int total = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
245 int max_symbols = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
246 int out_of_range = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
247 for (i = 0; i < the_table()->table_size(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
248 HashtableEntry* p = the_table()->bucket(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
249 for ( ; p != NULL; p = p->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
250 int counter = symbolOop(p->literal())->utf8_length();
a61af66fc99e Initial load
duke
parents:
diff changeset
251 total += counter;
a61af66fc99e Initial load
duke
parents:
diff changeset
252 if (counter < results_length) {
a61af66fc99e Initial load
duke
parents:
diff changeset
253 results[counter]++;
a61af66fc99e Initial load
duke
parents:
diff changeset
254 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
255 out_of_range++;
a61af66fc99e Initial load
duke
parents:
diff changeset
256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
257 max_symbols = MAX2(max_symbols, counter);
a61af66fc99e Initial load
duke
parents:
diff changeset
258 }
a61af66fc99e Initial load
duke
parents:
diff changeset
259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
260 tty->print_cr("Symbol Table:");
a61af66fc99e Initial load
duke
parents:
diff changeset
261 tty->print_cr("%8s %5d", "Total ", total);
a61af66fc99e Initial load
duke
parents:
diff changeset
262 tty->print_cr("%8s %5d", "Maximum", max_symbols);
a61af66fc99e Initial load
duke
parents:
diff changeset
263 tty->print_cr("%8s %3.2f", "Average",
a61af66fc99e Initial load
duke
parents:
diff changeset
264 ((float) total / (float) the_table()->table_size()));
a61af66fc99e Initial load
duke
parents:
diff changeset
265 tty->print_cr("%s", "Histogram:");
a61af66fc99e Initial load
duke
parents:
diff changeset
266 tty->print_cr(" %s %29s", "Length", "Number chains that length");
a61af66fc99e Initial load
duke
parents:
diff changeset
267 for (i = 0; i < results_length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
268 if (results[i] > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
269 tty->print_cr("%6d %10d", i, results[i]);
a61af66fc99e Initial load
duke
parents:
diff changeset
270 }
a61af66fc99e Initial load
duke
parents:
diff changeset
271 }
a61af66fc99e Initial load
duke
parents:
diff changeset
272 int line_length = 70;
a61af66fc99e Initial load
duke
parents:
diff changeset
273 tty->print_cr("%s %30s", " Length", "Number chains that length");
a61af66fc99e Initial load
duke
parents:
diff changeset
274 for (i = 0; i < results_length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
275 if (results[i] > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
276 tty->print("%4d", i);
a61af66fc99e Initial load
duke
parents:
diff changeset
277 for (j = 0; (j < results[i]) && (j < line_length); j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
278 tty->print("%1s", "*");
a61af66fc99e Initial load
duke
parents:
diff changeset
279 }
a61af66fc99e Initial load
duke
parents:
diff changeset
280 if (j == line_length) {
a61af66fc99e Initial load
duke
parents:
diff changeset
281 tty->print("%1s", "+");
a61af66fc99e Initial load
duke
parents:
diff changeset
282 }
a61af66fc99e Initial load
duke
parents:
diff changeset
283 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
284 }
a61af66fc99e Initial load
duke
parents:
diff changeset
285 }
a61af66fc99e Initial load
duke
parents:
diff changeset
286 tty->print_cr(" %s %d: %d\n", "Number chains longer than",
a61af66fc99e Initial load
duke
parents:
diff changeset
287 results_length, out_of_range);
a61af66fc99e Initial load
duke
parents:
diff changeset
288 }
a61af66fc99e Initial load
duke
parents:
diff changeset
289
a61af66fc99e Initial load
duke
parents:
diff changeset
290 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
291
a61af66fc99e Initial load
duke
parents:
diff changeset
292 // --------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
293
a61af66fc99e Initial load
duke
parents:
diff changeset
294 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
295 class StableMemoryChecker : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
296 enum { _bufsize = wordSize*4 };
a61af66fc99e Initial load
duke
parents:
diff changeset
297
a61af66fc99e Initial load
duke
parents:
diff changeset
298 address _region;
a61af66fc99e Initial load
duke
parents:
diff changeset
299 jint _size;
a61af66fc99e Initial load
duke
parents:
diff changeset
300 u1 _save_buf[_bufsize];
a61af66fc99e Initial load
duke
parents:
diff changeset
301
a61af66fc99e Initial load
duke
parents:
diff changeset
302 int sample(u1* save_buf) {
a61af66fc99e Initial load
duke
parents:
diff changeset
303 if (_size <= _bufsize) {
a61af66fc99e Initial load
duke
parents:
diff changeset
304 memcpy(save_buf, _region, _size);
a61af66fc99e Initial load
duke
parents:
diff changeset
305 return _size;
a61af66fc99e Initial load
duke
parents:
diff changeset
306 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
307 // copy head and tail
a61af66fc99e Initial load
duke
parents:
diff changeset
308 memcpy(&save_buf[0], _region, _bufsize/2);
a61af66fc99e Initial load
duke
parents:
diff changeset
309 memcpy(&save_buf[_bufsize/2], _region + _size - _bufsize/2, _bufsize/2);
a61af66fc99e Initial load
duke
parents:
diff changeset
310 return (_bufsize/2)*2;
a61af66fc99e Initial load
duke
parents:
diff changeset
311 }
a61af66fc99e Initial load
duke
parents:
diff changeset
312 }
a61af66fc99e Initial load
duke
parents:
diff changeset
313
a61af66fc99e Initial load
duke
parents:
diff changeset
314 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
315 StableMemoryChecker(const void* region, jint size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
316 _region = (address) region;
a61af66fc99e Initial load
duke
parents:
diff changeset
317 _size = size;
a61af66fc99e Initial load
duke
parents:
diff changeset
318 sample(_save_buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
319 }
a61af66fc99e Initial load
duke
parents:
diff changeset
320
a61af66fc99e Initial load
duke
parents:
diff changeset
321 bool verify() {
a61af66fc99e Initial load
duke
parents:
diff changeset
322 u1 check_buf[sizeof(_save_buf)];
a61af66fc99e Initial load
duke
parents:
diff changeset
323 int check_size = sample(check_buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
324 return (0 == memcmp(_save_buf, check_buf, check_size));
a61af66fc99e Initial load
duke
parents:
diff changeset
325 }
a61af66fc99e Initial load
duke
parents:
diff changeset
326
a61af66fc99e Initial load
duke
parents:
diff changeset
327 void set_region(const void* region) { _region = (address) region; }
a61af66fc99e Initial load
duke
parents:
diff changeset
328 };
a61af66fc99e Initial load
duke
parents:
diff changeset
329 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
330
a61af66fc99e Initial load
duke
parents:
diff changeset
331
a61af66fc99e Initial load
duke
parents:
diff changeset
332 // --------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
333
a61af66fc99e Initial load
duke
parents:
diff changeset
334
a61af66fc99e Initial load
duke
parents:
diff changeset
335 // Compute the hash value for a java.lang.String object which would
a61af66fc99e Initial load
duke
parents:
diff changeset
336 // contain the characters passed in. This hash value is used for at
a61af66fc99e Initial load
duke
parents:
diff changeset
337 // least two purposes.
a61af66fc99e Initial load
duke
parents:
diff changeset
338 //
a61af66fc99e Initial load
duke
parents:
diff changeset
339 // (a) As the hash value used by the StringTable for bucket selection
a61af66fc99e Initial load
duke
parents:
diff changeset
340 // and comparison (stored in the HashtableEntry structures). This
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // is used in the String.intern() method.
a61af66fc99e Initial load
duke
parents:
diff changeset
342 //
a61af66fc99e Initial load
duke
parents:
diff changeset
343 // (b) As the hash value used by the String object itself, in
a61af66fc99e Initial load
duke
parents:
diff changeset
344 // String.hashCode(). This value is normally calculate in Java code
a61af66fc99e Initial load
duke
parents:
diff changeset
345 // in the String.hashCode method(), but is precomputed for String
a61af66fc99e Initial load
duke
parents:
diff changeset
346 // objects in the shared archive file.
a61af66fc99e Initial load
duke
parents:
diff changeset
347 //
a61af66fc99e Initial load
duke
parents:
diff changeset
348 // For this reason, THIS ALGORITHM MUST MATCH String.hashCode().
a61af66fc99e Initial load
duke
parents:
diff changeset
349
a61af66fc99e Initial load
duke
parents:
diff changeset
350 int StringTable::hash_string(jchar* s, int len) {
a61af66fc99e Initial load
duke
parents:
diff changeset
351 unsigned h = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
352 while (len-- > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
353 h = 31*h + (unsigned) *s;
a61af66fc99e Initial load
duke
parents:
diff changeset
354 s++;
a61af66fc99e Initial load
duke
parents:
diff changeset
355 }
a61af66fc99e Initial load
duke
parents:
diff changeset
356 return h;
a61af66fc99e Initial load
duke
parents:
diff changeset
357 }
a61af66fc99e Initial load
duke
parents:
diff changeset
358
a61af66fc99e Initial load
duke
parents:
diff changeset
359
a61af66fc99e Initial load
duke
parents:
diff changeset
360 StringTable* StringTable::_the_table = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
361
a61af66fc99e Initial load
duke
parents:
diff changeset
362 oop StringTable::lookup(int index, jchar* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
363 int len, unsigned int hash) {
a61af66fc99e Initial load
duke
parents:
diff changeset
364 for (HashtableEntry* l = bucket(index); l != NULL; l = l->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
365 if (l->hash() == hash) {
a61af66fc99e Initial load
duke
parents:
diff changeset
366 if (java_lang_String::equals(l->literal(), name, len)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
367 return l->literal();
a61af66fc99e Initial load
duke
parents:
diff changeset
368 }
a61af66fc99e Initial load
duke
parents:
diff changeset
369 }
a61af66fc99e Initial load
duke
parents:
diff changeset
370 }
a61af66fc99e Initial load
duke
parents:
diff changeset
371 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
372 }
a61af66fc99e Initial load
duke
parents:
diff changeset
373
a61af66fc99e Initial load
duke
parents:
diff changeset
374
a61af66fc99e Initial load
duke
parents:
diff changeset
375 oop StringTable::basic_add(int index, Handle string_or_null, jchar* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
376 int len, unsigned int hashValue, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
377 debug_only(StableMemoryChecker smc(name, len * sizeof(name[0])));
a61af66fc99e Initial load
duke
parents:
diff changeset
378 assert(!Universe::heap()->is_in_reserved(name) || GC_locker::is_active(),
a61af66fc99e Initial load
duke
parents:
diff changeset
379 "proposed name of symbol must be stable");
a61af66fc99e Initial load
duke
parents:
diff changeset
380
a61af66fc99e Initial load
duke
parents:
diff changeset
381 Handle string;
a61af66fc99e Initial load
duke
parents:
diff changeset
382 // try to reuse the string if possible
a61af66fc99e Initial load
duke
parents:
diff changeset
383 if (!string_or_null.is_null() && string_or_null()->is_perm()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
384 string = string_or_null;
a61af66fc99e Initial load
duke
parents:
diff changeset
385 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
386 string = java_lang_String::create_tenured_from_unicode(name, len, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
387 }
a61af66fc99e Initial load
duke
parents:
diff changeset
388
a61af66fc99e Initial load
duke
parents:
diff changeset
389 // Allocation must be done before grapping the SymbolTable_lock lock
a61af66fc99e Initial load
duke
parents:
diff changeset
390 MutexLocker ml(StringTable_lock, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
391
a61af66fc99e Initial load
duke
parents:
diff changeset
392 assert(java_lang_String::equals(string(), name, len),
a61af66fc99e Initial load
duke
parents:
diff changeset
393 "string must be properly initialized");
a61af66fc99e Initial load
duke
parents:
diff changeset
394
a61af66fc99e Initial load
duke
parents:
diff changeset
395 // Since look-up was done lock-free, we need to check if another
a61af66fc99e Initial load
duke
parents:
diff changeset
396 // thread beat us in the race to insert the symbol.
a61af66fc99e Initial load
duke
parents:
diff changeset
397
a61af66fc99e Initial load
duke
parents:
diff changeset
398 oop test = lookup(index, name, len, hashValue); // calls lookup(u1*, int)
a61af66fc99e Initial load
duke
parents:
diff changeset
399 if (test != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
400 // Entry already added
a61af66fc99e Initial load
duke
parents:
diff changeset
401 return test;
a61af66fc99e Initial load
duke
parents:
diff changeset
402 }
a61af66fc99e Initial load
duke
parents:
diff changeset
403
a61af66fc99e Initial load
duke
parents:
diff changeset
404 HashtableEntry* entry = new_entry(hashValue, string());
a61af66fc99e Initial load
duke
parents:
diff changeset
405 add_entry(index, entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
406 return string();
a61af66fc99e Initial load
duke
parents:
diff changeset
407 }
a61af66fc99e Initial load
duke
parents:
diff changeset
408
a61af66fc99e Initial load
duke
parents:
diff changeset
409
a61af66fc99e Initial load
duke
parents:
diff changeset
410 oop StringTable::lookup(symbolOop symbol) {
a61af66fc99e Initial load
duke
parents:
diff changeset
411 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
412 int length;
a61af66fc99e Initial load
duke
parents:
diff changeset
413 jchar* chars = symbol->as_unicode(length);
a61af66fc99e Initial load
duke
parents:
diff changeset
414 unsigned int hashValue = hash_string(chars, length);
a61af66fc99e Initial load
duke
parents:
diff changeset
415 int index = the_table()->hash_to_index(hashValue);
a61af66fc99e Initial load
duke
parents:
diff changeset
416 return the_table()->lookup(index, chars, length, hashValue);
a61af66fc99e Initial load
duke
parents:
diff changeset
417 }
a61af66fc99e Initial load
duke
parents:
diff changeset
418
a61af66fc99e Initial load
duke
parents:
diff changeset
419
a61af66fc99e Initial load
duke
parents:
diff changeset
420 oop StringTable::intern(Handle string_or_null, jchar* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
421 int len, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
422 unsigned int hashValue = hash_string(name, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
423 int index = the_table()->hash_to_index(hashValue);
a61af66fc99e Initial load
duke
parents:
diff changeset
424 oop string = the_table()->lookup(index, name, len, hashValue);
a61af66fc99e Initial load
duke
parents:
diff changeset
425
a61af66fc99e Initial load
duke
parents:
diff changeset
426 // Found
a61af66fc99e Initial load
duke
parents:
diff changeset
427 if (string != NULL) return string;
a61af66fc99e Initial load
duke
parents:
diff changeset
428
a61af66fc99e Initial load
duke
parents:
diff changeset
429 // Otherwise, add to symbol to table
a61af66fc99e Initial load
duke
parents:
diff changeset
430 return the_table()->basic_add(index, string_or_null, name, len,
a61af66fc99e Initial load
duke
parents:
diff changeset
431 hashValue, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
432 }
a61af66fc99e Initial load
duke
parents:
diff changeset
433
a61af66fc99e Initial load
duke
parents:
diff changeset
434 oop StringTable::intern(symbolOop symbol, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
435 if (symbol == NULL) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
436 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
437 int length;
a61af66fc99e Initial load
duke
parents:
diff changeset
438 jchar* chars = symbol->as_unicode(length);
a61af66fc99e Initial load
duke
parents:
diff changeset
439 Handle string;
a61af66fc99e Initial load
duke
parents:
diff changeset
440 oop result = intern(string, chars, length, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
441 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
442 }
a61af66fc99e Initial load
duke
parents:
diff changeset
443
a61af66fc99e Initial load
duke
parents:
diff changeset
444
a61af66fc99e Initial load
duke
parents:
diff changeset
445 oop StringTable::intern(oop string, TRAPS)
a61af66fc99e Initial load
duke
parents:
diff changeset
446 {
a61af66fc99e Initial load
duke
parents:
diff changeset
447 if (string == NULL) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
448 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
449 int length;
a61af66fc99e Initial load
duke
parents:
diff changeset
450 Handle h_string (THREAD, string);
a61af66fc99e Initial load
duke
parents:
diff changeset
451 jchar* chars = java_lang_String::as_unicode_string(string, length);
a61af66fc99e Initial load
duke
parents:
diff changeset
452 oop result = intern(h_string, chars, length, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
453 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
454 }
a61af66fc99e Initial load
duke
parents:
diff changeset
455
a61af66fc99e Initial load
duke
parents:
diff changeset
456
a61af66fc99e Initial load
duke
parents:
diff changeset
457 oop StringTable::intern(const char* utf8_string, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
458 if (utf8_string == NULL) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
459 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
460 int length = UTF8::unicode_length(utf8_string);
a61af66fc99e Initial load
duke
parents:
diff changeset
461 jchar* chars = NEW_RESOURCE_ARRAY(jchar, length);
a61af66fc99e Initial load
duke
parents:
diff changeset
462 UTF8::convert_to_unicode(utf8_string, chars, length);
a61af66fc99e Initial load
duke
parents:
diff changeset
463 Handle string;
a61af66fc99e Initial load
duke
parents:
diff changeset
464 oop result = intern(string, chars, length, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
465 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
466 }
a61af66fc99e Initial load
duke
parents:
diff changeset
467
a61af66fc99e Initial load
duke
parents:
diff changeset
468 void StringTable::verify() {
a61af66fc99e Initial load
duke
parents:
diff changeset
469 for (int i = 0; i < the_table()->table_size(); ++i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
470 HashtableEntry* p = the_table()->bucket(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
471 for ( ; p != NULL; p = p->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
472 oop s = p->literal();
a61af66fc99e Initial load
duke
parents:
diff changeset
473 guarantee(s != NULL, "interned string is NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
474 guarantee(s->is_perm(), "interned string not in permspace");
a61af66fc99e Initial load
duke
parents:
diff changeset
475
a61af66fc99e Initial load
duke
parents:
diff changeset
476 int length;
a61af66fc99e Initial load
duke
parents:
diff changeset
477 jchar* chars = java_lang_String::as_unicode_string(s, length);
a61af66fc99e Initial load
duke
parents:
diff changeset
478 unsigned int h = hash_string(chars, length);
a61af66fc99e Initial load
duke
parents:
diff changeset
479 guarantee(p->hash() == h, "broken hash in string table entry");
a61af66fc99e Initial load
duke
parents:
diff changeset
480 guarantee(the_table()->hash_to_index(h) == i,
a61af66fc99e Initial load
duke
parents:
diff changeset
481 "wrong index in string table");
a61af66fc99e Initial load
duke
parents:
diff changeset
482 }
a61af66fc99e Initial load
duke
parents:
diff changeset
483 }
a61af66fc99e Initial load
duke
parents:
diff changeset
484 }