author | dcubed |
Wed, 18 Sep 2013 07:02:10 -0700 | |
changeset 20053 | a12bd7991794 |
parent 18091 | ddde9f0f414d |
child 20085 | f27fdaa8f89a |
child 20282 | 7f9cbdf89af2 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
15934
104ff83451f1
8009829: CDS: JDK JPRT test fails crash in Symbol::equals()
coleenp
parents:
14742
diff
changeset
|
2 |
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2332
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2332
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2332
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
13087 | 26 |
#include "classfile/altHashing.hpp" |
7397 | 27 |
#include "classfile/javaClasses.hpp" |
28 |
#include "classfile/symbolTable.hpp" |
|
29 |
#include "classfile/systemDictionary.hpp" |
|
30 |
#include "gc_interface/collectedHeap.inline.hpp" |
|
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
31 |
#include "memory/allocation.inline.hpp" |
7397 | 32 |
#include "memory/filemap.hpp" |
33 |
#include "memory/gcLocker.inline.hpp" |
|
34 |
#include "oops/oop.inline.hpp" |
|
35 |
#include "oops/oop.inline2.hpp" |
|
36 |
#include "runtime/mutexLocker.hpp" |
|
37 |
#include "utilities/hashtable.inline.hpp" |
|
1 | 38 |
|
39 |
// -------------------------------------------------------------------------- |
|
40 |
||
41 |
SymbolTable* SymbolTable::_the_table = NULL; |
|
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
42 |
// Static arena for symbols that are not deallocated |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
43 |
Arena* SymbolTable::_arena = NULL; |
13087 | 44 |
bool SymbolTable::_needs_rehashing = false; |
1 | 45 |
|
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
46 |
Symbol* SymbolTable::allocate_symbol(const u1* name, int len, bool c_heap, TRAPS) { |
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
47 |
assert (len <= Symbol::max_length(), "should be checked by caller"); |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
48 |
|
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
49 |
Symbol* sym; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13199
diff
changeset
|
50 |
|
15934
104ff83451f1
8009829: CDS: JDK JPRT test fails crash in Symbol::equals()
coleenp
parents:
14742
diff
changeset
|
51 |
if (DumpSharedSpaces) { |
104ff83451f1
8009829: CDS: JDK JPRT test fails crash in Symbol::equals()
coleenp
parents:
14742
diff
changeset
|
52 |
// Allocate all symbols to CLD shared metaspace |
104ff83451f1
8009829: CDS: JDK JPRT test fails crash in Symbol::equals()
coleenp
parents:
14742
diff
changeset
|
53 |
sym = new (len, ClassLoaderData::the_null_class_loader_data(), THREAD) Symbol(name, len, -1); |
104ff83451f1
8009829: CDS: JDK JPRT test fails crash in Symbol::equals()
coleenp
parents:
14742
diff
changeset
|
54 |
} else if (c_heap) { |
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
55 |
// refcount starts as 1 |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
56 |
sym = new (len, THREAD) Symbol(name, len, 1); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13199
diff
changeset
|
57 |
assert(sym != NULL, "new should call vm_exit_out_of_memory if C_HEAP is exhausted"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13199
diff
changeset
|
58 |
} else { |
15934
104ff83451f1
8009829: CDS: JDK JPRT test fails crash in Symbol::equals()
coleenp
parents:
14742
diff
changeset
|
59 |
// Allocate to global arena |
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
60 |
sym = new (len, arena(), THREAD) Symbol(name, len, -1); |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
61 |
} |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
62 |
return sym; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
63 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
64 |
|
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
65 |
void SymbolTable::initialize_symbols(int arena_alloc_size) { |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
66 |
// Initialize the arena for global symbols, size passed in depends on CDS. |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
67 |
if (arena_alloc_size == 0) { |
13195 | 68 |
_arena = new (mtSymbol) Arena(); |
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
69 |
} else { |
13195 | 70 |
_arena = new (mtSymbol) Arena(arena_alloc_size); |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
71 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
72 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
73 |
|
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
74 |
// Call function for all symbols in the symbol table. |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
75 |
void SymbolTable::symbols_do(SymbolClosure *cl) { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
76 |
const int n = the_table()->table_size(); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
77 |
for (int i = 0; i < n; i++) { |
13195 | 78 |
for (HashtableEntry<Symbol*, mtSymbol>* p = the_table()->bucket(i); |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
79 |
p != NULL; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
80 |
p = p->next()) { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
81 |
cl->do_symbol(p->literal_addr()); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
82 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
83 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
84 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
85 |
|
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
86 |
int SymbolTable::symbols_removed = 0; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
87 |
int SymbolTable::symbols_counted = 0; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
88 |
|
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
89 |
// Remove unreferenced symbols from the symbol table |
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
90 |
// This is done late during GC. |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
91 |
void SymbolTable::unlink() { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
92 |
int removed = 0; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
93 |
int total = 0; |
8655
fec854507832
7024584: Symbol printouts shouldnt be under PrintGCDetails
coleenp
parents:
8076
diff
changeset
|
94 |
size_t memory_total = 0; |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
95 |
for (int i = 0; i < the_table()->table_size(); ++i) { |
13195 | 96 |
HashtableEntry<Symbol*, mtSymbol>** p = the_table()->bucket_addr(i); |
97 |
HashtableEntry<Symbol*, mtSymbol>* entry = the_table()->bucket(i); |
|
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
98 |
while (entry != NULL) { |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
99 |
// Shared entries are normally at the end of the bucket and if we run into |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
100 |
// a shared entry, then there is nothing more to remove. However, if we |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
101 |
// have rehashed the table, then the shared entries are no longer at the |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
102 |
// end of the bucket. |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
103 |
if (entry->is_shared() && !use_alternate_hashcode()) { |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
104 |
break; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
105 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
106 |
Symbol* s = entry->literal(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13199
diff
changeset
|
107 |
memory_total += s->size(); |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
108 |
total++; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
109 |
assert(s != NULL, "just checking"); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
110 |
// If reference count is zero, remove. |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
111 |
if (s->refcount() == 0) { |
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
112 |
assert(!entry->is_shared(), "shared entries should be kept live"); |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
113 |
delete s; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
114 |
removed++; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
115 |
*p = entry->next(); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
116 |
the_table()->free_entry(entry); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
117 |
} else { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
118 |
p = entry->next_addr(); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
119 |
} |
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
120 |
// get next entry |
13195 | 121 |
entry = (HashtableEntry<Symbol*, mtSymbol>*)HashtableEntry<Symbol*, mtSymbol>::make_ptr(*p); |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
122 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
123 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
124 |
symbols_removed += removed; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
125 |
symbols_counted += total; |
8655
fec854507832
7024584: Symbol printouts shouldnt be under PrintGCDetails
coleenp
parents:
8076
diff
changeset
|
126 |
// Exclude printing for normal PrintGCDetails because people parse |
fec854507832
7024584: Symbol printouts shouldnt be under PrintGCDetails
coleenp
parents:
8076
diff
changeset
|
127 |
// this output. |
fec854507832
7024584: Symbol printouts shouldnt be under PrintGCDetails
coleenp
parents:
8076
diff
changeset
|
128 |
if (PrintGCDetails && Verbose && WizardMode) { |
fec854507832
7024584: Symbol printouts shouldnt be under PrintGCDetails
coleenp
parents:
8076
diff
changeset
|
129 |
gclog_or_tty->print(" [Symbols=%d size=" SIZE_FORMAT "K] ", total, |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
130 |
(memory_total*HeapWordSize)/1024); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
131 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
132 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
133 |
|
13087 | 134 |
// Create a new table and using alternate hash code, populate the new table |
135 |
// with the existing strings. Set flag to use the alternate hash code afterwards. |
|
136 |
void SymbolTable::rehash_table() { |
|
137 |
assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint"); |
|
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
138 |
// This should never happen with -Xshare:dump but it might in testing mode. |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
139 |
if (DumpSharedSpaces) return; |
13087 | 140 |
// Create a new symbol table |
141 |
SymbolTable* new_table = new SymbolTable(); |
|
142 |
||
143 |
the_table()->move_to(new_table); |
|
144 |
||
145 |
// Delete the table and buckets (entries are reused in new table). |
|
146 |
delete _the_table; |
|
147 |
// Don't check if we need rehashing until the table gets unbalanced again. |
|
148 |
// Then rehash with a new global seed. |
|
149 |
_needs_rehashing = false; |
|
150 |
_the_table = new_table; |
|
151 |
} |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
152 |
|
1 | 153 |
// Lookup a symbol in a bucket. |
154 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
155 |
Symbol* SymbolTable::lookup(int index, const char* name, |
1 | 156 |
int len, unsigned int hash) { |
13087 | 157 |
int count = 0; |
13195 | 158 |
for (HashtableEntry<Symbol*, mtSymbol>* e = bucket(index); e != NULL; e = e->next()) { |
13087 | 159 |
count++; // count all entries in this bucket, not just ones with same hash |
1 | 160 |
if (e->hash() == hash) { |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
161 |
Symbol* sym = e->literal(); |
1 | 162 |
if (sym->equals(name, len)) { |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
163 |
// something is referencing this symbol now. |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
164 |
sym->increment_refcount(); |
1 | 165 |
return sym; |
166 |
} |
|
167 |
} |
|
168 |
} |
|
13087 | 169 |
// If the bucket size is too deep check if this hash code is insufficient. |
13195 | 170 |
if (count >= BasicHashtable<mtSymbol>::rehash_count && !needs_rehashing()) { |
13087 | 171 |
_needs_rehashing = check_rehash_table(count); |
172 |
} |
|
1 | 173 |
return NULL; |
174 |
} |
|
175 |
||
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
176 |
// Pick hashing algorithm. |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
177 |
unsigned int SymbolTable::hash_symbol(const char* s, int len) { |
13087 | 178 |
return use_alternate_hashcode() ? |
179 |
AltHashing::murmur3_32(seed(), (const jbyte*)s, len) : |
|
14742
b2a47eb99404
8004661: Comment and function name java_lang_String::toHash is wrong
brutisso
parents:
13728
diff
changeset
|
180 |
java_lang_String::hash_code(s, len); |
13087 | 181 |
} |
182 |
||
1 | 183 |
|
184 |
// We take care not to be blocking while holding the |
|
185 |
// SymbolTable_lock. Otherwise, the system might deadlock, since the |
|
186 |
// symboltable is used during compilation (VM_thread) The lock free |
|
187 |
// synchronization is simplified by the fact that we do not delete |
|
188 |
// entries in the symbol table during normal execution (only during |
|
189 |
// safepoints). |
|
190 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
191 |
Symbol* SymbolTable::lookup(const char* name, int len, TRAPS) { |
1 | 192 |
unsigned int hashValue = hash_symbol(name, len); |
193 |
int index = the_table()->hash_to_index(hashValue); |
|
194 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
195 |
Symbol* s = the_table()->lookup(index, name, len, hashValue); |
1 | 196 |
|
197 |
// Found |
|
198 |
if (s != NULL) return s; |
|
199 |
||
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
200 |
// Grab SymbolTable_lock first. |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
201 |
MutexLocker ml(SymbolTable_lock, THREAD); |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
202 |
|
1 | 203 |
// Otherwise, add to symbol to table |
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
204 |
return the_table()->basic_add(index, (u1*)name, len, hashValue, true, CHECK_NULL); |
1 | 205 |
} |
206 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
207 |
Symbol* SymbolTable::lookup(const Symbol* sym, int begin, int end, TRAPS) { |
1 | 208 |
char* buffer; |
209 |
int index, len; |
|
210 |
unsigned int hashValue; |
|
211 |
char* name; |
|
212 |
{ |
|
213 |
debug_only(No_Safepoint_Verifier nsv;) |
|
214 |
||
215 |
name = (char*)sym->base() + begin; |
|
216 |
len = end - begin; |
|
217 |
hashValue = hash_symbol(name, len); |
|
218 |
index = the_table()->hash_to_index(hashValue); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
219 |
Symbol* s = the_table()->lookup(index, name, len, hashValue); |
1 | 220 |
|
221 |
// Found |
|
222 |
if (s != NULL) return s; |
|
223 |
} |
|
224 |
||
225 |
// Otherwise, add to symbol to table. Copy to a C string first. |
|
226 |
char stack_buf[128]; |
|
227 |
ResourceMark rm(THREAD); |
|
228 |
if (len <= 128) { |
|
229 |
buffer = stack_buf; |
|
230 |
} else { |
|
231 |
buffer = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, len); |
|
232 |
} |
|
233 |
for (int i=0; i<len; i++) { |
|
234 |
buffer[i] = name[i]; |
|
235 |
} |
|
236 |
// Make sure there is no safepoint in the code above since name can't move. |
|
237 |
// We can't include the code in No_Safepoint_Verifier because of the |
|
238 |
// ResourceMark. |
|
239 |
||
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
240 |
// Grab SymbolTable_lock first. |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
241 |
MutexLocker ml(SymbolTable_lock, THREAD); |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
242 |
|
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
243 |
return the_table()->basic_add(index, (u1*)buffer, len, hashValue, true, CHECK_NULL); |
1 | 244 |
} |
245 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
246 |
Symbol* SymbolTable::lookup_only(const char* name, int len, |
1 | 247 |
unsigned int& hash) { |
248 |
hash = hash_symbol(name, len); |
|
249 |
int index = the_table()->hash_to_index(hash); |
|
250 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
251 |
Symbol* s = the_table()->lookup(index, name, len, hash); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
252 |
return s; |
1 | 253 |
} |
254 |
||
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
255 |
// Look up the address of the literal in the SymbolTable for this Symbol* |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
256 |
// Do not create any new symbols |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
257 |
// Do not increment the reference count to keep this alive |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
258 |
Symbol** SymbolTable::lookup_symbol_addr(Symbol* sym){ |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
259 |
unsigned int hash = hash_symbol((char*)sym->bytes(), sym->utf8_length()); |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
260 |
int index = the_table()->hash_to_index(hash); |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
261 |
|
13195 | 262 |
for (HashtableEntry<Symbol*, mtSymbol>* e = the_table()->bucket(index); e != NULL; e = e->next()) { |
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
263 |
if (e->hash() == hash) { |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
264 |
Symbol* literal_sym = e->literal(); |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
265 |
if (sym == literal_sym) { |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
266 |
return e->literal_addr(); |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
267 |
} |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
268 |
} |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
269 |
} |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
270 |
return NULL; |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
271 |
} |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
272 |
|
2332
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
273 |
// Suggestion: Push unicode-based lookup all the way into the hashing |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
274 |
// and probing logic, so there is no need for convert_to_utf8 until |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
275 |
// an actual new Symbol* is created. |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
276 |
Symbol* SymbolTable::lookup_unicode(const jchar* name, int utf16_length, TRAPS) { |
2332
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
277 |
int utf8_length = UNICODE::utf8_length((jchar*) name, utf16_length); |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
278 |
char stack_buf[128]; |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
279 |
if (utf8_length < (int) sizeof(stack_buf)) { |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
280 |
char* chars = stack_buf; |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
281 |
UNICODE::convert_to_utf8(name, utf16_length, chars); |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
282 |
return lookup(chars, utf8_length, THREAD); |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
283 |
} else { |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
284 |
ResourceMark rm(THREAD); |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
285 |
char* chars = NEW_RESOURCE_ARRAY(char, utf8_length + 1);; |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
286 |
UNICODE::convert_to_utf8(name, utf16_length, chars); |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
287 |
return lookup(chars, utf8_length, THREAD); |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
288 |
} |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
289 |
} |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
290 |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
291 |
Symbol* SymbolTable::lookup_only_unicode(const jchar* name, int utf16_length, |
2332
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
292 |
unsigned int& hash) { |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
293 |
int utf8_length = UNICODE::utf8_length((jchar*) name, utf16_length); |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
294 |
char stack_buf[128]; |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
295 |
if (utf8_length < (int) sizeof(stack_buf)) { |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
296 |
char* chars = stack_buf; |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
297 |
UNICODE::convert_to_utf8(name, utf16_length, chars); |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
298 |
return lookup_only(chars, utf8_length, hash); |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
299 |
} else { |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
300 |
ResourceMark rm; |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
301 |
char* chars = NEW_RESOURCE_ARRAY(char, utf8_length + 1);; |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
302 |
UNICODE::convert_to_utf8(name, utf16_length, chars); |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
303 |
return lookup_only(chars, utf8_length, hash); |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
304 |
} |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
305 |
} |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
2131
diff
changeset
|
306 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13199
diff
changeset
|
307 |
void SymbolTable::add(ClassLoaderData* loader_data, constantPoolHandle cp, |
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
308 |
int names_count, |
1 | 309 |
const char** names, int* lengths, int* cp_indices, |
310 |
unsigned int* hashValues, TRAPS) { |
|
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
311 |
// Grab SymbolTable_lock first. |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
312 |
MutexLocker ml(SymbolTable_lock, THREAD); |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
313 |
|
1 | 314 |
SymbolTable* table = the_table(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13199
diff
changeset
|
315 |
bool added = table->basic_add(loader_data, cp, names_count, names, lengths, |
1 | 316 |
cp_indices, hashValues, CHECK); |
317 |
if (!added) { |
|
318 |
// do it the hard way |
|
319 |
for (int i=0; i<names_count; i++) { |
|
320 |
int index = table->hash_to_index(hashValues[i]); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13199
diff
changeset
|
321 |
bool c_heap = !loader_data->is_the_null_class_loader_data(); |
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
322 |
Symbol* sym = table->basic_add(index, (u1*)names[i], lengths[i], hashValues[i], c_heap, CHECK); |
1 | 323 |
cp->symbol_at_put(cp_indices[i], sym); |
324 |
} |
|
325 |
} |
|
326 |
} |
|
327 |
||
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
328 |
Symbol* SymbolTable::new_permanent_symbol(const char* name, TRAPS) { |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
329 |
unsigned int hash; |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
330 |
Symbol* result = SymbolTable::lookup_only((char*)name, (int)strlen(name), hash); |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
331 |
if (result != NULL) { |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
332 |
return result; |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
333 |
} |
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
334 |
// Grab SymbolTable_lock first. |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
335 |
MutexLocker ml(SymbolTable_lock, THREAD); |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
336 |
|
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
337 |
SymbolTable* table = the_table(); |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
338 |
int index = table->hash_to_index(hash); |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
339 |
return table->basic_add(index, (u1*)name, (int)strlen(name), hash, false, THREAD); |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
340 |
} |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
341 |
|
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
342 |
Symbol* SymbolTable::basic_add(int index_arg, u1 *name, int len, |
13087 | 343 |
unsigned int hashValue_arg, bool c_heap, TRAPS) { |
1 | 344 |
assert(!Universe::heap()->is_in_reserved(name) || GC_locker::is_active(), |
345 |
"proposed name of symbol must be stable"); |
|
346 |
||
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
347 |
// Don't allow symbols to be created which cannot fit in a Symbol*. |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
348 |
if (len > Symbol::max_length()) { |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
349 |
THROW_MSG_0(vmSymbols::java_lang_InternalError(), |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
350 |
"name is too long to represent"); |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
351 |
} |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
352 |
|
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
353 |
// Cannot hit a safepoint in this function because the "this" pointer can move. |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
354 |
No_Safepoint_Verifier nsv; |
1 | 355 |
|
13087 | 356 |
// Check if the symbol table has been rehashed, if so, need to recalculate |
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
357 |
// the hash value and index. |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
358 |
unsigned int hashValue; |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
359 |
int index; |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
360 |
if (use_alternate_hashcode()) { |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
361 |
hashValue = hash_symbol((const char*)name, len); |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
362 |
index = hash_to_index(hashValue); |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
363 |
} else { |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
364 |
hashValue = hashValue_arg; |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
365 |
index = index_arg; |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
366 |
} |
13087 | 367 |
|
1 | 368 |
// Since look-up was done lock-free, we need to check if another |
369 |
// thread beat us in the race to insert the symbol. |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
370 |
Symbol* test = lookup(index, (char*)name, len, hashValue); |
1 | 371 |
if (test != NULL) { |
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
372 |
// A race occurred and another thread introduced the symbol. |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
373 |
assert(test->refcount() != 0, "lookup should have incremented the count"); |
1 | 374 |
return test; |
375 |
} |
|
376 |
||
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
377 |
// Create a new symbol. |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
378 |
Symbol* sym = allocate_symbol(name, len, c_heap, CHECK_NULL); |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
379 |
assert(sym->equals((char*)name, len), "symbol must be properly initialized"); |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
380 |
|
13195 | 381 |
HashtableEntry<Symbol*, mtSymbol>* entry = new_entry(hashValue, sym); |
1 | 382 |
add_entry(index, entry); |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
383 |
return sym; |
1 | 384 |
} |
385 |
||
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
386 |
// This version of basic_add adds symbols in batch from the constant pool |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
387 |
// parsing. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13199
diff
changeset
|
388 |
bool SymbolTable::basic_add(ClassLoaderData* loader_data, constantPoolHandle cp, |
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
389 |
int names_count, |
1 | 390 |
const char** names, int* lengths, |
391 |
int* cp_indices, unsigned int* hashValues, |
|
392 |
TRAPS) { |
|
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
393 |
|
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
394 |
// Check symbol names are not too long. If any are too long, don't add any. |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
395 |
for (int i = 0; i< names_count; i++) { |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
396 |
if (lengths[i] > Symbol::max_length()) { |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
397 |
THROW_MSG_0(vmSymbols::java_lang_InternalError(), |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
398 |
"name is too long to represent"); |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
399 |
} |
1 | 400 |
} |
401 |
||
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
402 |
// Cannot hit a safepoint in this function because the "this" pointer can move. |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
403 |
No_Safepoint_Verifier nsv; |
1 | 404 |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
405 |
for (int i=0; i<names_count; i++) { |
13087 | 406 |
// Check if the symbol table has been rehashed, if so, need to recalculate |
407 |
// the hash value. |
|
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
408 |
unsigned int hashValue; |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
409 |
if (use_alternate_hashcode()) { |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
410 |
hashValue = hash_symbol(names[i], lengths[i]); |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
411 |
} else { |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
412 |
hashValue = hashValues[i]; |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
413 |
} |
1 | 414 |
// Since look-up was done lock-free, we need to check if another |
415 |
// thread beat us in the race to insert the symbol. |
|
13087 | 416 |
int index = hash_to_index(hashValue); |
417 |
Symbol* test = lookup(index, names[i], lengths[i], hashValue); |
|
1 | 418 |
if (test != NULL) { |
2131 | 419 |
// A race occurred and another thread introduced the symbol, this one |
1 | 420 |
// will be dropped and collected. Use test instead. |
421 |
cp->symbol_at_put(cp_indices[i], test); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
422 |
assert(test->refcount() != 0, "lookup should have incremented the count"); |
1 | 423 |
} else { |
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
424 |
// Create a new symbol. The null class loader is never unloaded so these |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
425 |
// are allocated specially in a permanent arena. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13199
diff
changeset
|
426 |
bool c_heap = !loader_data->is_the_null_class_loader_data(); |
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
427 |
Symbol* sym = allocate_symbol((const u1*)names[i], lengths[i], c_heap, CHECK_(false)); |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
428 |
assert(sym->equals(names[i], lengths[i]), "symbol must be properly initialized"); // why wouldn't it be??? |
13195 | 429 |
HashtableEntry<Symbol*, mtSymbol>* entry = new_entry(hashValue, sym); |
1 | 430 |
add_entry(index, entry); |
431 |
cp->symbol_at_put(cp_indices[i], sym); |
|
432 |
} |
|
433 |
} |
|
434 |
return true; |
|
435 |
} |
|
436 |
||
437 |
||
438 |
void SymbolTable::verify() { |
|
439 |
for (int i = 0; i < the_table()->table_size(); ++i) { |
|
13195 | 440 |
HashtableEntry<Symbol*, mtSymbol>* p = the_table()->bucket(i); |
1 | 441 |
for ( ; p != NULL; p = p->next()) { |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
442 |
Symbol* s = (Symbol*)(p->literal()); |
1 | 443 |
guarantee(s != NULL, "symbol is NULL"); |
444 |
unsigned int h = hash_symbol((char*)s->bytes(), s->utf8_length()); |
|
445 |
guarantee(p->hash() == h, "broken hash in symbol table entry"); |
|
446 |
guarantee(the_table()->hash_to_index(h) == i, |
|
447 |
"wrong index in symbol table"); |
|
448 |
} |
|
449 |
} |
|
450 |
} |
|
451 |
||
13087 | 452 |
void SymbolTable::dump(outputStream* st) { |
17610
c6857feaac47
8014262: PrintStringTableStatistics should include more footprint info
iklam
parents:
17081
diff
changeset
|
453 |
the_table()->dump_table(st, "SymbolTable"); |
13087 | 454 |
} |
455 |
||
1 | 456 |
|
457 |
//--------------------------------------------------------------------------- |
|
458 |
// Non-product code |
|
459 |
||
460 |
#ifndef PRODUCT |
|
461 |
||
462 |
void SymbolTable::print_histogram() { |
|
463 |
MutexLocker ml(SymbolTable_lock); |
|
464 |
const int results_length = 100; |
|
465 |
int results[results_length]; |
|
466 |
int i,j; |
|
467 |
||
468 |
// initialize results to zero |
|
469 |
for (j = 0; j < results_length; j++) { |
|
470 |
results[j] = 0; |
|
471 |
} |
|
472 |
||
473 |
int total = 0; |
|
474 |
int max_symbols = 0; |
|
475 |
int out_of_range = 0; |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
476 |
int memory_total = 0; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
477 |
int count = 0; |
1 | 478 |
for (i = 0; i < the_table()->table_size(); i++) { |
13195 | 479 |
HashtableEntry<Symbol*, mtSymbol>* p = the_table()->bucket(i); |
1 | 480 |
for ( ; p != NULL; p = p->next()) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13199
diff
changeset
|
481 |
memory_total += p->literal()->size(); |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
482 |
count++; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
483 |
int counter = p->literal()->utf8_length(); |
1 | 484 |
total += counter; |
485 |
if (counter < results_length) { |
|
486 |
results[counter]++; |
|
487 |
} else { |
|
488 |
out_of_range++; |
|
489 |
} |
|
490 |
max_symbols = MAX2(max_symbols, counter); |
|
491 |
} |
|
492 |
} |
|
493 |
tty->print_cr("Symbol Table:"); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
494 |
tty->print_cr("Total number of symbols %5d", count); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
495 |
tty->print_cr("Total size in memory %5dK", |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
496 |
(memory_total*HeapWordSize)/1024); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
497 |
tty->print_cr("Total counted %5d", symbols_counted); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
498 |
tty->print_cr("Total removed %5d", symbols_removed); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
499 |
if (symbols_counted > 0) { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
500 |
tty->print_cr("Percent removed %3.2f", |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
501 |
((float)symbols_removed/(float)symbols_counted)* 100); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
502 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
503 |
tty->print_cr("Reference counts %5d", Symbol::_total_count); |
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
504 |
tty->print_cr("Symbol arena size %5d used %5d", |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
505 |
arena()->size_in_bytes(), arena()->used()); |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
506 |
tty->print_cr("Histogram of symbol length:"); |
1 | 507 |
tty->print_cr("%8s %5d", "Total ", total); |
508 |
tty->print_cr("%8s %5d", "Maximum", max_symbols); |
|
509 |
tty->print_cr("%8s %3.2f", "Average", |
|
510 |
((float) total / (float) the_table()->table_size())); |
|
511 |
tty->print_cr("%s", "Histogram:"); |
|
512 |
tty->print_cr(" %s %29s", "Length", "Number chains that length"); |
|
513 |
for (i = 0; i < results_length; i++) { |
|
514 |
if (results[i] > 0) { |
|
515 |
tty->print_cr("%6d %10d", i, results[i]); |
|
516 |
} |
|
517 |
} |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
518 |
if (Verbose) { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
519 |
int line_length = 70; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
520 |
tty->print_cr("%s %30s", " Length", "Number chains that length"); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
521 |
for (i = 0; i < results_length; i++) { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
522 |
if (results[i] > 0) { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
523 |
tty->print("%4d", i); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
524 |
for (j = 0; (j < results[i]) && (j < line_length); j++) { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
525 |
tty->print("%1s", "*"); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
526 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
527 |
if (j == line_length) { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
528 |
tty->print("%1s", "+"); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
529 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
530 |
tty->cr(); |
1 | 531 |
} |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
532 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
533 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
534 |
tty->print_cr(" %s %d: %d\n", "Number chains longer than", |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
535 |
results_length, out_of_range); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
536 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
537 |
|
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
538 |
void SymbolTable::print() { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
539 |
for (int i = 0; i < the_table()->table_size(); ++i) { |
13195 | 540 |
HashtableEntry<Symbol*, mtSymbol>** p = the_table()->bucket_addr(i); |
541 |
HashtableEntry<Symbol*, mtSymbol>* entry = the_table()->bucket(i); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
542 |
if (entry != NULL) { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
543 |
while (entry != NULL) { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
544 |
tty->print(PTR_FORMAT " ", entry->literal()); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
545 |
entry->literal()->print(); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
546 |
tty->print(" %d", entry->literal()->refcount()); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
547 |
p = entry->next_addr(); |
13195 | 548 |
entry = (HashtableEntry<Symbol*, mtSymbol>*)HashtableEntry<Symbol*, mtSymbol>::make_ptr(*p); |
1 | 549 |
} |
550 |
tty->cr(); |
|
551 |
} |
|
552 |
} |
|
553 |
} |
|
554 |
#endif // PRODUCT |
|
555 |
||
556 |
// -------------------------------------------------------------------------- |
|
557 |
||
558 |
#ifdef ASSERT |
|
559 |
class StableMemoryChecker : public StackObj { |
|
560 |
enum { _bufsize = wordSize*4 }; |
|
561 |
||
562 |
address _region; |
|
563 |
jint _size; |
|
564 |
u1 _save_buf[_bufsize]; |
|
565 |
||
566 |
int sample(u1* save_buf) { |
|
567 |
if (_size <= _bufsize) { |
|
568 |
memcpy(save_buf, _region, _size); |
|
569 |
return _size; |
|
570 |
} else { |
|
571 |
// copy head and tail |
|
572 |
memcpy(&save_buf[0], _region, _bufsize/2); |
|
573 |
memcpy(&save_buf[_bufsize/2], _region + _size - _bufsize/2, _bufsize/2); |
|
574 |
return (_bufsize/2)*2; |
|
575 |
} |
|
576 |
} |
|
577 |
||
578 |
public: |
|
579 |
StableMemoryChecker(const void* region, jint size) { |
|
580 |
_region = (address) region; |
|
581 |
_size = size; |
|
582 |
sample(_save_buf); |
|
583 |
} |
|
584 |
||
585 |
bool verify() { |
|
586 |
u1 check_buf[sizeof(_save_buf)]; |
|
587 |
int check_size = sample(check_buf); |
|
588 |
return (0 == memcmp(_save_buf, check_buf, check_size)); |
|
589 |
} |
|
590 |
||
591 |
void set_region(const void* region) { _region = (address) region; } |
|
592 |
}; |
|
593 |
#endif |
|
594 |
||
595 |
||
596 |
// -------------------------------------------------------------------------- |
|
597 |
StringTable* StringTable::_the_table = NULL; |
|
598 |
||
13087 | 599 |
bool StringTable::_needs_rehashing = false; |
600 |
||
18091
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
601 |
volatile int StringTable::_parallel_claimed_idx = 0; |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
602 |
|
13087 | 603 |
// Pick hashing algorithm |
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
604 |
unsigned int StringTable::hash_string(const jchar* s, int len) { |
13087 | 605 |
return use_alternate_hashcode() ? AltHashing::murmur3_32(seed(), s, len) : |
14742
b2a47eb99404
8004661: Comment and function name java_lang_String::toHash is wrong
brutisso
parents:
13728
diff
changeset
|
606 |
java_lang_String::hash_code(s, len); |
13087 | 607 |
} |
608 |
||
1 | 609 |
oop StringTable::lookup(int index, jchar* name, |
610 |
int len, unsigned int hash) { |
|
13087 | 611 |
int count = 0; |
13195 | 612 |
for (HashtableEntry<oop, mtSymbol>* l = bucket(index); l != NULL; l = l->next()) { |
13087 | 613 |
count++; |
1 | 614 |
if (l->hash() == hash) { |
615 |
if (java_lang_String::equals(l->literal(), name, len)) { |
|
616 |
return l->literal(); |
|
617 |
} |
|
618 |
} |
|
619 |
} |
|
13087 | 620 |
// If the bucket size is too deep check if this hash code is insufficient. |
13195 | 621 |
if (count >= BasicHashtable<mtSymbol>::rehash_count && !needs_rehashing()) { |
13087 | 622 |
_needs_rehashing = check_rehash_table(count); |
623 |
} |
|
1 | 624 |
return NULL; |
625 |
} |
|
626 |
||
627 |
||
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
628 |
oop StringTable::basic_add(int index_arg, Handle string, jchar* name, |
13087 | 629 |
int len, unsigned int hashValue_arg, TRAPS) { |
1 | 630 |
|
631 |
assert(java_lang_String::equals(string(), name, len), |
|
632 |
"string must be properly initialized"); |
|
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
633 |
// Cannot hit a safepoint in this function because the "this" pointer can move. |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
634 |
No_Safepoint_Verifier nsv; |
1 | 635 |
|
13087 | 636 |
// Check if the symbol table has been rehashed, if so, need to recalculate |
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
637 |
// the hash value and index before second lookup. |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
638 |
unsigned int hashValue; |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
639 |
int index; |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
640 |
if (use_alternate_hashcode()) { |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
641 |
hashValue = hash_string(name, len); |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
642 |
index = hash_to_index(hashValue); |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
643 |
} else { |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
644 |
hashValue = hashValue_arg; |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
645 |
index = index_arg; |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
646 |
} |
13087 | 647 |
|
1 | 648 |
// Since look-up was done lock-free, we need to check if another |
649 |
// thread beat us in the race to insert the symbol. |
|
650 |
||
651 |
oop test = lookup(index, name, len, hashValue); // calls lookup(u1*, int) |
|
652 |
if (test != NULL) { |
|
653 |
// Entry already added |
|
654 |
return test; |
|
655 |
} |
|
656 |
||
13195 | 657 |
HashtableEntry<oop, mtSymbol>* entry = new_entry(hashValue, string()); |
1 | 658 |
add_entry(index, entry); |
659 |
return string(); |
|
660 |
} |
|
661 |
||
662 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
663 |
oop StringTable::lookup(Symbol* symbol) { |
1 | 664 |
ResourceMark rm; |
665 |
int length; |
|
666 |
jchar* chars = symbol->as_unicode(length); |
|
16601 | 667 |
return lookup(chars, length); |
668 |
} |
|
669 |
||
670 |
||
671 |
oop StringTable::lookup(jchar* name, int len) { |
|
672 |
unsigned int hash = hash_string(name, len); |
|
673 |
int index = the_table()->hash_to_index(hash); |
|
674 |
return the_table()->lookup(index, name, len, hash); |
|
1 | 675 |
} |
676 |
||
677 |
||
678 |
oop StringTable::intern(Handle string_or_null, jchar* name, |
|
679 |
int len, TRAPS) { |
|
13087 | 680 |
unsigned int hashValue = hash_string(name, len); |
1 | 681 |
int index = the_table()->hash_to_index(hashValue); |
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
682 |
oop found_string = the_table()->lookup(index, name, len, hashValue); |
1 | 683 |
|
684 |
// Found |
|
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
685 |
if (found_string != NULL) return found_string; |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
686 |
|
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
687 |
debug_only(StableMemoryChecker smc(name, len * sizeof(name[0]))); |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
688 |
assert(!Universe::heap()->is_in_reserved(name) || GC_locker::is_active(), |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
689 |
"proposed name of symbol must be stable"); |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
690 |
|
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
691 |
Handle string; |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
692 |
// try to reuse the string if possible |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13199
diff
changeset
|
693 |
if (!string_or_null.is_null()) { |
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
694 |
string = string_or_null; |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
695 |
} else { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13199
diff
changeset
|
696 |
string = java_lang_String::create_from_unicode(name, len, CHECK_NULL); |
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
697 |
} |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
698 |
|
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
699 |
// Grab the StringTable_lock before getting the_table() because it could |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
700 |
// change at safepoint. |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
701 |
MutexLocker ml(StringTable_lock, THREAD); |
1 | 702 |
|
703 |
// Otherwise, add to symbol to table |
|
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
704 |
return the_table()->basic_add(index, string, name, len, |
1 | 705 |
hashValue, CHECK_NULL); |
706 |
} |
|
707 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
708 |
oop StringTable::intern(Symbol* symbol, TRAPS) { |
1 | 709 |
if (symbol == NULL) return NULL; |
710 |
ResourceMark rm(THREAD); |
|
711 |
int length; |
|
712 |
jchar* chars = symbol->as_unicode(length); |
|
713 |
Handle string; |
|
714 |
oop result = intern(string, chars, length, CHECK_NULL); |
|
715 |
return result; |
|
716 |
} |
|
717 |
||
718 |
||
719 |
oop StringTable::intern(oop string, TRAPS) |
|
720 |
{ |
|
721 |
if (string == NULL) return NULL; |
|
722 |
ResourceMark rm(THREAD); |
|
723 |
int length; |
|
724 |
Handle h_string (THREAD, string); |
|
17081
cf52c2bc3f8c
8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents:
16601
diff
changeset
|
725 |
jchar* chars = java_lang_String::as_unicode_string(string, length, CHECK_NULL); |
1 | 726 |
oop result = intern(h_string, chars, length, CHECK_NULL); |
727 |
return result; |
|
728 |
} |
|
729 |
||
730 |
||
731 |
oop StringTable::intern(const char* utf8_string, TRAPS) { |
|
732 |
if (utf8_string == NULL) return NULL; |
|
733 |
ResourceMark rm(THREAD); |
|
734 |
int length = UTF8::unicode_length(utf8_string); |
|
735 |
jchar* chars = NEW_RESOURCE_ARRAY(jchar, length); |
|
736 |
UTF8::convert_to_unicode(utf8_string, chars, length); |
|
737 |
Handle string; |
|
738 |
oop result = intern(string, chars, length, CHECK_NULL); |
|
739 |
return result; |
|
740 |
} |
|
741 |
||
17846
68ef5934c097
8015422: Large performance hit when the StringTable is walked twice in Parallel Scavenge
stefank
parents:
17845
diff
changeset
|
742 |
void StringTable::unlink_or_oops_do(BoolObjectClosure* is_alive, OopClosure* f) { |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
743 |
// Readers of the table are unlocked, so we should only be removing |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
744 |
// entries at a safepoint. |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
745 |
assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint"); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
746 |
for (int i = 0; i < the_table()->table_size(); ++i) { |
13195 | 747 |
HashtableEntry<oop, mtSymbol>** p = the_table()->bucket_addr(i); |
748 |
HashtableEntry<oop, mtSymbol>* entry = the_table()->bucket(i); |
|
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
749 |
while (entry != NULL) { |
17845
246c16282ae8
8015428: Remove unused CDS support from StringTable
stefank
parents:
17610
diff
changeset
|
750 |
assert(!entry->is_shared(), "CDS not used for the StringTable"); |
246c16282ae8
8015428: Remove unused CDS support from StringTable
stefank
parents:
17610
diff
changeset
|
751 |
|
246c16282ae8
8015428: Remove unused CDS support from StringTable
stefank
parents:
17610
diff
changeset
|
752 |
if (is_alive->do_object_b(entry->literal())) { |
17846
68ef5934c097
8015422: Large performance hit when the StringTable is walked twice in Parallel Scavenge
stefank
parents:
17845
diff
changeset
|
753 |
if (f != NULL) { |
68ef5934c097
8015422: Large performance hit when the StringTable is walked twice in Parallel Scavenge
stefank
parents:
17845
diff
changeset
|
754 |
f->do_oop((oop*)entry->literal_addr()); |
68ef5934c097
8015422: Large performance hit when the StringTable is walked twice in Parallel Scavenge
stefank
parents:
17845
diff
changeset
|
755 |
} |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
756 |
p = entry->next_addr(); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
757 |
} else { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
758 |
*p = entry->next(); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
759 |
the_table()->free_entry(entry); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
760 |
} |
17845
246c16282ae8
8015428: Remove unused CDS support from StringTable
stefank
parents:
17610
diff
changeset
|
761 |
entry = *p; |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
762 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
763 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
764 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
765 |
|
18091
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
766 |
void StringTable::buckets_do(OopClosure* f, int start_idx, int end_idx) { |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
767 |
const int limit = the_table()->table_size(); |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
768 |
|
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
769 |
assert(0 <= start_idx && start_idx <= limit, |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
770 |
err_msg("start_idx (" INT32_FORMAT ") oob?", start_idx)); |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
771 |
assert(0 <= end_idx && end_idx <= limit, |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
772 |
err_msg("end_idx (" INT32_FORMAT ") oob?", end_idx)); |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
773 |
assert(start_idx <= end_idx, |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
774 |
err_msg("Ordering: start_idx=" INT32_FORMAT", end_idx=" INT32_FORMAT, |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
775 |
start_idx, end_idx)); |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
776 |
|
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
777 |
for (int i = start_idx; i < end_idx; i += 1) { |
13195 | 778 |
HashtableEntry<oop, mtSymbol>* entry = the_table()->bucket(i); |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
779 |
while (entry != NULL) { |
17845
246c16282ae8
8015428: Remove unused CDS support from StringTable
stefank
parents:
17610
diff
changeset
|
780 |
assert(!entry->is_shared(), "CDS not used for the StringTable"); |
246c16282ae8
8015428: Remove unused CDS support from StringTable
stefank
parents:
17610
diff
changeset
|
781 |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
782 |
f->do_oop((oop*)entry->literal_addr()); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
783 |
|
17845
246c16282ae8
8015428: Remove unused CDS support from StringTable
stefank
parents:
17610
diff
changeset
|
784 |
entry = entry->next(); |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
785 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
786 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
787 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
788 |
|
18091
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
789 |
void StringTable::oops_do(OopClosure* f) { |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
790 |
buckets_do(f, 0, the_table()->table_size()); |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
791 |
} |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
792 |
|
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
793 |
void StringTable::possibly_parallel_oops_do(OopClosure* f) { |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
794 |
const int ClaimChunkSize = 32; |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
795 |
const int limit = the_table()->table_size(); |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
796 |
|
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
797 |
for (;;) { |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
798 |
// Grab next set of buckets to scan |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
799 |
int start_idx = Atomic::add(ClaimChunkSize, &_parallel_claimed_idx) - ClaimChunkSize; |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
800 |
if (start_idx >= limit) { |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
801 |
// End of table |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
802 |
break; |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
803 |
} |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
804 |
|
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
805 |
int end_idx = MIN2(limit, start_idx + ClaimChunkSize); |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
806 |
buckets_do(f, start_idx, end_idx); |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
807 |
} |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
808 |
} |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
809 |
|
20053
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
810 |
// This verification is part of Universe::verify() and needs to be quick. |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
811 |
// See StringTable::verify_and_compare() below for exhaustive verification. |
1 | 812 |
void StringTable::verify() { |
813 |
for (int i = 0; i < the_table()->table_size(); ++i) { |
|
13195 | 814 |
HashtableEntry<oop, mtSymbol>* p = the_table()->bucket(i); |
1 | 815 |
for ( ; p != NULL; p = p->next()) { |
816 |
oop s = p->literal(); |
|
817 |
guarantee(s != NULL, "interned string is NULL"); |
|
8885
eed0ba1d011b
7032129: Native memory usage grow unexpectedly for vm/oom/*InternedString tests
never
parents:
8728
diff
changeset
|
818 |
unsigned int h = java_lang_String::hash_string(s); |
1 | 819 |
guarantee(p->hash() == h, "broken hash in string table entry"); |
820 |
guarantee(the_table()->hash_to_index(h) == i, |
|
821 |
"wrong index in string table"); |
|
822 |
} |
|
823 |
} |
|
824 |
} |
|
13087 | 825 |
|
826 |
void StringTable::dump(outputStream* st) { |
|
17610
c6857feaac47
8014262: PrintStringTableStatistics should include more footprint info
iklam
parents:
17081
diff
changeset
|
827 |
the_table()->dump_table(st, "StringTable"); |
13087 | 828 |
} |
829 |
||
20053
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
830 |
StringTable::VerifyRetTypes StringTable::compare_entries( |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
831 |
int bkt1, int e_cnt1, |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
832 |
HashtableEntry<oop, mtSymbol>* e_ptr1, |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
833 |
int bkt2, int e_cnt2, |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
834 |
HashtableEntry<oop, mtSymbol>* e_ptr2) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
835 |
// These entries are sanity checked by verify_and_compare_entries() |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
836 |
// before this function is called. |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
837 |
oop str1 = e_ptr1->literal(); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
838 |
oop str2 = e_ptr2->literal(); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
839 |
|
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
840 |
if (str1 == str2) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
841 |
tty->print_cr("ERROR: identical oop values (0x" PTR_FORMAT ") " |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
842 |
"in entry @ bucket[%d][%d] and entry @ bucket[%d][%d]", |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
843 |
str1, bkt1, e_cnt1, bkt2, e_cnt2); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
844 |
return _verify_fail_continue; |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
845 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
846 |
|
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
847 |
if (java_lang_String::equals(str1, str2)) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
848 |
tty->print_cr("ERROR: identical String values in entry @ " |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
849 |
"bucket[%d][%d] and entry @ bucket[%d][%d]", |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
850 |
bkt1, e_cnt1, bkt2, e_cnt2); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
851 |
return _verify_fail_continue; |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
852 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
853 |
|
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
854 |
return _verify_pass; |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
855 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
856 |
|
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
857 |
StringTable::VerifyRetTypes StringTable::verify_entry(int bkt, int e_cnt, |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
858 |
HashtableEntry<oop, mtSymbol>* e_ptr, |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
859 |
StringTable::VerifyMesgModes mesg_mode) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
860 |
|
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
861 |
VerifyRetTypes ret = _verify_pass; // be optimistic |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
862 |
|
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
863 |
oop str = e_ptr->literal(); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
864 |
if (str == NULL) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
865 |
if (mesg_mode == _verify_with_mesgs) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
866 |
tty->print_cr("ERROR: NULL oop value in entry @ bucket[%d][%d]", bkt, |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
867 |
e_cnt); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
868 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
869 |
// NULL oop means no more verifications are possible |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
870 |
return _verify_fail_done; |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
871 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
872 |
|
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
873 |
if (str->klass() != SystemDictionary::String_klass()) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
874 |
if (mesg_mode == _verify_with_mesgs) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
875 |
tty->print_cr("ERROR: oop is not a String in entry @ bucket[%d][%d]", |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
876 |
bkt, e_cnt); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
877 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
878 |
// not a String means no more verifications are possible |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
879 |
return _verify_fail_done; |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
880 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
881 |
|
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
882 |
unsigned int h = java_lang_String::hash_string(str); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
883 |
if (e_ptr->hash() != h) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
884 |
if (mesg_mode == _verify_with_mesgs) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
885 |
tty->print_cr("ERROR: broken hash value in entry @ bucket[%d][%d], " |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
886 |
"bkt_hash=%d, str_hash=%d", bkt, e_cnt, e_ptr->hash(), h); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
887 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
888 |
ret = _verify_fail_continue; |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
889 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
890 |
|
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
891 |
if (the_table()->hash_to_index(h) != bkt) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
892 |
if (mesg_mode == _verify_with_mesgs) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
893 |
tty->print_cr("ERROR: wrong index value for entry @ bucket[%d][%d], " |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
894 |
"str_hash=%d, hash_to_index=%d", bkt, e_cnt, h, |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
895 |
the_table()->hash_to_index(h)); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
896 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
897 |
ret = _verify_fail_continue; |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
898 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
899 |
|
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
900 |
return ret; |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
901 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
902 |
|
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
903 |
// See StringTable::verify() above for the quick verification that is |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
904 |
// part of Universe::verify(). This verification is exhaustive and |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
905 |
// reports on every issue that is found. StringTable::verify() only |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
906 |
// reports on the first issue that is found. |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
907 |
// |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
908 |
// StringTable::verify_entry() checks: |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
909 |
// - oop value != NULL (same as verify()) |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
910 |
// - oop value is a String |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
911 |
// - hash(String) == hash in entry (same as verify()) |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
912 |
// - index for hash == index of entry (same as verify()) |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
913 |
// |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
914 |
// StringTable::compare_entries() checks: |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
915 |
// - oops are unique across all entries |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
916 |
// - String values are unique across all entries |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
917 |
// |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
918 |
int StringTable::verify_and_compare_entries() { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
919 |
assert(StringTable_lock->is_locked(), "sanity check"); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
920 |
|
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
921 |
int fail_cnt = 0; |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
922 |
|
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
923 |
// first, verify all the entries individually: |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
924 |
for (int bkt = 0; bkt < the_table()->table_size(); bkt++) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
925 |
HashtableEntry<oop, mtSymbol>* e_ptr = the_table()->bucket(bkt); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
926 |
for (int e_cnt = 0; e_ptr != NULL; e_ptr = e_ptr->next(), e_cnt++) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
927 |
VerifyRetTypes ret = verify_entry(bkt, e_cnt, e_ptr, _verify_with_mesgs); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
928 |
if (ret != _verify_pass) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
929 |
fail_cnt++; |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
930 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
931 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
932 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
933 |
|
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
934 |
// Optimization: if the above check did not find any failures, then |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
935 |
// the comparison loop below does not need to call verify_entry() |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
936 |
// before calling compare_entries(). If there were failures, then we |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
937 |
// have to call verify_entry() to see if the entry can be passed to |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
938 |
// compare_entries() safely. When we call verify_entry() in the loop |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
939 |
// below, we do so quietly to void duplicate messages and we don't |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
940 |
// increment fail_cnt because the failures have already been counted. |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
941 |
bool need_entry_verify = (fail_cnt != 0); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
942 |
|
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
943 |
// second, verify all entries relative to each other: |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
944 |
for (int bkt1 = 0; bkt1 < the_table()->table_size(); bkt1++) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
945 |
HashtableEntry<oop, mtSymbol>* e_ptr1 = the_table()->bucket(bkt1); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
946 |
for (int e_cnt1 = 0; e_ptr1 != NULL; e_ptr1 = e_ptr1->next(), e_cnt1++) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
947 |
if (need_entry_verify) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
948 |
VerifyRetTypes ret = verify_entry(bkt1, e_cnt1, e_ptr1, |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
949 |
_verify_quietly); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
950 |
if (ret == _verify_fail_done) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
951 |
// cannot use the current entry to compare against other entries |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
952 |
continue; |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
953 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
954 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
955 |
|
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
956 |
for (int bkt2 = bkt1; bkt2 < the_table()->table_size(); bkt2++) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
957 |
HashtableEntry<oop, mtSymbol>* e_ptr2 = the_table()->bucket(bkt2); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
958 |
int e_cnt2; |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
959 |
for (e_cnt2 = 0; e_ptr2 != NULL; e_ptr2 = e_ptr2->next(), e_cnt2++) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
960 |
if (bkt1 == bkt2 && e_cnt2 <= e_cnt1) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
961 |
// skip the entries up to and including the one that |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
962 |
// we're comparing against |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
963 |
continue; |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
964 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
965 |
|
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
966 |
if (need_entry_verify) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
967 |
VerifyRetTypes ret = verify_entry(bkt2, e_cnt2, e_ptr2, |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
968 |
_verify_quietly); |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
969 |
if (ret == _verify_fail_done) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
970 |
// cannot compare against this entry |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
971 |
continue; |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
972 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
973 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
974 |
|
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
975 |
// compare two entries, report and count any failures: |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
976 |
if (compare_entries(bkt1, e_cnt1, e_ptr1, bkt2, e_cnt2, e_ptr2) |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
977 |
!= _verify_pass) { |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
978 |
fail_cnt++; |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
979 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
980 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
981 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
982 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
983 |
} |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
984 |
return fail_cnt; |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
18091
diff
changeset
|
985 |
} |
13087 | 986 |
|
987 |
// Create a new table and using alternate hash code, populate the new table |
|
988 |
// with the existing strings. Set flag to use the alternate hash code afterwards. |
|
989 |
void StringTable::rehash_table() { |
|
990 |
assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint"); |
|
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
991 |
// This should never happen with -Xshare:dump but it might in testing mode. |
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
992 |
if (DumpSharedSpaces) return; |
13087 | 993 |
StringTable* new_table = new StringTable(); |
994 |
||
995 |
// Rehash the table |
|
996 |
the_table()->move_to(new_table); |
|
997 |
||
998 |
// Delete the table and buckets (entries are reused in new table). |
|
999 |
delete _the_table; |
|
1000 |
// Don't check if we need rehashing until the table gets unbalanced again. |
|
1001 |
// Then rehash with a new global seed. |
|
1002 |
_needs_rehashing = false; |
|
1003 |
_the_table = new_table; |
|
1004 |
} |